/*Add customized contain_column2 and contain_column3 to this CSS document for varied layout options*/
/*For three column layouts, contain_column2 and contain_column3 add up to 680px to accommodate for built-in padding and margins*/

/*Common layouts include: 

SET 1: Two Column layout
 #contain_column2 {
	width:700px;
	}
#contain_column3 {
	display:none;
	}
	
SET 2: Three Column layout, equal columns
#contain_column2 {
	width:340px;
	}
#contain_column3 {
	width:340px;
	}

SET 3: Three Column layout, middle column larger
#contain_column2 {
	width:420px;
	}
#contain_column3 {
	width:260px;
	}

*/
#contain_column2 {
	width:700px;
	}
#contain_column3 {
	display:none;
	}
.pagelet-left {
	width:420px;
	}
.pagelet-right {
	width:260px;
	}


.img-right{
	float: right;
}		
