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

body {
	margin: 0px;
	padding: 0px;
	text-align: center } /* to allow centering in IE */
	
#container {
	position: relative; /*makes "container" the containing block */
	margin: 0 auto;  /* the proper CSS way to center */
	text-align: left; /* overrides text-align rule on body */
	width: 800px;	
	}
	
	#masthead {
	height: 100px;
	background: #CCC;}
	
	#main {
	position:absolute; 
	top:100px; 
	left:150px; 
	width:500px; 
	border-left:solid 1px black; 
	border-right:solid 1px black; 
	margin:0 10px; 
	padding: 0 10px; 
	
	/*This is the box-model hack for IE 5*/ 
	voice-family: "\"}\""; 
	voice-family:inherit; 
	width:458px; 
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 12px;
	} 
	
	/*provids the correct width value */ /* This is the "Be nice to Opera" hack */ 
	body>#main {width:458px; 
	}
	
	#links {
	position:absolute; 
	top: 100px;
	left: 0px;
	width: 150px;
	background: #EEE; 
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 12px;
	}
	
	#blogbar {
	position: absolute;
	top: 100px;
	left: 650px;
	width: 150px;
	background: #EEE;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 10px;
	}