﻿/******** 3 column layout to handle float drop ********/ 
/*view-source:http://matthewjamestaylor.com/blog/perfect-3-column.htm */
/* column container */
.colmask {
	position:relative;	/* This fixes the IE7 overflow hidden bug */
	clear:both;
	float:left;
	width:1000px;			/* width of whole page */
	overflow:hidden;		/* This chops off any overhanging divs */
}
/* common column settings */
.colright,
.colmid,
.colleft {
	float:left;
	width:1000px;			/* width of page */
	position:relative;
}
.col1,
.col2,
.col3 {
	float:left;
	position:relative;
	padding:0 0 1em 0;	/* no left and right padding on columns, we just make them narrower instead 
						only padding top and bottom is included here, make it whatever value you need */
	overflow:hidden;
	padding: 5px;
	height: auto;
}
/* 3 Column settings */
.threecol {
	background:#eee;		/* right column background colour */
}
.threecol .colmid {
	right:200px;			/* width of the right column */
	background:#fff;		/* center column background colour */
}
.threecol .colleft {
	right:600px;			/* width of the middle column */
	background:#aaa;	/* left column background colour */
}
.threecol .col1 {
	width:500px;			/* width of center column content (column width minus padding on either side) */
	left:800px;			/* 100% plus left padding of center column */
}
.threecol .col2 {
	width:200px;			/* Width of left column content (column width minus padding on either side) */
	left:800px;			/* width of (right column) plus (center column left and right padding) plus (left column left padding) */
}
.threecol .col3 {
	width:200px;			/* Width of right column content (column width minus padding on either side) */
	left:850px;			/* Please make note of the brackets here:
					(100% - left column width) plus (center column left and right padding) plus (left column left and right padding) plus (right column left padding) */
}
.col2 ul 
{
    list-style: none;
    margin: 0px;
    padding: 0px;
    margin-left: 15px;
}
.col2 ul li a
{
    text-decoration: none;
}

/* 2 Column (left menu) settings */
.leftmenu {
	background:#fff;		/* right column background colour */
}
.leftmenu .colleft {
	right:800px;			/* right column width */
	background:#aaa;	/* left column background colour */
	height: auto;
}
.leftmenu .col1 {
	width:710px;			/* right column content width */
	left:800px;			/* 100% plus left column left padding */
	height: auto;
}
.leftmenu .col2 {
	width:210px;			/* left column content width (column width minus left and right padding) */
	left:800px;			/* (right column left and right padding) plus (left column left padding) */
	height: auto;
}

/* 1 column full page settings */
	.fullpage {
	    background:#fff;
	}
	.fullpage .col2 {
        width: 985px;
        background:#fff;
	}
