﻿/* CSS layout */
  
body {
	margin: 0px;
	padding: 0px;
}

#masthead {
	position: relative;
}

#top_nav {
}

#container {
	position:relative; /* so left_col can be positioned absolutely within this */
	min-width: 600px;
}

#left_col {
	padding: 4px 4px 4px 0px;
	width: 200px;
	/* float: left; */
	position:absolute ;  /* to avoud problem with clears  */
	top: 0px; left: 0px;
	margin-top: -60px;
}

#page_content {
	margin-left: 190px;
}

 #footer {
	clear: both;
}

