@charset "utf-8";

#container {
	width: 600px;
	margin: 0 auto;
	position: relative;
	background: url(images/threecolbg.gif) repeat-y;
	overflow: hidden; /*Forces the container to recognize its bottom and display color throughout*/
}

#header {
	background: #69C;
	height: 100px;
}

#menu {
	width: 150px;
	background: #678;
	float: left;
	display: inline; /*Needed for old version of IE to fix double margin float bug*/
}

p {margin: 0 0 10px 0;}


#content {
	width: 450px;
	/*background: #eee;*/
	float: right;
	display: inline;  /*Needed for old version of IE to fix double margin float bug*/
}

#footer {
	background: #333;
	color: white;
	height: 50px;
	clear: both;
}

#secondary {
	background: #9CF;
	width: 130px;
	padding: 0 10px;
	float: right;
	display: inline;
	
}

#primary {
	background: #FFF;
	width: 260px;
	padding: 0 20px;
	float: left;
	display: inline;
}



