﻿/*
	Two_Column_layout.css

	This contains the layout for a two column page
	No styling information is contained within

*/

#leftcontent
{
    width: 200px;    
    float: left;
    display: inline; /* IEwin doubled margin bug fix */	
    margin-left:-3px; /*-3px; IE Win 3px gap fix*/ 
}
html>body #leftcontent {
    margin-left:0;
}

#centrecontent
{
    height:1%;
    margin:0;
    padding:0;
    height:1%;
    margin-left:200px;
}
html>body #centrecontent {
    height:auto;    
}

/*	Sets up the area below the navpath where the main page content 
	is placed. 
*/
#maincontentarea
{
	padding: 1.5em 2em;
}

html>body #maincontentarea {
    height:auto;    
}

#footer
{
	position :relative;
	bottom:0;
	left:0;
	right:0;
	height:26px;	
	clear:both;	
	margin:0 0 0 0;
}