@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;
	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;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
	background-color: #FFF;
	background-repeat: repeat;
}

#container { 
	width: 1000px;  /* 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: 0px;
	text-align: left; /* this overrides the text-align: center on the body element. */
}

#header {
	padding-top: 0;
	padding-right: 0px;
	padding-bottom: 0;
	padding-left: 0px;
	background-color: #FFF;
}

#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 */
}

#sidebar {
	float: left; /* 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 10px 15px 20px;
	background-color: #FFF;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-color: #000;
	border-right-color: #000;
	border-bottom-color: #000;
	border-left-color: #000;
}

#sidebar div {
	margin-bottom: 30px;
}

#sub_navigation {
	float: left; /* 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 15px 20px;
	background-color: #FFF;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-color: #000;
	border-right-color: #000;
	border-bottom-color: #000;
	border-left-color: #000;
}

#sub_navigation .thumbnail {
	display: inline;
	height: 60px;
	width: 60px;
	float: left;
	border: none;
	margin: 10px;
	overflow: hidden;
}
#sub_navigation .news {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	color: #666;
}
#sub_navigation .news2 {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 18px;
	color: #666;
}
#sub_navigation .news a {
	color:#366;
	text-decoration: none;
}
#sub_navigation .news a:hover{
	color:#3F9
}
#navigation ul {
	list-style-type: none;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 1em;
}

#navigation ul li {
	margin-bottom: 0.5em;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 14px;
	color: #9AD491;
}

#navigation ul li a {
	color: #9AD491;
	vertical-align: text-top;
	text-decoration: none;
	list-style-type: circle;
}
#navigation ul li a:hover{
	text-decoration:none;
	color:#030;
}

#navigation2 ul {
	list-style-type: none;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 1em;
}

#navigation2 ul li {
	margin-bottom: 0.5em;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 14px;
	color: #6CBA95;
}
#navigation2 ul li a {
	color: #6CBA95;
	vertical-align: text-top;
	text-decoration: none;
	list-style-type: circle;
}
#navigation2 ul li a:hover{
	text-decoration:none;
	color:#181F3F;
}
#content {
	width: 660px;
	margin: 0 0 0 300px; /* 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: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	line-height: normal;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	color: #878787;
}
#content a {
	color:#366;
	text-decoration: none;
}
#content a:hover {
	text-decoration:none;
	color:#030;
}
#content .title {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	color: #666;
	text-align: center;
}
#content .title2 {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 24px;
	color: #666;
	text-align: center;
}
#content .title3 {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	color: #999;
	text-align: justify;
	font-style: italic;
}
#content .indextemp1 {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 24px;
	color: #099;
	text-align: center;
	font-style: normal;
	font-weight: bold;
}

#content ul {
	list-style-type: none;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 1em;
}

#content ul li {
	margin-bottom: 0.5em;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	color: #666;
	list-style-type: none;
}

#footer {
	clear: both;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	background-color: #FFF;
	color: #666;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 400px;
}

#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 */
}
