@charset "utf-8";
body  {
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
	font-family: "Trebuchet MS", Verdana, Tahoma, Arial, sans-serif;
	font-size: 100%;
	vertical-align: baseline;
	background-color: #bcddab;
}
#container {
	width: 780px;
	margin: 0 auto;
	text-align: left;
	border: 1px solid #FFFFFF;
	background-image: url(images/fauxBg.gif);
} 
#header {
	margin: 0px;
	padding: 0;
	height: 100px;
	border-bottom: 5px solid #F3F3F3;
	background-repeat: no-repeat;
	background-position: left top;
} 


#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: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}




#sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 200px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px;
	background-image: url(images/rightColBg.gif);
}

#sidebar1 h1{
	margin: 0;
	padding: 0;
	font-size: 1.3em;
	font-weight: lighter;
	color: #FF6600;
}

/* #sidebar1 h1 {
	font-size: 1em;
	color: #FF6600;
	padding: 0px;
	margin-top: 15px;
	margin-bottom: 5px;
	background-color: #F3F3F3;
	border-bottom: 1px solid #CCCCCC;
	font-weight: lighter;
} */
 #sidebar1 ul {
	padding: 0 10px 0 0;
	/*list-style-image: url(images/hiBullet.gif);*/
	margin: 0px;
}
 #sidebar1 li {
	/*list-style-position: outside;
	list-style-image: url(images/hiBullet.gif);*/
	font-family: Verdana, Arial, Helvetica, sans-serif;
	/*line-height: 1.1em;*/
	clip:  rect(auto auto auto -1em);
	margin-top: .4em;
	margin-left: 5px;
	list-style-type: none;	/*padding-left: -10px;*/
	font-size: .8em;
}
 #sidebar1 li a {
		text-decoration: none;
		padding: 1px 3px;
		color: #ffffff;
		}
 #sidebar1 li a:hover {
	text-decoration: none;
	color: #000000;
}
 #sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 250px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 20px 15px 20px;
}



#mainContent {
	margin: 0 250px 0 0; /* the right margin on this div element creates the column down the right 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; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 

 #header #topNav {
	padding: 0;
	float: left;
	margin-top: 66px;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 200px;

}
#mainContent p {
	line-height: 1.4em;
	margin-top: 1em;
	margin-right: 0px;
	margin-bottom: 1em;
	margin-left: 0px;
	font-size: 0.8em;
	font-family: Arial, Helvetica, sans-serif;
	color: #333333;
}

#mainContent p.first {
	margin-top: 0px;
}



#mainContent ul {

}

#mainContent li {
	line-height: 1.2em;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 0px;
	font-size: 0.8em;
	font-family: Arial, Helvetica, sans-serif;
	color: #333333;
}


#mainContent h1{
	margin: 0;
	padding: 0;
	font-size: 1.6em;
	font-weight: lighter;
	color: #333333;
}

#mainContent h2{
	margin: 0;
	padding: 0;
	font-size: 1.3em;
	font-weight: lighter;
	color: #333333;
}

#mainContent h3{
	margin: 0;
	padding: 0;
	font-size: 1em;
	font-weight: bold;
	color: #333333;
}


#topNav ul {
	display: block;
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: center;
	/*height: 60px;*/	/*line-height: 1em;*/
}
#topNav ul li {
	/*font-weight: bold;*/
  	display: block;
	float: left;
	position: relative; /*** IE6 needs this to display the links ***/
	padding: 5px 0px;
	margin: 3px 0;
	width: 5em;
	/*border-bottom: 1px solid #FFFFFF;*/
}

#topNav ul li a {
	color: #000000;
	font-size: 1em;
	text-decoration: none;
	font-variant: normal;
}
#topNav ul li a:hover {
	color: #FF6600;
	text-decoration: none;
	background-color: #F3F3F3;
	/*border-bottom: 1px solid #CCCCCC;*/
}
#topNav ul li.here {
	color: #FF6600;
	text-decoration: none;
	background-color: #F3F3F3;

}



#footer {
	margin:0;
	padding: 0 5px 0 5px;
	border-top-width: 5px;
	border-top-style: solid;
	border-top-color: #FFFFFF;
	height: 40px;
	background-image: url(images/footerBorder.gif);
	background-position: bottom;
	background-repeat: no-repeat;
} 
#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 #botNav {
	padding: 0;
	float: left;
	margin: 0;
	height: 25px;
	font-size: 80%;
}

#botNav ul {
	display: block;
	list-style: none;
	padding: 0;
	margin:2px;
	text-align: center;
	/*line-height: 1em;*/
}
#botNav ul li {
	/*font-weight: bold;*/
  	display: block;
	float: left;
	position: relative; /*** IE6 needs this to display the links ***/
	padding: 1px 0;
	margin: 3px 0;
	width: 5em;
}
#botNav ul li.first {
	margin-left: 0; 
	list-style: none; }

#botNav ul li.last {
	border-right-style: none;
}
#botNav a {
	padding: 3px 0;
	color: #333333;
	text-decoration: none;
} 
#botNav a:hover {
	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;
}

.navclear {
  	display: block;
	clear: both; }


.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;
}
