@charset "utf-8";

/*  Holy Grail 3-Column Liquid-Layout:													*/
/*  No Quirks Mode, No IE Conditional Comments. 										*/
/*  No CSS hacks. SEO friendly 2-1-3 column order. Cross-browser. Equal height columns. */
/*  http://matthewjamestaylor.com/blog/holy-grail-no-quirks-mode.htm 					*/

body
{
	margin:0;
	padding:0;
	width:100%;
	min-width:600px;		/* Minimum width of layout - remove line if not required */
}							/* The min-width property does not work in old versions of Internet Explorer */

#colmask
{
	clear:both;
	position:relative;		/* This fixes the IE7 overflow hidden bug and stops the layout jumping out of place */
	overflow:hidden;		/* This chops off any overhanging divs */
	width:100%;
}

#colmid
{
	float:left;
	position:relative;
	width:200%;
	left:150px;				/* Width, Border and Padding of Column 2 */
}

#colright
{
	float:left;
	position:relative;
	width:100%;
	left:50%;
	margin-left:-350px;		/* Width, Border and Padding of Column 2 + 3 */
}

#col1-wrapper
{
	float:right;
	position:relative;
	width:50%;
	right:100%;
}

#col1-padding
{
	margin-left:350px;		/* Width, Border and Padding of Column 2 + 3 */
}

#col1
{
	width:100%;
}

#col2
{
	float:left;
	position:relative;
	margin-left:-50%;
	overflow:hidden;
	width:150px;
	left:200px;				/* Width, Border and Padding of Column 3 */
}

#col3
{
	float:left;
	position:relative;
	overflow:hidden;
	width:200px;
	left:0px;
}
