@charset "utf-8";
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	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: #000000;
	background-color: #FFFFCC;
}
 #container #footer p a {
	color: #003300;
	text-decoration: none;
}
 #container #footer a:hover {
	color: #FFFFFF;
	text-decoration: underline;
}
 #container #sidebar1 li a {
	text-decoration: none;
	color: #000000;
}


 #container { 
	width: 780px;  /* 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. */
} 
 #header {
	background-color: #FFFFFF;
	height: 90px;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 30px;
	padding-left: 20px;
	background-image: url(images/logo1.jpg);
	background-repeat: no-repeat;
	background-position: right;
	border-bottom-width: 1px;
	border-bottom-style: dashed;
	border-bottom-color: #009966;
} 
 #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 */
	font-family: Arial, Helvetica, sans-serif;
	font-weight: normal;
	color: #009966;
	letter-spacing: 0.25em;
}
 #container #header h2 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: normal;
	margin-bottom: 20px;
}

 #sidebar1 {
	width: 780px;
	background-color: #00CC66;
	height: 20px;
	text-align: center;
	padding-top: 5px;
	padding-bottom: 5px;
	border-bottom-style: dashed;
	border-bottom-color: #060;
	border-bottom-width: thin;
}
 #container #sidebar1 ul {
	height: 140px;
}
 #container #sidebar1 p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
}

 #container #footer p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	text-align: center;
}

 #container #sidebar1 ul {
	font-size: 14px;
	font-family: Arial, Helvetica, sans-serif;
	list-style-type: none;
	display: inline;
	text-align: center;
	margin-top: 10px;
}
 #container #mainContent p a {
	color: #006600;
	text-decoration: none;
	font-weight: bold;
}
 #container #mainContent p a:hover {
	color: #660000;
	text-decoration: underline;
}

 #container #sidebar1 li a:hover {
	color: #FFFFFF;
	text-decoration: underline;
	list-style-type: none;
}


 #mainContent {
	margin-top: 20px;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 0px;
	padding-top: 0;
	padding-right: 20px;
	padding-bottom: 0;
	padding-left: 20px;
} 
 #footer {
	background-color: #66CC99;
	margin-top: 10px;
	padding-top: 10;
	padding-right: 10px;
	padding-bottom: 10;
	padding-left: 20px;
} 
 #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 */
}
.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;
}
#logo {
	float: right;
	height: 80px;
	width: 120px;
	margin-right: 40px;
	background-image: url(images/logo1.jpg);
	background-repeat: no-repeat;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	background-color: #FFFFFF;
}
 #container #mainContent .hisml {
	font-size: 16px;
	text-transform: capitalize;
	color: #009966;
}
 #container #sidebar1 h3 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: bolder;
	text-indent: 15px;
	color: #FFFFFF;
	letter-spacing: 0.15em;
}
 #container #header h1.sml {
	font-size: 10px;
}
.style2 {font-size: 14px}#mainContent p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
}
#container #sidebar1 .on {
	text-decoration: underline;
}

/*css form*/

.cssform p{
width: 300px;
clear: left;
margin: 0;
padding: 5px 0 8px 0;
padding-left: 155px; /*width of left column containing the label elements*/
border-top: 1px dashed gray;
height: 1%;
}

.cssform label{
	font-weight: bold;
	float: left;
	margin-left: -155px; /*width of left column*/
	width: 150px; /*width of labels. Should be smaller than left column (155px) to create some right margin*/
	font-size: 12px;
	color: #060;
}

.cssform input[type="text"]{ /*width of text boxes. IE6 does not understand this attribute*/
width: 180px;
}

.cssform textarea{
width: 250px;
height: 150px;
}

/*.threepxfix class below:
Targets IE6- ONLY. Adds 3 pixel indent for multi-line form contents.
to account for 3 pixel bug: http://www.positioniseverything.net/explorer/threepxtest.html
*/

* html .threepxfix{
margin-left: 3px;
}
#sidebar1 ul li {
	display: inline;
	width: 200px;
	margin-right: 15px;
	margin-left: 15px;
}
#mainContent .priv {
	font-size: 10px;
}
#container #mainContent .sitemap {
	text-align: center;
}
#mainContentsitemap {
	float: none;
	margin-top: 20px;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 200px;
	padding-top: 0;
	padding-right: 20px;
	padding-bottom: 0;
	padding-left: 20px;
}
#container #mainContentsitemap h1 {
	font-size: 16px;
	color: #060;
}
#container #mainContentsitemap .sitemap {
	text-align: left;
}
#container #mainContentsitemap .sitemap li a {
	color: #090;
	text-decoration: none;
}
#container #mainContentsitemap .sitemap li a:hover {
	color: #333;
	text-decoration: underline;
}
