/* this CSS file contains the base structural layout of the newsroom in 3 or 2 columns 
Any element that would be contained inside of one of these areas is defined in newsroom.css
*/

#wrap_site {
	width: 100%;
	margin: 0;
	
	}

#wrap_header {
	width: 100%;
	float: left;
	background-color: #ccc;
	}
	
#header {
	width: 100%;
	float: left;
	
	}
	
#subheader {
	width: 60%;
	height: 25px;
	float: left;
	}
	
/* this class is used by the jquery function equalHeight() found in the header.  It ensures that all colums assigned with this class will equal the height of the tallest column */
.columnTallest {}
	
#wrap_leftrail {
	width: 20%; 
	float: left;
	
	}
#leftrail {
	width: 168px;
	/* float: left; */
	margin: 6px auto;
	padding: 6px;
	overflow: hidden;
	background-color: #dbe4f0;
	
	/* float: left; */
	
	}

#wrap_centerwell {
	width: 60%; /* should be */
	min-width: 608px;
	float: left;
	
	}
#wrap_centerwell_twocol {
	width: 80%;
	min-width: 794px;
	float: left;
	}
	
#centerwell {
	width: 100%;
	float: left;
	}
#centerwell_twocol {
	width: 100%;
	float: left;
	}

#wrap_rightrail {
	width: 19%;
	float: right;
	
	}
#rightrail {
	width: 168px;
	/* float: left; */
	margin: 6px auto;
	padding: 6px;
	overflow: hidden;
	background-color: #dbe4f0;
	
	}

#wrap_footer {
	width: 100%;
	float: left;
	
	}
#footer {
	width: 100%;
	float: left;
	background-color: #ccc;
	}