@charset "utf-8";
/* CSS Document */

<!--

body  {
	font: 86% Verdana, Arial, Helvetica, sans-serif;
	background: #000000;
	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;
}
#container a {
	color:#E81B3B;
}
#container h2 {
	font-family:Arial, Helvetica, sans-serif;
	font-size:32px;
	font-weight:normal;
	color:#8CC63F;
	padding-top:20px;
	padding-bottom:10px;
	clear:both;
}

#container h3 {
	font-family:Arial, Helvetica, sans-serif;
	font-size:18px;
	font-weight:normal;
	color:#711471;
	clear:both;
}

img {
	border:0;
	padding:0;
	margin:0;
}
#container { 
	width: 950px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	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. */
	display:block;
	clear:both;
} 
#header_red { 
	background: #66CC00; 
	padding: 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. */
	width:950px;
	background-image:url(/images/header-10/background.jpg); background-repeat:no-repeat; background-position:top left;
	height:99px;
	float:left;
}
#header_red 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: 0px 15px 0px 0px; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	float:right;
}

#topNav {
	background: #c9b7b7; 
	padding: 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. */
	width:950px;
	height:24px;
	float:left;
	border-top:solid 1px #999999;
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	font-weight:bold;
}
/* ========= MENU ============ */

div#menu {
	width:943px;
	height:24px;
	display:block;
	clear:both;
	margin-top:0px;
	background-image:url(/images/menu_background.jpg);
	background-repeat:no-repeat;
	background-position:top left;
	margin:auto;
}

ul#nav2 {
	padding: 0;
	margin: 0;
	color: #fff;
	width:945px;
}
ul#nav2 li { display: inline; }
ul#nav2 li a {
	/*padding: .25em 1.3em .45em 1.3em;*/
	width:118px;
	padding:4px 0px 5px 0px;
	text-align:center;
	font-weight:bold;
	color: #fff;
	text-decoration: none;
	float: left;
	/*border-bottom: solid 1px #fff;
	border-top: solid 1px #fff;*/
	
	/*border-right: solid 1px #fff;*/
	background: url("/images/nav_back.jpg") repeat-x;	
	

}
a:link, a:visited { color: #fff; }
ul#nav2 li a:hover {
color: #ffffff;
background-color: #fff;
background: url("/images/nav_back_hover.jpg") repeat-x; 
} 

#navcontainerTop {
	width:560px;
}




#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 265px; /* 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 */
	background: #FFFFFF; /* the background color will be displayed for the length of the content in the column, but no further */
	margin:0;
	padding: 0;
	height:570px;
}
#sidebarStandard {
	float: left; /* since this element is floated, a width must be given */
	width: 220px; /* 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 */
	background: #E61A39; /* the background color will be displayed for the length of the content in the column, but no further */
	margin:15px 0px 0px 15px;
	padding: 15px;
}

#mainContent { 
	margin: 0 0 0 265px; /* 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 */
	background-color:#FFFFFF;
	display:block;
	width:500px;
}
#mainContentStandard { 
	margin: 0; /* 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: 15px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	padding-right:15px;
	width:920px;
	font-size:12px;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	line-height:17px;
	background-color:#FFFFFF;
	display:block;
}
#mainContent #panels {
	float:left;
	display:block;
	width:685px;
}
#mainContent #panels #blockSmall {
	width:225px;
	float:left;
	display:block;
	height:
}
.blockTop { height:220px; margin-top:15px; }
.blockBottom { height:335px; margin-top:15px; }

#mainContent #panels #blockLarge {
	width:450px;
	float:left;
	display:block;
}


#footer { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#c9b7b7;
	font-size:70%;
	color:#333333;
	margin-top:15px;
} 
#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: 5px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	text-align:center;
}
#footer a {
	color:#333333;
	text-decoration:none;
}
#footer a:hover {
	color:#000000;
	text-decoration:underline;
}
.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;
}
#dhtmltooltip{
position: absolute;
left: -50px;
width: 200px;
border: 1px solid black;
padding: 5px;
background-color: #FFDE00;
visibility: hidden;
z-index: 1000;
font-size:11px;
/*Remove below line to remove shadow. Below line should always appear last within this CSS*/
/*filter: progid:DXImageTransform.Microsoft.Shadow(color=gray,direction=135);*/
}

#dhtmlpointer{
position:absolute;
left: -300px;
z-index: 1001;
visibility: hidden;
}

--> 
