@charset "UTF-8";
body {
	background: #666666;
	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;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	line-height: 16px;
}
#mainNavigation {
	width: 540px;
	position: relative;
	left: 220px;
	bottom: 60px;
}

/* new mainNav for internal pages */
#mainNavigationInside {
	width: 540px;
	position: relative;
	left: 220px;
	bottom: 48px;
}
#container {
	width: 800px;  /* 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 */
	border: 0;
	text-align: left;
}
#header {
	padding: 0 10px 0 20px;
	background-color: #ffe14f;
	height: 39px;
}
#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 */
}

 /* begin top header rollover code */
 
 /** www.webdesignerforum.co.uk CSS Rollover Tutorial by Ben Scott http://www.webdesignerforum.co.uk/index.php?showtopic=270  **/

#navigation ul {
	width: 550px;
	height: 30px;
	position: relative; /** Determines the width from the left of the page **/
	background: url(Home_page_images/menu2009.gif) no-repeat 0 0;
	list-style: none;
	margin: 0;
	padding: 0;
	right: 100px;
	top: 3px;
	left: 200px;
}
#navigation li {
	display: inline;
}
#navigation li a:link, #navigation li a:visited {
	border: none;
	width: 128px; /** width of the button in active state **/
	height: 30px; /** height of the button in active state **/
	display: block;
	position: absolute;
	top: 0px;
	text-indent: -7000px; /** Removes li text from the screen **/
	outline: none;
}
#navigation li.one a:link, #navigation li.one a:visited { 
	left: 0;
}
#navigation li.two a:link, #navigation li.two a:visited {
	left: 110px  /** how many px left of the first button i.e blue **/
}
#navigation li.three a:link, #navigation li.three a:visited {
	left: 270px  /** how many px left of the first button i.e blue **/
}
#navigation li.four a:link, #navigation li.four a:visited {
	left: 424px  /** how many px left of the first button i.e blue **/
}

#navigation li.one a:hover {
	background: url(Home_page_images/menu2009.gif) no-repeat 0 -30px; /** moves image up 30px showing the rollover states **/ 
}
#navigation li.two a:hover {
	background: url(Home_page_images/menu2009.gif) no-repeat -110px -30px; /** moves image up 30px and right 80px showing the rollover states **/
}
#navigation li.three a:hover {
	background: url(Home_page_images/menu2009.gif) no-repeat -270px -30px;
}
#navigation li.four a:hover {
	background: url(Home_page_images/menu2009.gif) no-repeat -424px -30px;
}


 
 /* end header rollover code */
 
 
 /*mainNav START*/

a.hidden {
	color: #0062A1;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	text-decoration: none;
}

a.hidden:visited {
	color: #666666;
}

a.hidden:hover {
	color: #04A0F0;
}

a.hidden:active {
	color: #CC0000;
}



#dropmenudiv{
	position:absolute;
	border:1px solid #CCCCCC;
	border-bottom-width: 0;
	font:normal 11px Arial;
	line-height:15px;
	z-index:100;
}

#dropmenudiv a{
	width: 100%;
	display: block;
	text-indent: 5px;
	border-bottom: 1px solid #CCCCCC;
	padding: 3px 0;
	color: #0066CC;
	background-color: #FFFFFF;
	text-align: left;
	margin-right: 5px;
	text-decoration: none;
}

#dropmenudiv a:hover{ /*hover background color*/
	background-color: #C8D8FF;
}

/*mainNav END*/

#mainContent {
	height: 445px;
	background-color: #FFFFFF;
	background-image: url(Home_page_images/mainContent_background2.gif);
	padding: 20px;
}
#HeaderTwo {
	padding: 10px 0px 0 10px;  /* 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. */
}
#box1 {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	color: #000000;
	background-color: #FFF;
	width: 551px;
	height: auto;
	border: thin solid #999;
	text-align: left;
	vertical-align: top;
	padding: 3px;
	position: absolute;
	left: 427px;
	top: 506px;
}

#mainContentInside {
	background-color: #FFFFFF;
	margin: 0 0 0 180px; /* 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 10px;
}


#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: auto; /* 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: #EBEBEB; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px 10px 15px 20px;
	height: auto;
	position: relative;
	background-color: #FFFFFF;
}
#sidebarRight {
	float: right; /* since this element is floated, a width must be given */
	width: 250px; /* 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: #EBEBEB; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 10px 5px 10px 10px;
	height: auto;
	position: relative;
	background-color: #D2DDF4;
	margin-left: 10px;
	margin-bottom: 10px;
	margin-right: 10px;
}

.sidebar1bold {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #990000;
	text-decoration: none;
	font-weight: bold;
}

.sidebar1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #003399;
	text-decoration: none;
	font-weight: 11;
}
.sidebar1curent {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: bold;
	color: #000000;
}


.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;
}

#footer {
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#013d71;
}
#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 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #FFFFFF;
}

.footer a {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #FFFFFF;
	text-decoration: underline;
}
#Flash {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	position: fixed;
	text-decoration: none;
}
.Flash a {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #333333;
	text-decoration: none;
	text-align: center;
	vertical-align: none;
}
.Flash {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #333333;
	text-decoration: none;
	text-align: left;
}
.quote {
	font-family: "Times New Roman", Times, serif;
	font-size: 13px;
	font-style: italic;
	line-height: 16px;
	color: #333333;
	background-color: #FFFFCC;
}
.highlight {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: bold;
	text-decoration: none;
	color: #333333;
}
