/* CSS Document */

body  {
	background: #FFFFFF url(images/img02.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: #000066;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 75%;
	font-weight: normal;
}
.twoColFixLtHdr #container { 
	width: 874px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
/*	background: #FFFFFF; */
	background-image: url('images/main.gif');
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 0px;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.twoColFixLtHdr #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 */
}
#head1_main {
margin: 50px 0 0 0;
background-image: url('images/head_main.jpg');
width: 874px;
height: 176px;
margin: 0 auto;
}
#head1_1 {
margin: 50px 0 0 0;
width: 874px;
height: 176px;
margin: 0 auto;
}
#head1_2 {
margin: 50px 0 0 0;
width: 874px;
height: 176px;
margin: 0 auto;
}
#head1_3 {
margin: 50px 0 0 0;
width: 874px;
height: 176px;
margin: 0 auto;
}
#head1_4 {
margin: 50px 0 0 0;
width: 874px;
height: 176px;
margin: 0 auto;
}
#head2 {
background-image: url('images/head_lower.jpg');
width: 874px;
height: 49px;
margin: 0 auto;
} 
#logo {
float: left; /* to align the logo to the left */
margin-left: 42px;  /* place the logo within its container, head1 */
margin-top: 44px;
border: 0;
}
.twoColFixLtHdr #homebar {
	float: left; /* since this element is floated, a width must be given */
	width: 200px; /* 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: 5px 3px 5px 3px;
}
.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 200px; /* 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: 5px 3px 5px 3px;
}
.twoColFixLtHdr #mainContent { 
	margin: 0 0 0 220px; /* 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. */
	width: 440px;
	padding: 0 10px 5px 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
.twoColFixLtHdr #mainContent2 { 
	margin: 0 0 0 220px; /* 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. */
	width: 625px;
	padding: 0 10px 5px 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	ul, li list-style-type:square !important;
} 
.twoColFixLtHdr #newsbar {
	float: right; /* since this element is floated, a width must be given */
	width: 185px; /* 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: 5px 3px 5px 3px;
}
.twoColFixLtHdr #footbut {
	float: left; /* since this element is floated, a width must be given */
	width: 874px; /* 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: 5px 3px 5px 3px;
	font: 50% Verdana, Arial, Helvetica, sans-serif;
}
ul,li {
list-style-type: none; /* to minimize problems */
margin: 0;
padding:0;
line-height: 30px; /* extra space */
}
.twoColFixLtHdr #footer { 
	background-image: url('images/footer.gif');
	height: 51px;
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
} 
.twoColFixLtHdr #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 */
}
.twoColFixLtHdr #searchbar { 
	background-image: url('images/searchbar.gif');
	height: 32px;
	font: 75% Verdana, Arial, Helvetica, sans-serif;
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
} 
.twoColFixLtHdr #searchbut { 
	height: 32px;
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	padding: 4px 0 0 200px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
} 
.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;
}
h1 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 35px;
	}
h2 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 20px;
	font-style: italic;
	text-align: right;
	color: #000066;
	}
#homebut a, #homebut a:visited {
display: block;
padding: 8px 20px 0px 0px;
border: 0px solid;
border-color: #FFFFFF #FFFFFF #a6a6a6 #FFFFFF;
color: #FFFFFF;
font-weight: bold;
text-align: right;
text-decoration: none;
}
#navlist a, #navlist a:visited {
display: block;
padding: 2px 24px 2px 2px;
border: 1px solid;
border-color: #FFFFFF #FFFFFF #a6a6a6 #FFFFFF;
background-color: #FFFFFF;
background-image:  url('images/menu_down.gif');
background-repeat: no-repeat;
background-position: 0% 50%;
color: #223f8b;
font-weight: bold;
text-align: right;
text-decoration: none;
}
#navlist a:hover {
background-color: #FFFFFF;
background-image:  url('images/menu_over.gif');
color: #000000;
}
#sidebar1 #navlist .uberlink {
background-color: #FFFFFF;
background-image:  url('images/menu_over.gif');
background-repeat: no-repeat;
background-position: 0% 50%;
color: #000000 !important;
font-weight: bold;
cursor: default;
}
[if IE 5]>
<style>
#navlist a {
float: left;
clear: both;
width: 100%;
}
</style>
<![endif]
[if lte IE 6]>
<style>
#navlist a {height: 1%;}
</style>
<![endif]
