﻿/*
	three_column_layout.css

	Created By: Patrick Grover
	Date: April 16, 2007
	Description: 
	This contains the general layout for a three 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;
}


#rightcontent
{
	width: 200px;    
    float: right;
    height:100%;
    display: inline; /* IEwin doubled margin bug fix */	
    margin-right:-3px; /*-3px; IE Win 3px gap fix*/ 
}
html>body #rightcontent {
    margin-right:0;
}


#centrecontent
{
    height:1%;
    margin:0;
    padding:0;
    height:1%;
}
html>body #centrecontent {
    height:auto;
    margin-left:200px;
    margin-right:200px;
}

/*	Sets up the area below the navpath where the main page content 
	is placed. 
*/
#maincontentarea
{
	padding: 1.5em 2em;
}

#footer
{
	position :relative;
	bottom:0;
	left:0;
	right:0;
	height:26px;	
	clear:both;	
	margin:0 0 0 0;
}