﻿/* CSS layout */
body {
	margin: 0;
	padding: 0;
}

#container {
	min-width: 600px;
}

#left_col {
	width: 250px;
	float: left;
	position: fixed;
	z-index: inherit;
	height: 1200px;
	top: 0px;
	overflow: hidden;
	clip: rect(0px, auto, auto, 0px);
	visibility: visible;
	border-right-style: solid;
	border-right-width: medium;
	border-right-color: #9999FF;
	left: 0px;
}
#page_content {
	margin-left: 250px;
	overflow: auto;
}

