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

#left_col {
	width: 300px;
	height: 500px;	
	float: left;
}
#left_col img{
	
	margin-top: 20px;
}

#right_col {
	width: 100px;
	height: 500px;	
	float: right;
}

#page_content {
	height: 500px;
	width: 600px;
	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;
}
