@charset "utf-8";
/* CSS Document */

body {
	font: 100% Georgia, "Times New Roman", Times, serif;
	background: black;
	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; 
	background:white;
	margin: 0 auto; 
	text-align: left; 
} 
#header { 
	padding: 0px; 
} 

#sidebar {
	float: right; 
	width: 200px;
	border-left:navy 3px solid; 
}

#mainContent { 
	margin: 0 250px 0 0; 
	padding: 0 20px; 
	background:white;
} 
#footer { 
	padding: 0px; 
	margin:0px; 
	font-size: x-small
} 

a img {
	border:none;
}


a:hover {
	text-decoration:underline overline;
}

a:link {
	color:blue;
}

a:visited {
	color:navy;
}

h1, h2, h3, h4, h5, h6, h7 {
	color:navy;
	font-family:Verdana, Arial, Helvetica, sans-serif;
}
