body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #8e919b;
	margin-top: 10; 
	padding: 0;
	text-align: center;
	color: #000000;
}

#redline {
 height:4px; 
 background-color:red; 
 width:100%;
} 

#blueline {
 height:4px; 
 background-color:#1b1464; 
 width:100%;
} 

#container {
	width: 800px;
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #1b1464;
	text-align: left; /* this overrides the text-align: center on the body element. */
}

#header { 
	background: #1b1464; 
	text-align:center;
	padding: 0 10px 0 12px;  
	height:170px;
} 

#toplogo { 
	position:absolute;
	margin-top:10px;
	margin-left:0;
	width:150px;
	height:149px;
	
	background-image:url(images/logo_top.jpg);
	background-repeat:no-repeat;
	z-index:1;
	
	
} 

#topslogan { 
	position:absolute;
	margin-top:40px;
	margin-left:320px;
	width:300px;
	height:55px;
	
	background-image:url(images/slogan.gif);
	background-repeat:no-repeat;
	z-index:1;
} 

#menucontainer{
	position: absolute;
	margin-top:145px;
	margin-left:200px;
	width:550px;
	height: 23px;
	background-color:#1b1464;
	z-index:2;
}

a.bluemenu:link { font-family:Verdana, Arial, Helvetica, sans-serif; font-size:16px; font-style:normal; text-decoration:none; color:white}
a.bluemenu:visited { font-family:Verdana, Arial, Helvetica, sans-serif; font-size:16px; font-style:normal; text-decoration:none; color:white}
a.bluemenu:hover { font-family:Verdana, Arial, Helvetica, sans-serif; font-size:16px; font-style:normal; text-decoration:none; color:red}
a.bluemenu:active { font-family:Verdana, Arial, Helvetica, sans-serif; font-size:16px; font-style:normal; text-decoration:none; color:white}

h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	font-size:24px;
	color:#FF0000;
}
#mainContent {
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFFFFF;
	min-height:100px;
}
#footer { 
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#DDDDDD;
} 
#footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	text-align:center;
}