@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; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #333333;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 100%;
	background: #006600 url(../images/Onion-Background.jpg) center top no-repeat;
	
}
p {
	font-size: .7em;
	line-height: 1.3em;
}
h1 {
	font-size: .9em;
}
h2 {
	font-size: .7em;
}
h3 {
	font-size: 1.3em;
}
h4 {
	font-size: 1.2px;
}
h5 {
	font-size: 1.0em;
}
h6 {
	font-size: .9em;
}
hr {
	color: #EEEEEE;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: dotted;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	border-top-color: #333333;
	border-right-color: #333333;
	border-bottom-color: #333333;
	border-left-color: #333333;
	margin: 0 0 5px 0;
	padding: 0px;
}
a {
	color: #333333;
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}
p, h1, h2, h3, h4, h5, h6{
	padding:0;
	margin:0 0 5px 0;
	}
.red {
	color: #CC0000;
}
.green {
	color: #006600;
}
.blue {
	color: #000066;
}
#container {
	width: 835px;  /* 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;
} 
#header {
	background-image: url(../images/top.gif);
	background-repeat: no-repeat;
} 
#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 140px; /* 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 */
	background: #EBEBEB; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px; /* padding keeps the content of the div away from the edges */
	margin: 0 0 0 20px;
}
#content {
	padding: 10px;
}
#sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 140px; /* 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 */
	background: #EBEBEB; /* padding keeps the content of the div away from the edges */
	margin: 0 20px 0 0;
}
#mainContent {
	margin: 0 200px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}
#mainContent img {
	margin: 0 10px 10px 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
#middleContent tr {
	vertical-align: top;
}
#lists a {
	color: #000066;
}
.yellow {
	background-image: url(../images/yellowBg.gif);
	background-repeat: repeat-x;
}
#footer {
	background-color: transparent;
	background-image: url(../images/bottom.gif);
	background-repeat: no-repeat;
} 
.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;
}

