@charset "UTF-8";

body  {
	font: 11pt "Trebuchet MS";
	background: #1F1F1F;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	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 */
	clear: both;
font-family: "trebuchet ms";
	font-size: 0.75em;
	line-height: 1.6em;
	text-align: left;
	color: #CCCCCC;
	padding:0px;
}

#sectionSpacer {
	width: 800px;
	height: 14px;
	border:0;
	padding:0;
	margin:0
	
}

#container {
	width: 801px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
	height: auto;
	background-color: #1F1F1F;
	border-color: #333333;
	padding:0;
} 

#navContainer {
	width: 513px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	height: 134px;
	border-right: thin solid #FFFFFF;
	float: left;
	border-left:0;
	border-bottom:0;
	border-top:0;
	medium:0;
	padding:0;
	
} 

#abovenavContainer {
	width: 513px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	height: 103px;
	border-right: thin solid #FFFFFF;
	border-bottom: thin solid #FFFFFF;
	padding:0;
	margin:0;
	border-top:0;
	bottom-left:0;
} 
 
#navbarContainer {
	width: 513px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	height: 31px;
	border-right: thin solid #FFFFFF;
	padding:0;
	margin:0;
	border-top:0;
	border-bottom:0;
	border-left:0;
} 

#logoContainer {
	width: 125px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	height: 135px;
	border-right: thin solid #FFFFFF;
	float: left;
	background-color: #000000;
	padding:0;
	margin:0;
} 

#navRightContainer {
	width: 153px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	height: 135px;
	float: right;
	padding:0;
	margin:0;
} 

#navPhoneContainer {
	width: 153px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	height: 31px;
	float: left;
	border-top-width: thin;
	border-top-style: solid;
	border-top-color: #FFFFFF;
	padding-top: 2px;
	margin:0;
	padding-bottom:0;
	padding-right:0;
	padding-left:0;
} 

#navExtraContainer {
	width: 86px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	height: 102px;
	float: right;
	margin: 0px;
	padding: 2px 0px 0px 0px;
	border-left-width: thin;
	border-left-style: solid;
	border-left-color: #FFFFFF;
} 



#header {
	border-bottom: thin solid #FFFFFF;
	border-right: thin solid #FFFFFF;
	border-left: thin solid #FFFFFF;
	height: 135px;
	padding:0;
	margin:0;
} 

#header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}


#middleContainer {
	height:auto;
	width:798px;
	margin: 0 auto;
	border: thin solid #FFFFFF;
	padding:0;
}

#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: auto; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 8px;
	height: inherit;
	margin:0;
	border:0;
	
}


#sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: auto;
	padding: 8px;
	height: inherit;
	margin:0;
	border:0;
}


#mainContent {
	border-left: thin solid #FFFFFF;
	border-right: thin solid #FFFFFF;
	padding-left: 10px;
	padding-top:10px;
	padding-right:0;
	padding-bottom:0;
	position: relative;
	height: auto;
	overflow: visible;
	float: left;
	width: 473px;
	margin:0;
} 


#footer {
	padding: 10px 10px 0 20px;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	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 */
} 

#containerFooter {
	width: 800px;
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
	height: auto;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left:0;
	padding-right:0;
} 


#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 */
}


.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;
	padding:0;
	margin-right:0;
	margin-top:0;
	margin-bottom:0;
}


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


.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;
	padding:0;
	margin:0;
}

/* text */


.footerText {
	text-align: left; /* this overrides the text-align: center on the body element. */
	font-family: "Trebuchet MS";
	font-size: 10px;
}

.mainText {
	text-align: left; /* this overrides the text-align: center on the body element. */
	font-family: "Trebuchet MS";
	font-size: 12px;
	line-height: 20px;
	
	}





a:link {
	color: #95c2f9;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
	color: #95c2f9;
}

a:visited {
	text-decoration: none;
	color: #95c2f9;
}

a:active {
	text-decoration: none;
}




h1 {color: #ff8000;
font-family: "Trebuchet MS";
font-size: 1.5em;
font-weight: bold;
 }

h2 {color: #9bc6fa;
font-family: "Trebuchet MS";
font-size: 1.2em;
text-align: left;
font-weight: bold;
 }

h3 {color: #95c2f9;
font-family: "Trebuchet MS";
font-size: 1.1em;
font-weight: normal;
 }

h4 {font-family: "Trebuchet MS";
font-size: 1.2em;
font-weight: normal;
 }

h5 {font-family: "Trebuchet MS";
font-size: 1.1em;
font-weight: normal;
 }
 
 body,td,th {
	font-size: 0.75em;
	padding-left:0px;
}
