/* Columnar layouts */
.grid-row {
	width: 100%;
	float: left;
	clear: both;
}



/* 600 / 400 */
.col-2-left-600 {
	width: 600px;
	float: left
}

.col-2-right-400 {
	width:400px;
	float:right
}

/* 600 / 360 */
.col-2-right-360 {
	float:right;
	width:360px
}

/* 300 / 700 */
.col-2-left-300 {
	float: left;
	width: 280px;
	margin-right:20px
}

.col-2-right-700 {
	float:right;
	width:700px
}

/* 500 / 500 */
.col-2-left-500,
.col-2-right-500 {
	width: 500px;
	float: left
}

/* 480 / 480 */
.col-2-left-480,
.col-2-right-480 {
	width:480px;
	float:left
}

/* 300 / 700 */
.col-2-left-700 {
	float:left;
	width:700px
}
.col-2-right-300 {
	float: right;
	width: 280px;
	margin-left:20px
}

/* Golden Ratio: 620 / 380 */
.col-2-left-620 {
	float:left;
	width:600px;
	
}
.col-2-right-380 {
	float: right;
	width: 380px;
}






/* Golden Ratio: 620 / 380 */
.col-2-left-380 {
	float:left;
	width:380px;
	
}
.col-2-right-620 {
	float: right;
	width: 600px;
}






/* Percentage Layouts: 30% / 70% */
.col-2-left-30p {
	width: 30%;
	float:left
}
.col-2-right-70p {
	width:68%;
	float:right
}
/* Percentage Layouts: 70% / 30% */
.col-2-left-70p {
	width: 68%;
	float:left
}
.col-2-right-30p {
	width:30%;
	float:right
}