

/*
 *	LAYOUT CSS is all about widths, heights, columns etc.
 *
 *	don't set fonts and colors here.
 * 
 *	For layout, ID use is fine. These are absolutes, like widths, heights, margins.
 *	
 */


#masterCon,
#banner {
	font-size: 100%;
	width: 100%;
	max-width: 1250px;
	margin-left: auto;
	margin-right: auto;
	clear: both;
}


nav,
footer
{
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	padding: 0;
}




/* --- BOX SIZING --- establish this for major layout items */
#masterCon,
#banner,
#columns,
#column1,
#mainCol,
#wideCol,
#wideColFirst,
#columns .two_col,
#aside,
nav,
section,
aside,
footer,
.footer_col
{
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}





/* COLUMNS layout */


#columns {
	width: 100%;
}

#column1,
#mainCol,
#wideCol,
#wideColFirst,
#fullCol,
#columns .two_col,
#aside
{
	float: left; 
	vertical-align: top;
	
}


#column1 {
	width: 20.5%;
	min-width: 170px;
	margin-top: 63px;
}


#mainCol {	width: 55%;}

#wideCol {width: 79%;}

#wideColFirst {width: 73.5%; margin: 0;}

/* columns for two even columns after contextual menu */
#columns .two_col {
	width: 39.5%;
}

#aside {
	width: 23%;
	min-width: 200px;
	margin-top: 74px;
	float: right;
	margin-right: 1.5%;
}



/* OTHER LAYOUT */

#banner {
	overflow: hidden;
	height: 170px;
}


nav .top_nav {margin: 0;}







