@charset "utf-8";
body  {
	font: 80% Tahoma, Geneva, sans-serif;
	background: #7f98c3;
	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: #1B1A52;
}
a {
	color: #0FF; 
}
a img {
	border: none;
}
ul {
	margin: 0;
	padding: 0;
	list-style: none;
	line-height: 30px;
}
#container {
	width: 910px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: url(images/background.gif) repeat-y 5px;
	margin: 0 auto;
	text-align: left;
	line-height: 20px;
} 
#header {
	padding-right: 5px;
	padding-left: 5px;
	margin-top: 10px;
	margin-right: auto;
	margin-left: auto;
}
#header ul {
	background: url(images/topdivider.gif) no-repeat left top;
	overflow: auto;
	height: 50px;
	padding-left: 126px;
}
#header li {
	font-size: 15px;
	float: left;
}
#header li a {
	text-decoration: none;
	display: block;
	padding-right: 30px;
	padding-left: 30px;
}
#header li a:hover, #header li a:active, #header li a:focus {
	color: #FFF;
	font-size: 16px;
}
.home #home a, .about #about a, .products #products a, .contact #contact a, .promo #promo a {
	color: #FFF;
	font-size: 16px;
	font-weight: bold;
}
#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 200px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px 25px 15px;
	color: #CCC;
}
#mainContent {
	margin: 0 0 0 260px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0px 20px 15px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
#mainContent h1 {
	font: 160% "Comic Sans MS", cursive;
}
#mainContent h2 {
	font: 140% "Comic Sans MS", cursive;
}
#mainContent h3 {
	font: 120% "Comic Sans MS", cursive;
}
#mainContent table {
	font: 100% Tahoma, Geneva, sans-serif;
}
#footer {
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#006fb4;
	width: 880px;
	margin: 0px auto;
}
#footer table {
	font: 75% Tahoma, Geneva, sans-serif;
}#footer a {
	text-decoration: none;
}
#footer a:hover, #footer a:active, #footer a:focus {
	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;
}
.noTop {
	margin-top: 0px;
}
