/* CSS Document */
body  {
	background: #8285a4;
	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: 760px;
	background: #ffffc0;
	margin: 15px auto 15px auto;
	border: 2px solid red;
	text-align: left; /* this overrides the text-align: center on the body element. */
}

#navbar {
	padding-top:5px;
	padding-bottom:10px;
	width:760px;
	color:#000000;
	float:center;
	text-align:center;	
}
		
#navbar li {
	margin: 0; 
	padding: 4px 10px 6px 10px;
	list-style-type: none;
	color:#000000;	
}

#navbar a {
	font-family: Arial, Helvetica, sans-serif;
	color:red;
	font-size: 14px;
	font-weight:bold;
}

#navbar a, a:active, a:visited	{ color: #000000; text-decoration: none; }
#navbar a:hover					{ color: red; text-decoration: none; }

/*====Navigation====*/ 
#sidebar1 {
	float: left;
	width: 200px;
	padding-left:5px;
	padding-bottom:10px;
	padding-top:10px;
}

.advert p{
	float:left;
	width:200px;
	font-family:Arial, Helvetica, sans-serif;
	font-size:13px;
	color:red;
}

/*====Main Content====*/
#mainContent {
	float:right;
	width:500px; 
	padding-top:10px;
	padding-left:20px;
	padding-right:20px;
}

#container p a {color:#0000FF;}
#container p a:hover {color:#FF0000;}

p {
	font-family:Arial, Helvetica, sans-serif;
	font-size:14px;
	color:#000;
}

h1 {
	font-family:Arial, Helvetica, sans-serif;
	font-size:20px;
	color:black;
}

h2{
	font-family:Arial, Helvetica, sans-serif;
	font-size:18px;
	color:black;
}
h4{
	font-family:Arial, Helvetica, sans-serif;
	font-size:14px;
	color:red;
}

/*====Footer & Copyright====*/
#copyright {
	width:760px;
	height:20px;
	padding-top:8px;
	background-color:#FF0000;
	float:right;
	font-family:Arial, Helvetica, sans-serif;
	font-size:10px;
	color:#999999;
	text-align:center;
}

#copyright a, a:active, a:visited	{ color: black; text-decoration: underline; }
#copyright a:hover					{ color: yellow; text-decoration: none; }
 
/*====Majic Bit====*/
.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;
}


