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

body {
	font: 80% Verdana, Arial, Helvetica, sans-serif;
	background: #666666;
	background-image:url(../images/outer-bg.jpg);
	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 */
}
.thrColFixHdr #container {
	width: 900px;  /* 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: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background:url(../images/sky-header-bg.jpg);
	background-repeat:no-repeat;
	background-color:#2F73B7;
}
.thrColFixHdr #header {
	height:160px;
	padding: 0 10px 0 20px;  /* 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. */
}
.thrColFixHdr #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 */
}
.thrColFixHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 280px; /* 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 */
	_width: 280px;		/* Hack for IE6; without this, the main content center column is pushed down below the two sidebars */
	/*padding: 15px 5px 15px 15px;*/ /* padding keeps the content of the div away from the edges */
	margin: 50px 0 0 20px;
	_margin: 50px 0 0 0px;  /* Hack for IE6 */
	padding:0;
}
.thrColFixHdr #sidebar1 a:link {
	color:#2864A3;
}
.thrColFixHdr #sidebar1 a:visited {
	color:#2864A3;
}
.thrColFixHdr #sidebar2 {
	float: right; /* 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 */
	_width:200px;		/* Hack for IE6; without this, the main content center column is pushed down below the two sidebars */
	padding: 0; 
	margin:50px 14px 0 0;
	_margin:50px 0px 0 0; /* Hack for IE6 */
}
.thrColFixHdr #sidebar1 ul {
	margin:5px 0 0 20px;
	line-height:150%;
	}
.thrColFixHdr #sidebar1 h2 {
	margin:0;
	padding:30px 0 0px 0;
	font-size:120%;
}
.thrColFixHdr #sidebar1 h3 {
	margin:0;
	padding:5px 0 0 0;
	font-size:120%;
}

.thrColFixHdr #mainContent {
	margin: 0 200px 0 300px; /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the sidebar spaces when the content in each sidebar ends. */
	padding: 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	width:385px;		/* Without explicit width, appears different in IE7 vs. FF3 & Safari 3 */
	_width:385px;		/* Hack for IE6; without this, the main content center column is pushed down below the two sidebars */
}
.thrColFixHdr #mainContent h1 {
	padding-top:25px;
	font-size:140%;
	}
.thrColFixHdr #mainContent h2 {
	margin:0;
	padding:10px 0 0 0;
	font-size:120%;
	}
.thrColFixHdr #mainContent ul {
	margin:5px 0 0 30px;
	padding: 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}
.thrColFixHdr #mainContent a:link {
	color:#2864A3;
	font-weight:bold;
}
.thrColFixHdr #mainContent a:visited {
	color:#2864A3;
	font-weight:bold;
}
.thrColFixHdr #footer {
	position:relative;
	height:115px;
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#2F73B7;
	background-image:url(../images/lotus.png);
	background-repeat:no-repeat;
	background-position:left bottom;
}
.thrColFixHdr #footer p {
	color:#CCCCCC; position:absolute; bottom:20px; right:27%;
}
.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;
}
/* Dave's additional styles */
#nav {
	height:240px;	/* have to force the box to be tall enough to contain the expanded menu; otherwise, IE7 breaks when the user clicks on a menu item which expands to show the submenu */
	margin:0 0 0 0px;
	padding:28px 0 0 0;
	font-size:110%;
}
#nav ul {
	margin:0 0 0 -3px;
	padding:0;
	list-style-image: none;
	list-style-type: none;
}
#nav li {
	font-weight:bold;
	width: 1.em;
	border-bottom:1px gray solid;
}
#nav li a {
	text-decoration:none;
	color:#2864A3;
	display:block;
	width: 1.em;
	padding:0.15em 0.5em;
}
#nav li.current a {
	color:#F3E1C7;
}
#nav li.current  {
	color:#F3E1C7;
	background-color:#27619e;
	/*background-image:url(../images/current-page-bg.jpg);*/
	background-repeat:no-repeat;
}
#nav li a:hover {
	text-decoration:none;
	color:#eefbfb;
	/*background-color:#2f73b7;*/
	background-image:url(../images/menu_bg.gif);
	background-repeat:no-repeat;
	width: 1.em;
}
/*
#nav li a:visited {
	color:black;
	}
*/
#nav ul ul {
	padding-left:1.5em;
}


/* Form styling */
form {
	margin:15px 0;
	padding:0;
	}
fieldset {
	margin: 0;
	padding: 0;
}
label {
	display:block;
	margin:0.25em 0 0 0;
	padding:0 0 0.15em 0;
	}
fieldset ol {
margin:10px 10px 0px 10px;
padding: 0;
list-style: none;
}
fieldset li {
padding-bottom: 0.3em;
}
.submit {
width:120px; height:2em; margin:10px 0 10px 0px; padding:0 0 15px 0; font-weight:bold; font-size:1em;"
}

