/*** Column Container ****/
.colmask {
	position:relative;	/* This fixes the IE7 overflow hidden bug */
	clear:both;
	float:left;
	width:99%;		/* width of whole page */
	margin-left:.5%;
	padding:10px 0;		
	overflow:hidden;	/* This chops off any overhanging divs */
	background:#fff;	/*Right Column Background color*/
        border: 3px solid #544535;
}
/*** Setup Columns ***/
.colright,
.colmid,
.colleft {
	float:left;
	width:100%;			/* 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*/
	overflow:hidden;
}
/* 3 Column settings */
.colmid {
	right:18%;			/* width of the right column */
	/*background:#fff;*/		/* center column background colour */
}
.colleft {
	right:64%;			/* width of the middle column */
	/*background:#ddd;*/		/* left column background colour */
}
.col1 {
	width:62%;			/* width of center column content (column width minus padding on either side) */
	left:101%;			/* 100% plus left padding of center column */
}
.col2 {
	width:18%;			/* Width of left column content (column width minus padding on either side) */
	left:20%;			/* width of (right column) plus (center column left and right padding) plus (left column left padding) */
	overflow:visible;		/*Set to Visible to allow flyout menu*/
}
.col3 {
	width:18%;			/* Width of right column content (column width minus padding on either side) */
	left:84%;			/* 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) */
}

/* 2 Column (left menu) settings */
.leftmenu {
	/*background:#fff;*/		/* right column background colour */
}
.leftmenu .colleft {
	right:80%;			/* right column width */
	/*background:#ccc;*/		/* left column background colour */
}
.leftmenu .col1 {
	width:77.7%;			/* right column content width */
	left:101%;			/* 100% plus left column left padding */
}
.leftmenu .col2 {
	width:18%;			/* left column content width (column width minus left and right padding) */
	left:3.5%;			/* (right column left and right padding) plus (left column left padding) */
}

/* 2 Column (right menu) settings */
.rightmenu {
	/*background:#eee;*/		/* right column background colour */
}
.rightmenu .colleft {
	right:19%;			/* right column width */
	/*background:#ccc;*/		/* left column background colour */
}
.rightmenu .col1 {
	width:79%;			/* left column content width (left column width minus left and right padding) */
	left:20%;			/* (right column width) plus (left column left padding) */
}
.rightmenu .col2 {
	width:18.0%;			/* right column content width (right column width minus left and right padding) */
	left:21.3%;			/* (right column width) plus (left column left and right padding) plus (right column left padding) */
}

/**Full Width
****************************************/
.fullwidth .col1 {width: 98%;}
.fullwidth .colleft {/*right: 1%;*/right: 100%;}