@charset "UTF-8";
body  {
	font: 100% Arial, Helvetica, sans-serif;
	background: #FFFFFF;
	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 */
	font-size: 13px;
	font-style:normal;
	color: #000000;
	background-color:#FFFFFF;
}

.style1 {font-family: Arial, Helvetica, sans-serif}
.style2 {color: #000000}
a:link {
	text-decoration: none;
	color: #FF33FF;
}
a:visited {
	text-decoration: none;
	color: #FF33FF;
}
a:hover {
	text-decoration: none;
	color: #FF33FF;
}
a:active {
	text-decoration: none;
	color: #FF33FF;
	
	
	
}


#container { 
	width: 800px;  /* 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 */
	
	text-align: left; /* this overrides the text-align: center on the body element. */
}

#sidebar {
	float: left; /* since this element is floated, a width must be given */
	width: 180px; /* 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: ##FFFFFF; /* the background color will be displayed for the length of the content in the column, but no further */
	/*padding: 0px 10px 0px 20px;*/

} 

#mainContent{
	float: left; /* since this element is floated, a width must be given */
	width: 620px; /* 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: ##FFFFFF; /* the background color will be displayed for the length of the content in the column, but no further */
	/*padding: 0px 10px 0px 20px;*/

} 

#footer{
	float: left; /* since this element is floated, a width must be given */
	width: 800px; /* 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: ##FFFFFF; /* the background color will be displayed for the length of the content in the column, but no further */
	/*padding: 0px 10px 0px 20px;*/

} 

}

