@charset "UTF-8";
/* CSS Document */
 
body  {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	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: #174d23;
	margin-top: 20px;
}
#container {
	width: 924px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto;
	text-align: left;
	padding: 15px;
} 
#header {
	width: 924px;
	margin: 0px;
	padding: 0px;
}

#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 126px; /* padding keeps the content of the div away from the edges */
	margin: 0px;
	padding: 0px;
}

#mainContent {
	margin: 0 0px 0 148px;
	width: 740px;
	padding: 0px;
}

.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;
}
body,td,th {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
}

a:link {
	color: #550C4F;
}
a:visited {
	color: #552946;
}
a:active {
	color: #F7941E;
}
 
#loginBox {
	width: 122px;
	border: 2px solid #f7941e;
	background-color: #176f37;
	margin-top: 25px;
	margin-left: 2px;
	padding-top: 5px;
	padding-bottom: 5px;
}
#loginBox td, #loginBox a {
	color: #FFFFFF;
	font-size: 11px;
}
#loginBox input[type=text],#loginBox input[type=password] {
	font-size: 11px;
	color: #000000;
	background-color: #A0D2B1;
	padding: 1px;
	width: 100px;
	border: 1px solid #C28531;
	font-family: Arial, Helvetica, sans-serif;
}
h1 {
	font-size: 22px;
	font-weight: bold;
	color: #552946;
	font-family: Arial, Helvetica, sans-serif;
}
h3 {
	font-size: 13px;
	font-weight: bold;
	color: #2D9152;
}

