@charset "utf-8";
/* CSS Document */
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;
	font-family: Verdana, Geneva, sans-serif;
	background-color: #FFE0B3;
}
.main #container {
	width: 960px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #0091FF; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
} 
.main #header {
	padding-top: 0;
	padding-bottom: 0;
	width: 960px;
	background-color: #ff9900;
} 
#header table tr #td1 {
	font-size: 50px;
}
.main #sidebar {
	float: left; /* since this element is floated, a width must be given */
	width: 180px;
	margin-top: 30px;
	margin-bottom: 30px;
}
#sidebar ul {
	margin:0;
	padding:0;
	list-style:none;
}
#sidebar ul li {
	background-image:url(../images/menu.gif);
	background-repeat: no-repeat;
	background-position: left center;
	margin: 0px;
	padding: 0px;
}
#sidebar ul a {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 19px;
	color: #000000;
	text-decoration: none;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #000;
	display: block;
	width: 180px;
	background-image: url(../images/menu.gif);
	background-repeat: no-repeat;
	background-position: left center;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #000;
	height: 27px;
	text-align: center;
	padding-top: 3px;
}
#sidebar ul a:hover {
	background-position:-180px 0px;
	color:#FFF;
}
.main #mainContent {
	width: 700px;
	margin-top: 30px;
	margin-right: 15px;
	margin-bottom: 30px;
	margin-left: 205px;
	padding-top: 0;
	padding-right: 20px;
	padding-bottom: 0;
	padding-left: 20px;
} 
.main #footer {
	width: 960px;
	padding-top: 0;
	padding-bottom: 0;
	background-color: #ff9900;
} 
#footer table tr th {
	color: #FFF;
}
.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;
}
