@charset "utf-8";
body  {
	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;
	background-color: #006;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 75%;
}
a:link {color: #3666CE; font-family: Arial, Helvetica, sans-serif; font-size: 12px; font-weight: bold; text-decoration: none} 
a:visited {color: #3666CE; font-family: Arial, Helvetica, sans-serif; font-size: 12px; font-weight: bold; text-decoration: none} 
a:hover {color: #FF0000; font-family: Arial, Helvetica, sans-serif; font-size: 12px; font-weight: bold; text-decoration: none} 
a:active {font-family: Arial, Helvetica, sans-serif; font-size: 12px; font-weight: bold; text-decoration: none} 
#footerTable a:hover, a:active, a:focus {
	font-weight: bold;
	color: #FC0;
	text-decoration: none;
}
#footerTable a:visited {
	font-weight: bold;
	color: #F60;
	text-decoration: none;
}


a img {
	border: none;
}
td {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #000000;
}
#wrapper {
	height: 100%;
	width: 100%;
	background-color: #006;
	background-attachment: fixed;
}
#container {
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF url(images/bg.jpg) repeat-y left top;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
#header {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 9px;
	font-weight: normal;
	color: #FFF;
	background-color: #3666CE;
	padding-top: 0;
	padding-right: 0px;
	padding-bottom: 0;
	padding-left: 0px;
	height: 83px;
} 
#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 */
}
#topnav {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	background-color: #3666CE;
	text-align: left;
	vertical-align: top;
	padding-left: 0px;
}
#topnav a:link {
	color: #FFF;
	text-decoration: none;
}
#topnav a:visited {
	color: #FFF;
	text-decoration: none;
}
#topnav a:hover {
	color: #FECB02;
	text-decoration: none;
}
#topnav a:active {
	color: #FFF;
	text-decoration: none;

}


#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 150px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px 15px 20px;
	background-color: #FECB02;
}

#sidebar1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	background-color: #FECB02;
	text-align: left;
	vertical-align: top;
	padding-left: 0px;
}
#sidebar1 p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #000;
}
#sidebar1 a:link {
	color: #3666CE;
	text-decoration: none;
	font-weight: bold;
}
#sidebar1 a:visited {
	color: #3666CE;
	text-decoration: none;
	font-weight: bold;
}
#sidebar1 a:hover {
	color: #FFF;
	text-decoration: none;
	font-weight: bold;
}
#sidebar1 a:active {
	color: #3666CE;
	text-decoration: none;
	font-weight: bold;

}

#mainContent {
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 180px;
	padding-top: 0;
	padding-right: 20px;
	padding-bottom: 0;
	padding-left: 20px;
	float: none;
} 
#mainContent h1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
	color: #F00;
	letter-spacing: 1px;
	text-align: left;
	padding-bottom: 10px;
}
#mainContent h2 {
	font-size: 14px;
	font-weight: bold;
	color: #F60;
}
#mainContent h6 {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 9px;
	font-weight: normal;
	color: #000;
}
#mainContent h6 a {
	font-weight: bold;
	color: #F60;
	text-decoration: none;
}
#mainContent h6 a:visited {
	font-weight: bold;
	color: #F60;
	text-decoration: none;
}
#mainContent h6 a:hover, a:active, a:focus {
	font-weight: bold;
	color: #3666CE;
	text-decoration: none;
}



#footer {
	padding: 0 10px 0 20px;
	background-color: #FFF;
	text-align: center;
} 
#footerTable {
	background-color: #FFF;
}
#footerTable a {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 9px;
	font-weight: bold;
	color: #F60;
}


#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;
}
.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;
}
#yellow {
	background-color: #FECB02;
	height: 2px;
}
#sidebarnav {
	padding-left: 10px;
	background-color: #FECB02;
}
.copyright {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 9px;
	color: #000;
}
.dottedlines {
	color: #999;
	font-size: 100%;
}
.smallgray {  font-family: Arial, Helvetica, sans-serif; font-size: xx-small; font-style: normal; line-height: normal; font-weight: normal; font-variant: normal; color: #666666}
.orangecopybold {  font-family: Arial, Helvetica, sans-serif; font-size: 12px; font-style: normal; line-height: normal; font-weight: bold; font-variant: normal; color: #FF6600}
.regulargray {  font-family: Arial, Helvetica, sans-serif; font-size: 12px; font-style: normal; line-height: normal; font-weight: normal; font-variant: normal; color: #666666; word-spacing: 2px}
.boldgray {  font-family: Arial, Helvetica, sans-serif; font-size: 12px; font-style: normal; line-height: normal; font-weight: bold; font-variant: normal; color: #666666}
.yellowsmallreg {  font-family: Arial, Helvetica, sans-serif; font-size: 10px; font-style: normal; font-weight: normal; font-variant: normal; color: #FECB02}
.yellowsmallbold {  font-family: Arial, Helvetica, sans-serif; font-size: 11px; font-style: normal; line-height: normal; font-weight: bold; font-variant: normal; color: #FECB02}
.bigorange {  font-family: Arial, Helvetica, sans-serif; font-size: 16px; font-style: normal; line-height: normal; font-weight: bold; font-variant: normal; color: #FF6600; word-spacing: 2px}
.detailblack {  font-family: Arial, Helvetica, sans-serif; font-size: 10px; font-weight: normal; color: #333333; word-spacing: 2px}
.lettercopy {  font-family: Arial, Helvetica, sans-serif; font-size: 12px; font-weight: normal; color: #333333; word-spacing: 1px}
.faquestion {  font-family: Arial, Helvetica, sans-serif; font-size: 12px; font-weight: bold; color: #333333}
.faqanswer {  font-family: Arial, Helvetica, sans-serif; font-size: 12px; font-weight: normal; color: #333333}
.biophoto {
	margin-right: 5px;
}
.fantasyphoto {
	margin-left: 6px;
}.BigBlack {
	font: bold 14px Arial, Helvetica, sans-serif;
	color: #000;
}
.whiteaddress {
	font: bold 12px Arial, Helvetica, sans-serif;
	color: #FFF;
}

