@charset "utf-8";
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: url(../img/bak.jpg) repeat-x;
	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 { 
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	margin-top:30px;
	border: 1px solid #808080;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
#header { 
	background: #FFFFFF; 
	padding: 0;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	height:144px;	
} 

#menu {
	float: left; width: 184px; background: #C0C0C0; padding: 0; height:145px; border-top: 1px solid #FF0000; border-bottom: 1px solid #FF0000;
}

#banner { 
	margin: 0 0 0 184px; padding: 0 ; width: 596px;	background-color:#FF0000; height:145px; border-top: 1px solid #FF0000; border-bottom: 1px solid #FF0000;
} 

#content { 
	padding: 0 ; 
	width:778px;
	padding:0px;
	background-color:#FFFFFF;
} 

#text { padding:30px 30px 10px 30px;
	text-align: left; 
}


p { font-size: .7em; font-weight: normal; color: #888888; font-family: Verdana, Arial, Helvetica  ; padding-bottom:5px; }

.red { color: #FF0000;}

a {color: #FF0000; text-decoration: none; font-weight: normal;}
a:hover {color:#FF0000; text-decoration: none; font-weight: normal;}
a:focus {text-decoration: underline; font-weight: normal;}

h1 {margin-bottom : 0.6em; font-size: 1em; color: #FF0000 ; font-weight: bold; font-family: Arial, Verdana, Helvetica  ; }
h2 {margin-bottom : 0.6em; font-size: .8em; font-weight: bold; color: #FF0000; font-family: Arial, Verdana, Helvetica  ; }
h3 {margin-bottom : 0.6em; font-size: .7em; font-weight: bold; color: #FF0000; font-family: Arial, Verdana, Helvetica  ; }


ol,ul {margin: 0 0 1em 2em;   }
ul li {font-size: .7em; font-weight: normal; color: #999999; font-family: Verdana, Arial, Helvetica  ; }
ol li {font-size: .7em; font-weight: normal; color: #999999; font-family: Verdana, Arial, Helvetica  ; }


#footer {  font-size: 0.9em; font-weight: normal; color: #DDDDDD;  font-family: Verdana, Arial, Helvetica ; background-color:#DDDDDD; height:30px;  border-top: 1px solid #808080; width: 100%; text-align: center; }
<!-- #footer p a { color: #FF0000; } -->


.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;
}