@charset "utf-8";
/* CSS Document */


body  {
	font: 100% Arial, Helvetica, sans-serif;
	background-color: #F3FFE7;
	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;
}
#container { 
	width: 800px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background-color: #F3FFE7;
	margin: 10px 0 0 0px; /* 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. */
}


#sidebar1 {
	float:left;
	background-image: url(../images/background_tile2.jpg);
	background-color: #F3FFE7;
	margin: 0px  0 0 10px;
	width: 205px;
	height: 900px;
	padding: 50px 0px 5px 50px;
}

#sidebar1 h3{font-size: 18px;
	color: #006633;
	font-family: "Futura Md BT";
	font-weight: bold;
	}
	
#menu {width:160px;}	

#menu a{
	text-decoration:none;
	font: 16px bold Arial, Helvetica, sans-serif;
	display:block;
	margin: 8px 0 8px 0;
	padding:2px 0 2px 10px;
	color:#ffffff;
	background-color:#990000;
	}
#menu a:hover{color:#990000; background-color:#E6E0BF;}

#mainContent { 
	margin: 0 0 0 280px; /* 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: 20px 20px 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 

#mainContent a {
	text-decoration:none;
	color: #000099;
	}
#mainContent a:hover {
	color: #FF0000;
	}

#mainContent h2{
	color: #990000;
	font-size: 20px;
	text-align:center;
	margin:10px 0 10px 0;
	}
	
#mainContent h4 {
	color:#006633;
	margin:-8px 0 0 0;
	text-align:center
	}
#mainContent .profile {
	font:Arial, Helvetica, sans-serif;
	font-size:17px;
	font-weight: 600;
	color:#990000;
	text-align:justify;
	line-height:120%;
	}
	
.slogan {font-size: 18px;
	color: #006633;
	text-align:center;
	font-style:italic;
	margin: 0 0 0 0;
	}
	
#mainContent p {
	margin: 8px 0 5px 0;
	}

#mainContent #inspthead {
	font:18px bold Arial, Helvetica, sans-serif;
	color:#990000;
	margin: 10px 0 -5px;

}

#mainContent #insptpara {
	font:normal 16px/20px "bold Arial", Helvetica, sans-serif;
	color: #000000;
	margin: 8px 0 6px 0;
}

#mainContent li {
	font:normal 16px/20px "bold Arial", Helvetica, sans-serif;
	color: #000000;
	margin: 18px 0 6px 0;
}
	
.Ptext {
	color: #990000;
	font-size: 16px;
	text-align:left;
	}

.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;
}

.fltrtboarder {
	float: right;
	margin: 8px 0 4px 25px;
	border: 4px solid #C6C8B2;

}

.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;
}

