/*Add customized column2 and column3 to this CSS document for varied layout options*/
/*2 column layouts add up to 680px to accommodate for built-in padding and margins*/

/*Common layouts include: 
SET 1: One Column layout
 #contain_column2 {
	width:700px;
	}
#contain_column3 {
	display:none;
	}
	
SET 2: 2 Column layout, equal columns
#contain_column2 {
	width:340px;
	}
#contain_column3 {
	width:340px;
	}

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

/*Set 4: 1 Column layout, one large column*/

#contain_column1
{
	margin-top: 0px;

}
#contain_column2 
{
	width:420px;
}
	
#contain_column3 
{
	margin-top: 40px;
	width:260px;
	text-align:left;
}

/* Set 5: Pagelefts left and right */	
.pagelet-left, .columnleft340px 
{
	float: left;
	width:340px;
	margin-bottom:.75em;
	padding:0 10px 0 0;
}
.pagelet-right, .columnright340px
{
	float: left;
	width:340px;
	margin-bottom:.75em;
	padding:0 0 0 10px;
}

.img-left 
{
	margin:.5em 1em .5em 0;
	float:left;
}

.img-right 
{
	margin:.5em 0 .5em 1em;
	float:right;
}


	

