@charset "UTF-8";
*{
	margin: 0;
	padding: 0;
}
/*TAGS*/
body {
	font: 85% Arial, Helvetica, sans-serif;
	background: #CCC;
	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;
}
a, a:hover, a:visited, a:link, a:active{
	text-decoration: none;
	color:#092969;
	font-weight: bold;
}
a:hover{
	text-decoration: underline;
}
h1{
	color: #007F7F;
}
h2{
	color:#092969;
	margin-top: 0px;
	margin-bottom: 20px;
}
p   {
	margin-bottom: 20px;
}
#container {
	width: 920px; 
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 15px;
	margin-right: auto;
	margin-bottom: 10px;
	margin-left: auto;
	padding-bottom: 90px;
	background-color: #FFFFFF;
	background-image: url(../images/bg.gif);
	background-repeat: no-repeat;
	background-position: right 240px;
	position: relative;
} 
#login {
	overflow: hidden;
	position: absolute;
	width: 324px;
	top: -15px;
	right: 15px;
	background-image: url(../images/login_bg.png);
	background-repeat: no-repeat;
	background-position: right bottom;
}
#login form {
	padding-left: 100px;
	padding-right: 25px;
	padding-bottom: 15px;
	padding-top: 15px;
	background-image: url(../images/login_circle.png);
	background-repeat: no-repeat;
	background-position: right top;
}
#login button {
	background-image: url(../images/submit_bg_white.gif);
	background-repeat: no-repeat;
	background-position: center center;
	text-align: center;
	width: 74px;
	padding-top: 3px;
	padding-bottom: 3px;
	background-color: #007A7A;
	font-weight: bold;
	color: #000000;
	font-size: 12px;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	margin-top: 5px;
	float: right;
	clear: both;
	display: block;
}
#login a {
	color: #FFFFFF;
}
#login p {
	font-size: 80%;
	display:block;
	padding-top: 1em;
	margin-bottom: 15px;
}
#login h2 {
	color: #FFFFFF;
	font-size: 14px;
	margin-bottom: 0.5em;
}
#login input {
	font-size: 10px;
	color: #000000;
	width: 110px;
	float: right;
	margin-left: 5px;
	margin-right: 0px;
	margin-bottom: 0px;
	padding-left: 2px;
}
#login label {
	color: #FFFFFF;
	font-weight: bold;
	float: left;
	clear: both;
	display: block;
	width: 100%;
	margin-bottom: 7px;
}
#header_img {
	margin-bottom: 7px;
}
#header {
	background-color: #ffffff;
	background-image: url(../images/header_bg.png);
	background-repeat: repeat-x;
	background-position: center bottom;
} 
#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 */
}
#nav {
	float: left; /* since this element is floated, a width must be given */
	width: 172px; /* 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 */
	padding: 25px 10px 15px 28px; /* padding keeps the content of the div away from the edges */
}
#nav ul {
	list-style-type: none;
}
#nav li {
	background-image: url(../images/nav_bullet.gif);
	background-repeat: no-repeat;
	font-weight: bold;
	color: #042466;
	margin-top: 0.5em;
	background-position: 0px 0px;
	overflow: visible;
	padding-left: 1.5em;
}
#nav li a{
	display:block;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #009966;
	padding-bottom: 0.5em;
	width: 100%;
}
#sidebar_right {
	float: right; /* since this element is floated, a width must be given */
	width: 233px; /* 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 */
	padding: 25px 20px 15px 20px; /* padding keeps the content of the div away from the edges */
}
#mainContent {
	margin: 0 270px 75px 210px; /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the sidebar spaces when the content in each sidebar ends. */
	padding: 25px 10px 0 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
 #footer {
	color:#092969;
	background-image: url(../images/footer_bg.png);
	background-repeat: repeat-x;
	background-position: center top;
	padding-top: 12px;
	padding-right: 20px;
	padding-bottom: 15px;
	padding-left: 28px;
} 
#footer p {
	margin: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size: 80%;
}
.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;
}
#nav a.navBottom {
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
#sidebar_right img {
	margin-bottom: 15px;
}

