@charset "UTF-8";
body  {
	font: 90% Verdana, Arial, Helvetica, sans-serif;

	background: #000000;
	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: #FFFFFF;
}
#wrapper {
	margin: 100px auto 0px;
	text-align: center;
	width: 800px;
	border: 1px solid #FF0000;
}
	a:link {color: #FFFFFF;}
	a:visited {color: #666666;}         
	a:hover {color: #FF0000;}
	a:active {color: #0000FF;}

#topLinks {
	background: #000000;
	margin-bottom: 5px;
	margin-left: 165 px;
	text-align:center;	  /* 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. */
	padding: 5px;
} 

#leftLinks {
	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: #000000; /* padding keeps the content of the div away from the edges */
}
#rightLinks {
	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: #000000; /* the background color will be displayed for the length of the content in the column, but no further */
}
#mainContent {
	margin: 0 165px 0 155px; /* remember that padding is the space inside the div box and margin is the space outside the div box *
	padding: 0 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	border: solid 1px #ff0000;
	padding: 0px 5px;
	width: 475px;
}
.mainContent p {
	color: #000000;
	background: #FFFFFF;
} 
#bottomLinks { 
	padding: 5px 10px 5px 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#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;}
