@charset "UTF-8";
/* Dondero's Front Page CSS Document */

/* Basic Page Parameters */

body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #666666;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
	margin-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	background-color: #333333;
}

/* Text Formatting */

a:link {
	color: #FFFFFF;
	text-decoration: underline;
}

a:visited {
	text-decoration: underline;
	color: #8CB8E2;
}

a:hover {
	text-decoration: none;
	color: #8CB8E2;
}

a:active {
	text-decoration: underline;
	color: #8CB8E2;
}

body,td,th {
	color: #FFFFFF;
	font-family: Georgia, Times New Roman, Times, serif;
	font-size: 12px;
}

h1 {
	font-size: 18px;
}

.h1Centered {
	font-size: 18px;
	text-align: center;
	}

h2 {
	font-size: 16px;
}

.h2Centered {
	font-size: 16px;
	text-align: center;
	}

h3 {
	font-size: 14px;
}

.h3Centered {
	font-size: 14px;
	text-align: center;
	}

.address1 {
	font-family: "Times New Roman", Times, serif;
	font-size: 14px;
	}

.address1Centered {
	font-family: "Times New Roman", Times, serif;
	font-size: 14px;
	text-align: center;
	}

.address2 {
	font-family: "Times New Roman", Times, serif;
	font-size: 24px;
	}
	
.address2Centered {
	font-family: "Times New Roman", Times, serif;
	font-size: 24px;
	text-align: center;
	}
	
.footerText {
	font-family: "Times New Roman", Times, serif;
	font-size: 12px;
	}
	
.footerText a:link {
	text-decoration: none;
	color: #FFFFFF;
}

.footerText a:visited {
	text-decoration: none;
	color: #FFFFFF;
}

.footerText a:hover {
	text-decoration: underline;
	color: #FFFFFF;
}

.footerText a:active {
	text-decoration: none;
	color: #FFFFFF;
}

.graphicusTagline {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 9px;
	line-height: 20px;
	}

.graphicusTagline a:link {
	text-decoration: none;
	color: #FFFFFF;
}

.graphicusTagline a:visited {
	text-decoration: none;
	color: #FFFFFF;
}

.graphicusTagline a:hover {
	text-decoration: underline;
	color: #FFFFFF;
}

.graphicusTagline a:active {
	text-decoration: none;
	color: #FFFFFF;
}


/* DIV Containers */


.thrColFixHdr #container {
	width: 800px;
	text-align: left;
	margin-right: auto;
	margin-left: auto;
} 

.thrColFixHdr #containerSecondaryPages {
	width: 800px;
	text-align: left;
	margin-right: auto;
	margin-left: auto;
	background-image: url(../images/secondary_page_background.gif);
	background-repeat: repeat-y;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #666666;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #666666;
} 

.thrColFixHdr #header {
	width: 800px;
	height: 265px;
	float: left;
	position: relative;
} 

.thrColFixHdr #headerFlash {
	width: 800px;
	height: 265px;
	position: absolute;
	z-index: 0;
	left: 0px;
	top: 0px;
} 

.thrColFixHdr #headerInsidePages {
	width: 800px;
	height: 100px;
	float: left;
	position: relative;
} 

#headerNavigationContainer {
	height: 225px;
	width: 125px;
	left: 25px;
	top: 25px;
	position: absolute;
	z-index: 999;
}

#headerSearchContainer {
	height: 30px;
	width: 240px;
	left: 545px;
	top: 10px;
	position: absolute;
}

#headerAddressContainer {
	height: 50px;
	width: 266px;
	left: 513px;
	top: 195px;
	position: absolute;
}

#headerAddressContainerInsidePages {
	height: 50px;
	width: 266px;
	left: 255px;
	top: 20px;
	position: absolute;
}

.thrColFixHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 200px;
}

.thrColFixHdr #sidebar1SecondaryPages {
	float: left; /* since this element is floated, a width must be given */
	width: 200px;
	padding-left: 20px;
}

.thrColFixHdr #sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 200px; /* padding keeps the content of the div away from the edges */
}

.thrColFixHdr #mainContent {
	margin: 0px 200px; /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the sidebar spaces when the content in each sidebar ends. */
	padding: 0px 20px 0px 30px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 

.thrColFixHdr #mainContentSecondaryPage {
	margin: 0px 30px 0px 200px; /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the sidebar spaces when the content in each sidebar ends. */
	padding: 0px 20px 0px 30px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 

.thrColFixHdr #footer {
	padding: 0 10px 0 20px;
	background-color: #515151;
} 

.thrColFixHdr #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}



/* Miscellaneous Page Hack Stuff */


.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}

.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}

.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
