@charset "utf-8";
/* CSS Document */
<!--
html, body {
	height: 100%;
}
body {
	font: 100% Arial, Helvetica, sans-serif;
	background:#39C;
	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;
}
h2 {
	margin:0;
}
img {
	border:none;
}
#header {
	top: 0;
	width:100%;
	height:110px;
	overflow:hidden;
	background:url(../images/headerBar.png) 0 0 repeat-x;
	padding: 0 0px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
}
#header h1 {
	margin:5px 0 0px 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 */
}
#subheader {
	top: 100px;
	width:100%;
	height:75px;
	overflow:hidden;
	background:url(../images/subheaderBar.png) 0 0 repeat-x;
	padding: 0 0px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
}
#subheader p {
	margin: 5px 0 5px 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 */
	color:#000;
	font-size:12px;
}
#container {
	bottom: 100px;
	width:976px;
	top: 160px;
	overflow:hidden;
	background: #FFFFFF;
	margin: auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
#bottom {	
	overflow:hidden;
	background: url(../images/mainBorderBottom.jpg) 0 100% repeat-x;
}
#corner {
	overflow:hidden;
	background: url(../images/mainBorderBtmRight.jpg) 100% 100% no-repeat;
}
#right {
	overflow:hidden;
	background: url(../images/mainBorderRight.jpg) 100% 0 repeat-y;
}
#sidebar1 {
	float: left;
	margin-left: 10px;
	margin-top: 10px;
	margin-bottom: 10px;
	margin-right: 10px;
	vertical-align:text-top;
	width: 185px; /* since this element is floated, a width must be given */
	height: 235px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px 0px 0px 0px; /* top and bottom padding create visual space within this div  */
	background: #660000;
	border: 1px sold black;
}
#sidebar1 p {
	margin-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 10px;
}

#sidebar1 ul {	
	list-style-type: none;
	margin: 0;
	padding: 0;
	width: 185px; /*WIDTH OF MAIN MENU ITEMS*/
	border: 1px solid black;
}
#sidebar1 li {
	position: relative;
}
#sidebar1 li a {
	background: white url(../images/glossyback.gif) repeat-x bottom left;	
	font:Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight:bold;
	color: white;
	display: block;
	width: auto;
	padding: 5px 0;
	padding-left: 10px;
	text-decoration: none;
	cursor:pointer;
}
#sidebar1 li a:hover{
	background: white url(../images/glossyback2.gif) repeat-x bottom left;
}
#searchbar {
	text-align:right;
	top: 130px;
	margin: 0;
	padding-top: -5px;
	margin-top: 0px;
	margin-right: 10px;
	height: 20px;
	color:#000;
	font-size:12px;
}
#mainContent {
	margin: -10px 20px 0 10px; /* the right margin can be given in percentages or pixels. It creates the space down the right side of the page. */
}
#mainContent p {
	margin: -10px 0 20px 0;
	font-size:14px;
}
#mainContent h2 {
	margin: 0px 0 30px 0;
	font-size:18px;
}
#blueText {
	color:#009;
}
#redText {
	color:#900;
}
#footer {
	width: 100%;
	height: 100px;
	top: auto;
	bottom: 0;
	right: 0;
	left: 0;
	padding: 0 0px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:url(../images/footerBar.png) 0 0 repeat-x;
}
#footer p {
	margin: 0px; /* 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 */
	color: #FFF;
	font-size:10px;
}
#footer h3 {
	margin: 0px; /* 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: 20px 0;
	color:#000;
	font-size:12px;
}
#centeredTable {
	margin: 0px auto;
	width: 70%;
	text-align:center;
}
/* Miscellaneous classes for reuse */
.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 */
	height:0;
	font-size: 1px;
	line-height: 0px;
}
.cb {
	float:left;
	width:100%;
	margin: 0.5em 0;
	line-height: 170%;
}
.bt {
	background:url(../images/box.png) no-repeat 100% 0 !important;
	background:url(../images/box.gif) no-repeat 100% 0;
	margin: 0 0 0 18px;
	height:27px;
}
.bt div {
	height: 27px;
	width: 18px;
	position:relative;
	left:-18px;
	background:url(../images/box.png) no-repeat 0 0 !important;
	background:url(../images/box.gif) no-repeat 0 0;
}
.thumbs, .thumbsText, .thumbsText_sm, .thumbsC {
	margin: 0;
	padding: 0;
	overflow: hidden;
	font-size:12px;
	color:#000;
}
.thumbs li {
	list-style: none;
	float: left;
	width:210px;
	margin:10px;
	margin-left: 15px;
	margin-right:15px;
	margin-bottom:40px;
	padding-top:5px;
	font-size:14px;
}
.thumbsC li {
	list-style: none;
	float: left;
	width:210px;
	margin:10px;
	margin-left: 15px;
	margin-right:5px;
	margin-bottom:40px;
	padding-top:5px;
	font-size:14px;
}
.thumbsText li {
	list-style: none;
	float: left;
	width:210px;
	margin:10px;
	margin-left: 15px;
	margin-right:15px;
	margin-bottom:20px;
	padding-top:5px;
	font-size:12px;
	text-align:center;
}
.thumbsText_sm li {
	list-style: none;
	float: left;
	width:200px;
	margin:10px;
	margin-left: 15px;
	margin-right:15px;
	margin-bottom:20px;
	padding-top:5px;
	font-size:12px;
	text-align:center;
}
.thumbs, .thumbsText, .thumbsText_sm, .thumbsC li a {
}
.thumbs, .thumbsText, .thumbsText_sm, .thumbsC li img {
	padding-top: 10px;
	padding-left: 10px;
}
.thumbsText p, .thumbsText_sm, p{
	padding-top:20px;
}
-->
</style>
<!--
[if IE]> <style type="text/css"> /* place css fixes for all versions of IE in this conditional comment */
#sidebar1 {
padding-top: 30px;
}
#mainContent {
	zoom: 1;
	padding-top: 15px;
}
/* the above proprietary zoom property gives IE the hasLayout it needs to avoid several bugs */
</style> <![endif]
-->

