/* column container */
.colmask {
	position:relative;	/* This fixes the IE7 overflow hidden bug */
	clear:both;
	float:left;
	width:100%;			/* width of whole page */
	overflow:hidden;		/* This chops off any overhanging divs */
}
/* common column settings */
.colright,
.colmid,
.colleft {
	float:left;
	width:100%;
	position:relative;
}
.col1,
.col2,
.col3 {
	float:left;
	position:relative;
  padding:0 0 1em 0;
	overflow:hidden;
}
/* 2 Column (right menu) settings */
.rightmenu {
  background: #f5f5f5;    /* right column background colour */
}
.rightmenu .colleft {
  /* r: 25% */
	right:30%;			/* right column width */
	background: #fff;		/* left column background colour */
}
.rightmenu .col1 {
  /* w: 71%, l: 27% */
	width:64%;			/* left column content width (left column width minus left and right padding) */
  left:33%;     /* (right column width) plus (left column left padding) */
}
.rightmenu .col2 {
/*  border: 1px solid #000;*/
  
  /* w: 21%, l: 31% */
	width:28%;			/* right column content width (right column width minus left and right padding) */
  left:37%;     /* (right column width) plus (left column left and right padding) plus (right column left padding) */
}
