﻿/*******************************************************************
	print.css
	Print style sheet for www.altn.com.
	To be included with main.css.  This style sheet only overrides
	main styles for print.
********************************************************************

	Created: 2/12/2007, Trint Ladd
	Modified: 8.14.2012 Daniel Draney
		
********************************************************************
/*	Color Pallette */
/*		#fff; /* White */
/*		#000; /* Black */
/*		#eee; /* Very Light Gray */
/*		#ccc; /* Light Gray */
/*		#aaa; /* Medium Gray */
/*		#666; /* Dark Gray */
/*		#900; /* Dark Red */
/*		#009; /* Dark Blue */
/*		#ffd; /* Pale Yellow */
/*		#005; /* Dark Blue */
/******************************************************************/


@media print { /* @media print - to be closed at end of stylesheet - hack preventing old browsers from applying your print styles to your normal screen styles */
	
	
/* Hidding or resizing block elements */
body {
	padding: 0;
	margin: 0;
	background-color: #ffffff; /* White */
	color: #000000; /* Black */
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: normal;
}
.noscript {
	display: none;
}
#UberDiv {
	width: 90%;
}
#BlankUberDiv {
	width: 90%;
}
#Header {
	width: 90%;
}
#OneColumnNavMainContent {
	width: 90%;
}
#TwoColumnMainContent {
	width: 75%;
}
#TwoColumnNavMainContent {
	width: 50%;
}
#TwoColumnSubContent {
	width: 20%;
	font-size: .8em;
}
#AccountLinksAndSearch {
	display: none;
}
#AccountLinks {
	display: none;
}
#HeaderContact {
	display: none;
}
#MainNav {
	display: none;
}
#BreadCrumbBar {
	display: none;
}
#SubNav {
	display: none;
}
#Legal {
	display: none;
}
#InternalViewer {
	display: none;
}
.liveChat {
	display: none;
}
.buttons, .buttonsLeft, .printButtons {
	display: none;
}

/* Backgrounds and borders */
.RBContent {
	border: solid 1px #ccc; /* Light Gray */
}

/* No Print, do not display when printing */
.noPrint {
	display: none;
}

/* Print only, not visible on site */
.printOnly {
	display: block;
}
.printOnlyAddress {
	display: block;
	position: absolute;
	top: -15px;
	left: 60%;
	clear: both;
}

} /* closes @media print */