/* CSS Document */



/* Screen size specific stuff */

/* DESKTOP */
/* Desktop */
@media all and (min-width: 1184px) {
	#LeftCol {
		float: left;
		width: 736px;	
	}
	#RightCol {
		float: right;
		width: 352px;	
	}
}


/* DEVICES */
/* ALL mobile and tablet devices */
@media all and (max-width: 1183px) {
	#LeftCol {
		padding: 0 0 0.8em 0;		
	}
	#RightCol {
		border-top: 2px solid #b5b7b9;
		padding: 2em 0 0.8em 0;		
	}
}

/* TABLET */
/* Tablet */
@media all and (min-width: 800px) and (max-width: 1183px) {
	
}

/* PHONE */
/* ALL phone sizes */
@media all and (max-width: 799px) {
	
}
/* Phone horizontal */
@media all and (min-width: 480px) and (max-width: 799px) {
	
}
/* Phone vertical */
@media all and (max-width: 479px) {
	
}