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

#left_col {
	width: 200px;
	height: 1000px;	
	float: left;
	margin-right: 50px;
	margin-left: 25px;

}
#left_col img{
	
	margin-top: 20px;
}
#left_col a{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px; 
	text-decoration: underline;		
}


#right_col {
	width: 175px;
	height: 1000px;	
	float: right;
}

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