@charset "windows-1255";
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #FFFFFF; /*url(../images/ui/bodyBG.jpg) repeat-x;*/
	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:#000033;
}

#shadow {/*background: #F7F7F7 url(../images/ui/shadowBG.jpg) center repeat-y;*/
	text-align: center;
	margin: auto;
	width: 986px;
	
}
#container { 
	width: 980px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF  url(../images/ui/container_BG.jpg) right repeat-y;
	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. */
	border-bottom: 2px solid #DDDDDD;
} 
#header { 
	background: #FFFFFF url(../images/ui/header.jpg) no-repeat; 
	
	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. */
} 
#header h1 {	display: none;}

#header a { display:block;height: 135px;;}
#headerSep { background: #FFFFFF url(../images/ui/header_seperator.jpg) top left no-repeat; height: 13px; font-size:0;}
#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 168px; /* 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: #E6EEFF url(../images/ui/left_BG.jpg) repeat-y; /* the background color will be displayed for the length of the content in the column, but no further */
	
}

.MenuTitle { background: url(../images/ui/left_title.jpg) no-repeat; 
		height: 32px;}

#menuContent {
	padding: 10px 7px 10px 16px;
	font-size: 80%; width: 145px;
	}

#menuContent ul {padding: 0; margin: 0;}

#menuContent ul li { 
	list-style: none;
	padding: 0; 
	margin: 0; 
	font-weight: bold;}	

#menuContent ul li a{ 
	border-bottom: 1px solid #2130A4; /*#000033; */
	display:block;
	padding: 4px 2px; 
	text-decoration:none;
	color: #2130A4;}	
#menuContent ul li a:hover{ background-color: #000033; color:#FFFFFF;}	

#menuContent ul li ul {padding: 0; margin: 0 0 0 14px;}	
#menuContent ul li ul li { list-style: none; padding: 0; margin: 0;}	
	
#mainContent { 
	font-size: 80%;
	margin: 0 0 0 168px; /* 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 20px 0 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 

#mainContent P, #mainContent li, #mainContent td{ line-height: 150%;}
#mainContent ul li {list-style-image:url(../images/ui/bullet.jpg)}

#mainContent a { color:#000033;}
#mainContent a:hover { text-decoration:none;}

#mainContent h1 {font-size: 200%; margin-top: 2px;}


.tableHeader {background-color: #E6EEFF; border-bottom: 1px solid #000066;}
.message {color: #FF0000;}

#footerSep { background:#FFFFFF url(../images/ui/footer_separator.jpg) top left no-repeat; height:21px;}
#footer { 
	background: url(../images/ui/footer.jpg);
	color:#FFFFFF;
	padding: 5px 15px 0 15px;
	height: 57px;
	font-size: 70%;
} 
#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 */
}
#footer a {color: #FFFFFF;}
#footer a:hover{color: #FFFFFF; text-decoration:none;}


#cred { padding-top: 10px; color:#999999; font-size:80%;}
#cred a {color: #999999;}
#cred a:hover{color: #999999; text-decoration:none;}

.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;
}