@charset "UTF-8";
body  {
	background: #F7F4EA; /* 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: Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
	margin-top: 50px;
}
#shadow-container  {
	width: 600px;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-color: #F7F4EA;
	margin-left: auto;
	padding-bottom: 0px;
	margin-right: auto;
} 
#shadow-container2 {
	width: 1000px;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-color: #f7f2ea;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	padding-bottom: 0px;
	height: auto;
}
#shadow-container3 {
	width: 620px;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-color: #f7f2ea;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	padding-bottom: 0px;
	border: 1px solid #666666;
}



#shadow-container .shadow2,
#shadow-container .shadow3,
#shadow-container .container {
	position: relative;
	left: -1px;
	top: -1px;
}

	#shadow-container .shadow1 {
		background: #F1F0F1;
	}

	#shadow-container .shadow2 {
		background: #DBDADB;
	}

	#shadow-container .shadow3 {
		background: #B8B6B8;
	}

	#shadow-container .container {
	background: #ffffff;
	border: 1px solid #848284;
	}
.form {
	background-color: #f7f2ea;
}
#header  {
	padding: 0;  /* 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. */
	background-image: url(images/header.jpg);
	background-repeat: no-repeat;
	margin: 0px;
	height: 93px;
	width: 587px;
} 
#nav {
	background-image: url(images/navback.jpg);
	background-repeat: no-repeat;
	height: 23px;
	width: 587px;
}
#header h1 {
	display: none;
}
#header img {
	margin-top: 45px;
	margin-left: 0px;
	padding-left: 0px;
	float: left;
}
#sidebar1  {
	float: left; /* since this element is floated, a width must be given */
	width: 185px;
	padding-top: 10px;
	padding-bottom: 15px;
	padding-left: 0px;
	margin: 0px;
	padding-right: 0px;
}
#mainindex  {
	margin-top: 8px;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 0px;
	padding-top: 0;
	padding-right: 0px;
	padding-bottom: 0;
	padding-left: 6px;
	height: 290px;
	width: 400px;
	float: left;
} 
#mainbody {
	margin-top: 8px;
	margin-bottom: 0;
	padding-top: 0;
	padding-bottom: 0;
	height: 400px;
	width: 398px;
	float: left;
	padding-left: 3px;
	padding-right: 3px;
}
#mainbody2 {
	margin-top: 8px;
	margin-right: 0;
	margin-bottom: 10;
	margin-left: 0px;
	padding-top: 0;
	padding-right: 2px;
	padding-bottom: 0;
	padding-left: 8px;
	height: auto;
	width: 778px;
	float: left;
	text-align: left;
}
#mainbody3 {
	margin-top: 8px;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 0px;
	padding-top: 0;
	padding-right: 2px;
	padding-bottom: 0;
	padding-left: 3px;
	height: 390px;
	width: 400px;
	float: left;
}
#mainbody2 ul {
	list-style-type: none;
	margin-top: 15px;
	margin-left: 0px;
	padding: 0px;
	margin-bottom: 10px;
	font-size: 12px;
}
#mainbody2 li {
	display: inline;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 5px;
	padding-right: 20px;
}
#mainbody2 a {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: normal;
	color: #FF6600;
	text-decoration: none;
	padding-left: 5px;
}
#mainbody2 a:hover {
	color: #666666;
}
#footer  {
	background-image: url(images/footer.jpg);
	background-repeat: no-repeat;
	padding: 0;
	margin-top: 15px;
} 
#footer2 {
	background-image: url(images/footer.jpg);
	background-repeat: repeat-x;
	padding: 0;
	margin-top: 15px;
}
#footer  p  {
	margin: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #333333;
	text-align: center;
	padding-top: 3px;
	padding-right: 0;
	padding-bottom: 3px;
	padding-left: 0;
}
#footer2 p {
	margin: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #333333;
	text-align: center;
	padding-top: 3px;
	padding-right: 0;
	padding-bottom: 3px;
	padding-left: 0;
}
.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;
}

p {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: normal;
	color: #333333;
	margin: 0px;
	padding-left: 5px;
	line-height: 16px;
	padding-top: 0px;
	padding-right: 3px;
}
h2 {
	color: #666666;
}

h3 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: normal;
	color: #333333;
	margin: 0px;
	padding-top: 15px;
	padding-bottom: 6px;
	padding-left: 5px;
	}
h4 {
	margin: 0px;
	padding: 0px;
}

.orangetext {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: normal;
	color: #FF6600;
}	


.orangetext12 {
	font-size: 12px;
	font-weight: normal;
	color: #FF6600;}
	
	
	a:link {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: normal;
	color: #666666;
	text-decoration: none;
}
a:hover {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: normal;
	color: #FF6600;
	text-decoration: underline;
}
a:visited {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: normal;
	color: #999999;
}

#sidebar1 a {
	color: #FF6600;
	text-decoration: none;
}
#sidebar1 a:hover {
	color: #999999;
}

#sidebar1 p {
	margin: 0px;
	padding: 0px;
}

hr {
	border-top-style: solid;
	border-top-color: #999999;
	margin-top: 5px;
	margin-right: 5px;
	margin-bottom: 0px;
	margin-left: 5px;
	border-top-width: 1px;
	text-decoration: none;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	text-align: center;
}

#sidebar2 {
	float: left; /* since this element is floated, a width must be given */
	width: 178px;
	padding-bottom: 15px;
	margin: 0px;
	padding-right: 0px;
	text-align: left;
	border-right-width: 5px;
	border-right-style: solid;
	border-right-color: #FFFFFF;
	padding-left: 0px;
}

ul#navlist
{
	text-align: left;
	list-style: none;
	padding: 0;
	width: 158px;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: 0px;
}

ul#navlist li
{
display: block;
margin: 0;
padding: 0;
}

ul#navlist li a
{
	display: block;
	width: 100%;
	padding: 0.5em 0 0.5em 2em;
	color: #777;
	text-decoration: none;
	background: #f7f2ea;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-right-color: #aaab9c;
	border-bottom-color: #ccc;
	border-left-color: #fff;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #FFFFFF;
}

#navcontainer>ul#navlist li a {
	width: 159px;
}

ul#navlist li#active a
{
	background: #f0e7d7;
	color: #FF6600;
}

ul#navlist li a:hover, ul#navlist li#active a:hover
{
	color: #FF6600;
	border-right-color: #999999;
	background-color: #CCCCCC;
	border-top-color: #CCCCCC;
	border-left-color: #CCCCCC;
}

#mainbody  img {
	padding-top: 3px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
	margin-right: 0px;
	margin-left: 0px;
	float: left;
}
#mainbody  ul {
	list-style-type: none;
	margin-top: 15px;
	margin-left: 0px;
	padding: 0px;
	margin-bottom: 10px;
	font-size: 12px;
}
#mainbody  li {
	display: inline;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 5px;
	padding-right: 20px;
}

#mainbody  a {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: normal;
	color: #FF6600;
	text-decoration: none;
	padding-left: 5px;
}
#mainbody  a:hover {
	color: #666666;
}
#mainbody a:visited {
	color: #999999;
.submenu2 {
	background-color: #BCCBA2;
}
