@charset "UTF-8";
body  {
	font: 100% Helvetica, Arial, sans-serif;
	background: #e5e5e5;
	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;
}
#container { 
	margin-left: auto; 
	margin-bottom: 2em; 
	margin-right: auto; 
	margin-top: 2em; 
	padding: 2em; 
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF; /* the auto margins (in conjunction with a width) center the page */
	border: 4px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
#menu {
	text-align: center;
	font: 100% Helvetica, Arial, sans-serif;
	font-size: 14px;
	color: #191919;
}
#menu li {
	background-color: #f3fc2e;
	color: white;
	padding-right: 1em;
	padding-left: 1em;
	display: inline;
	list-style-type: none;	
}
#container a {
	text-decoration: none;
	color: #700e0e;
}
#container a:hover {
	color: #cd2222;
}
#content { /* 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. */                                                                                                                                                                                                                                                                                                                     
	margin: 0px;                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
	padding: 2em; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	line-height: 1.5em;
	font-size: 12px;
}
#footer {
	margin-left: auto;
	margin-bottom: 0.5em;
	margin-right: auto;
	margin-top: 0.5em;
	font: 100% Helvetica, Arial, sans-serif;
	font-size: 9px;
	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;
}
.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;
}