/* 
	this file sets the general layout of the page
*/
	
/* basic structure ====================== */

body {
	width:100%;
	margin:0;
	padding:0;
}

#container-framing {
	position: relative;
	top: 0px;
	left: 0px;
	width: 100%;
	text-align: center;
}

#container {
	position: relative;
	margin: 0px auto;
	margin-top: 15px;
	width: 699px;
	text-align: left;
}

/* ===== primary elements ===== */

#stripe {
	position: absolute;
	top: 0px;
	left: 0px;
}

#main { 
	position: absolute;
	top: 0px;
	left: 7px;
}

#banner {
	position: absolute;
	top: 0px;
	left: 0px;
}

#nav { 
	position: absolute;
	top: 108px;
	left: 0px;
	background-color: black;
	width: 692px;
}


#navlinks {
	position: relative;
	margin: 0px auto;
	padding: 7px 0px;
	height: 18px;
	text-align: center;
}

#content {
	position: absolute;
	top: 140px;
	left: 0px;
	width: 692px;
	margin: 12px;
}

#sidebar {
	float: left;
}

#programs {
	margin-top: 12px;
	padding: 6px;
	width: 138px;
}

#main-content {
	position: absolute;
	top: 0px;
	left: 162px;
	width: 516px;
}

#footer {
}

/* ===== layout classes ===== */

div.clearFloats {
	clear: both;
	line-height: 0px; 
	height: 0px;
	visibility: hidden;
}

div.noCollapse { /* keep divs from collapsing into contained elements */
	padding: 1px 0px;
} 


