﻿/***3 Column Page***/
/*http://matthewjamestaylor.com/blog/perfect-3-column.htm*/

div.threeColPage
{
	/*background: #eee;  right column background colour */
}
div.threeColPage div.colMid
{
	right: 25%; /* width of the right column */
	/*background: #fff;  center column background colour */
}
div.threeColPage div.colLeft
{
	right: 50%; /* width of the middle column */
	/*background: #f4f4f4;  left column background colour */
}
div.threeColPage div.col1
{
	width: 46%; /* width of center column content (column width minus padding on either side) */
	left: 102%; /* 100% plus left padding of center column */
}
div.threeColPage div.col2
{
	width: 21%; /* Width of left column content (column width minus padding on either side) */
	left: 31%; /* width of (right column) plus (center column left and right padding) plus (left column left padding) */
}
div.threeColPage div.col3
{
	width: 21%; /* Width of right column content (column width minus padding on either side) */
	left: 85%; /* 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) */
}
