@charset "utf-8";
/* CSS Document */


body {
	text-align: center;
	margin: 0px;
	padding: 0px;
	min-width:775px;
	font-family:Arial, Verdana, sans-serif;
	font-size:24px;
	color:#F00;
	background-color: #36F; /*blue ish*/
	/* background-image:url(background1.jpg); */
	background-position:center;
	font-weight: normal;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}

a {
	text-decoration:none;
	color:#00F; /* blue */
}

a:hover {
	text-decoration:underline;
	color:#F00; /* red */
}

a:visited {
	color:#900; /* dark red */
}

#container {
	width:800px;
	height:auto;
	background-color:#FFF; /*white*/
	margin-left:auto;
	margin-right:auto;	
}

#header {
	width:800px;
	height:250px;
	/* background-color: #F00; /* red */
}

#main {
	width:800px;
	height:auto;
	background-color:#FFF; /* white */
}

#menu {
	float:left; /* this is to make the menu div and text div sit side by side*/
 	width:200px;
	height:auto;
	background-color: #FFF; /*white*/
}

#text {
	float:left; /* this is to make the menu div and text div sit side by side*/
	width:600px;
	height:auto;
	background-color:#FFF; /* white */
	color:#000; /*black*/
	text-align:left;
	font-family:Arial, Verdana, sans-serif;
	font-size:16px;
}

#content {
	margin-left:10px;
	width:550px;
	height:auto;
}

#clear { clear:both; }

#footer {
	float:top;
	width:800px;
	height:30px;
	background-color:#A2D7D6; /* light green */
	font-size:12px;
}



