﻿/* CSS layout */
/*Must be 1000px because it fits inside the 1000px body tag*/
#main_body {
	width: 1000px;
	background-color: white;
	height: 600px;
}

#left_col {
	width: 400px;
	height: 600px;	
	float: left;
}
#left_col img{
	
	margin-top: 20px;
	margin-left: -50px;
}

#right_col {
	width: 1px;
	height: 600px;	
	float: right;
}

#page_content {
	height: 600px;
	width: 549px;
	float: left;
	text-align: left;
}
/*Trying to remove the a href border*/
#page_content img{
	border: 0px black none;
}
#page_content li{
	margin-left: -10px;
	list-style: none;
}
#page_content a{
	color: black;
}
