@charset "utf-8";
body  {
	font: 75% "Trebuchet MS", Arial, Helvetica, sans-serif;
	background: #FFF;
	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: #033;
}
a {
	color: #F00;
}
#container {
	width: 1200px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF url(images2010/mainbg.gif) repeat-y;
	margin: 0 auto;
	text-align: left;
	border: 1px solid #000;
} 
#header {
	background: #FFF;
	padding: 10px;
	text-align: right;
}
#sidebar1 {
	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: 0px 10px 15px; /* padding keeps the content of the div away from the edges */
	color: #CFF;
	background: #000;
}
#sidebar1 h2 {
	font-size: 140%;
	margin-top: 10px;
}
#sidebar1 ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
#sidebar1 li a {
	text-decoration: none;
	font-size: 110%;
	font-weight: bold;
	padding: 0px 10px;
}
#sidebar1 li a:hover, #sidebar1 li a:active, #sidebar1 li a:focus {
	color: #033;
	font-size: 110%;
	font-weight: bold;
	background-color:#FFF
}
#sidebar2 {
	width: 250px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px 10px 15px; /* padding keeps the content of the div away from the edges */
	color: #CFF;
	float: right;
	background: #000;
}
#sidebar2 h2 {
	font-size: 150%;
	margin-top: 10px;
}
#sidebar2 ul {
	padding: 0px 0px 0px 10px;
}
#mainContent {
	margin: 0 270px; /* 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: 0px 10px 15px;
}
#mainContent h1 {
	font-size: 120%;
	margin: 0px;
}
#mainContent ul {
	padding: 0px 0px 0px 15px;
}
.podlft {
	float: left;
	width: 300px;
	border: 1px solid #CCF;
	padding: 10px 5px;
	margin-bottom: 10px;
}
.podrt {
	float: right;
	width: 300px;
	border: 1px solid #CCF;
	padding: 10px 5px;
	margin-bottom: 10px;
}
#footer {
	padding: 15px 10px;
	background: #FFF;
	text-align: center;
}
#footer ul {
	padding: 0px 20px;
}
#footer table  p {
	padding: 10px;
}
.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;
}
.noTop {
	margin-top: 0;
}
