@charset "UTF-8";
body {
	background: #666666;
	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: #FFFFFF;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
}
#container  {
	width: 900px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	text-align: left; /* this overrides the text-align: center on the body element. */
	padding: 0px;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	border-right-width: 1px;
	border-left-width: 1px;
	border-right-color: #999999;
	border-left-color: #999999;
	border-right-style: solid;
	border-left-style: solid;
}
#header  {
	margin: 0px;
	padding-top: 4px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 25px;
	background-repeat: no-repeat;
	background-position: center 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: 0px; /* 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;
}
#nav {
	margin: 0px;
	height: 35px;
	padding-left: 5px;
	background-image: url(../images/nav.gif);
	background-repeat: repeat-x;
	background-position: center top;
}
#LeftSide  {
	float: left; /* since this element is floated, a width must be given */
	width: 150px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #ffffff; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px;
	margin-top: 20px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 20px;
}
#LeftSide ul {
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
#LeftSide li {
	width: 150px;
	border-bottom-color: #F5AB3D;
	list-style-type: none;
	border-bottom-width: 1px;
	border-bottom-style: solid;
}
#LeftSide ul    li   ul  {
	margin: 0px;
	padding: 0px;
}
#LeftSide ul    li   ul   li  {
	background-color: #CCCCCC;
	padding-left: 20px;
	width: 130px;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #FFFFFF;
}
#LeftSide ul    li   ul   li   a  {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #666666;
	text-decoration: none;
	background-color: #CCCCCC;
}
#LeftSide a {
	display: block;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
	color: #FFFFFF;
	text-decoration: none;
	background-color: #F5AB3D;
	margin: 0px;
	padding-top: 5px;
	padding-right: 0px;
	padding-bottom: 7px;
	padding-left: 6px;
}
#LeftSide a:hover {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #FFFFFF;
	text-decoration: none;
	background-color: #666666;
}
#RightSide  {
	float: right; /* since this element is floated, a width must be given */
	width: 170px; /* padding keeps the content of the div away from the edges */
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	line-height: 1.5em;
	color: #333333;
	text-decoration: none;
	background-color: #EAE5DF;
	margin-top: 20px;
	padding-top: 15px;
	padding-right: 13px;
	padding-bottom: 35px;
	padding-left: 15px;
	background-image: url(../images/rightbottom.gif);
	background-repeat: repeat-x;
	background-position: center bottom;
}
#RightSide  h3 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	color: #FFFFFF;
	text-decoration: none;
	background-image: url(../images/lightBlue.gif);
	background-repeat: repeat-x;
	background-position: center top;
	padding-bottom: 6px;
	padding-left: 28px;
	padding-top: 6px;
	margin: 0px;
}
#mainContent  {
	margin-top: 20px;
	margin-right: 200px;
	margin-bottom: 30px;
	margin-left: 200px;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 10px;
} 
#mainContent  p  {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.9em;
	color: #222222;
	line-height: 1.5em;
}
#mainContent  li  {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	line-height: 1.4em;
	color: #333333;
	text-decoration: none;
	list-style-image: url(../images/squre.gif);
}
#mainContent li a {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: bold;
	color: #F5AB3D;
	text-decoration: underline;
	list-style-image: url(../images/squre.gif);
	list-style-position: outside;
	line-height: 1.1em;
}
#mainContent li a:hover {
	color: #666666;
}
#mainContent h1 {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 24px;
	font-weight: bold;
	color: #68308B;
	text-decoration: none;
	background-color: #CCCCCC;
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 9px;
}
#mainContent h2 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 18px;
	font-weight: bold;
	color: #CC9900;
	text-decoration: none;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 4px;
	margin-left: 0px;
}
#mainContent h3 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: bold;
	color: #FFFFFF;
	text-decoration: none;
	background-color: #68308B;
	padding-top: 4px;
	padding-bottom: 4px;
	padding-left: 7px;
	background-image: url(../images/lightBlue.gif);
	background-repeat: repeat-x;
}
#mainContent th {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #000000;
	text-decoration: none;
}
#mainContent td {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #333333;
	text-decoration: none;
}
#news {
	color: #333333;
	text-decoration: none;
	background-repeat: repeat-x;
	background-position: top;
	float: right;
	height: 310px;
	width: 290px;
	border: 1px solid #999999;
	margin-top: 20px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 0px;
}
#news img {
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
}
#news ul {
	margin: 0px;
	padding-left: 0px;
}
#news li {
	list-style-image: url(../images/GrayArrow_Small.gif);
	overflow: auto;
	padding-bottom: 8px;
	border-bottom-width: thin;
	border-bottom-style: dotted;
	border-bottom-color: #999999;
	padding-top: 6px;
	font-size: 0.8em;
	padding-left: 30px;
	font-family: Arial, Helvetica, sans-serif;
	color: #333333;
}
#news h1 {
	font-size: 1.2em;
	font-weight: bold;
	color: #FFFFFF;
	padding-bottom: 10px;
}
#box  {
	overflow: auto;
	height: 240px;
	width: 290px;
	padding-top: 10px;
}
#home {
	background-image: url(../images/home.jpg);
	height: 100px;
	width: 524px;
	border: 1px solid #CCCCCC;
	float: left;
	padding-left: 20px;
	padding-top: 210px;
	background-repeat: no-repeat;
	margin-top: 20px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
#home p {
	color: #FC9021;
	text-decoration: none;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 1em;
	font-weight: bold;
}
#footer  {
	padding: 0 10px;
	background-color: #662D8A;
}
#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 */
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.8em;
	color: #FFFFFF;
	text-align: center;
}
#footer a {
	color: #FFFFFF;
	text-decoration: underline;
}
.boldItalic {
	color: #F5AB3D;
	font-style: italic;
	line-height: 1.5em;
	text-decoration: none;
	font-size: 16px;
}
.box {
	background-color: #FFFFFF;
	display: block;
	width: 255px;
	float: left;
	margin-top: 7px;
	margin-right: 17px;
	margin-bottom: 10px;
	margin-left: 0px;
	padding: 7px;
}
.SubMenuSmall {
	font-size: 90%
}
.subtitle {
	font-size: 1.2em;
	font-weight: bold;
	color: #333333;
	font-family: Arial, Helvetica, sans-serif;
}
.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 { 
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

