@charset "UTF-8";
/* CSS Document */

body {
	font: 100% Helvetica, Arial, Verdana, sans-serif;
	font-size:12px;
	line-height: 16px;
	background: #000 url(../imgs/blk-bgnd.jpg) top no-repeat fixed;
	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: #333333;
}
.twoColFixLtHdr #container {
	width: 800px;  /* 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. */
}
.twoColFixLtHdr #header {
	padding: 10px 0 0 0; /* 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. */
}
.twoColFixLtHdr #header img {
	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: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 230px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	padding: 0;
}
.twoColFixLtHdr #sidebar1 p {
	padding: 15px 15px 0;
	margin: 0;
}
.twoColFixLtHdr #blueTop {
	background:url(../imgs/sb-bgnd2-a_01.png);
	height:23px;
	margin-top:7px;
}
.twoColFixLtHdr #blueContent {
	background:url(../imgs/sb-bgnd2-a_02.png);
	color:#FFFFFF;
}
.twoColFixLtHdr #blueContent {
	background:url(../imgs/sb-bgnd2-a_02.png);
	color:#FFFFFF;
}
.twoColFixLtHdr #blueBtm {
	background:url(../imgs/sb-bgnd2-a_03.png);
	height:15px;
}
.twoColFixLtHdr #mainContent {
	margin: 0 0 0 250px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}
.twoColFixLtHdr #mainContent p {
	margin: 0;
	padding: 15px 15px 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}
.twoColFixLtHdr #footer {
	background: url(../imgs/footBgnd.png) no-repeat;
	height: 50px;
	margin: 10px 0;
}
.twoColFixLtHdr #footer p {
	font-size:10px;
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 12px 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: 10px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 12px;
}
.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;
}
.mainHeads {
	font-size: 24px;
	color: #000;
}
.subHeads {
	font-size: 18px;
	color: #000;
}
/* NAVIGATION BAR */

#navHolder {
	position: relative;
	width: 800px;
	height: 50px;
	padding: 0;
	margin: 0;
	background: url(../imgs/navbar_06.png) right no-repeat;
	background-position: 550px 0px;
}
#nav {
	position: absolute;
	top: 0px;
	left: 0px;
	list-style: none;
	margin: 0;
	padding: 0;
	height: 50px;
	display: inline;
	overflow: hidden;
	width: 800px;
}
#nav li {
	margin: 0;
	padding: 0;
	display: inline;
	list-style-type: none;
}
#nav a {
	float: left;
	padding: 13px 0 0 0;
	overflow: hidden;
	height: 50px !important;
	height /**/:50px; /* for IE5/Win */
}
#nav a:hover {
	background-position: 0 -50px;
}
#nav a:active, #nav a.selected {
	background-position: 0 -50px; /* Add class="selected" to <li tag in order to load 'selected' nav bgnd */
}
#navLeft a {
	color:#FFFFFF;
	font-weight:bold;
	width: 110px;
	background: url(../imgs/navbar_01.png) top left no-repeat;
}
#navOthers a {
	color:#FFFFFF;
	font-weight:bold;
	width: 110px;
	background: url(../imgs/navbar_02.png) top left no-repeat;
}
/* OTHER NAV */

a:link {
	font-weight:bold;
	color: #DA2128;
	text-decoration: none;
}
a:visited {
	font-weight:bold;
	color: #DA2128;
	text-decoration: none;
}
a:hover {
	font-weight:bold;
	color: #7E0706;
	text-decoration: none;
}
a.white:link {
	color: #FFFFFF;
	text-decoration: none;
}
a.white:visited {
	color: #FFFFFF;
	text-decoration: none;
}
a.white:hover {
	background: #990000;
	color:#FFFFFF;
	text-decoration: none;
}
/* STYLES FOR CROSSFADER */

div.cf_wrapper {
	height: 270px;
}
div.cf_element {
	width: 530px;
	height: 270px;
}
div.cf_element div.content {
	height: 270px;
}
div.cf_element div.content img {
	display:block;
	height: 270px;
	padding-top: 0;
	margin-top: 0;
}

 </style> [if IE 5]> <style type="text/css"> /* place css box model fixes for IE 5* in this conditional comment */
.twoColFixLtHdr #sidebar1 {
width: 230px;
}
</style> <![endif][if IE]> <style type="text/css"> /* place css fixes for all versions of IE in this conditional comment */
.twoColFixLtHdr #sidebar1 {
padding-top: 30px;
}
.twoColFixLtHdr #mainContent {
	zoom: 1;
}
/* the above proprietary zoom property gives IE the hasLayout it needs to avoid several bugs */
</style> <![endif]
