/* 
	this file sets the general layout of the page
*/
	
/* basic structure ====================== */
html, body {
	margin: 0px;
	padding: 0px;
	border: 0px;
	background-color: #CCC;
}

/* ===== main ===== */

#main-framing { 
	position: relative;
	width: 100%;
	text-align: center;
	background-color:#ccc;
	padding-top: 20px;
	padding-bottom: 20px;
} 

#main { 
	position: relative;
	margin: 0px auto;
	width: 770px;
	text-align: left;
	background: white;
	padding: 20px;
}

/* ===== head ===== */

#head {
	position: relative;
	margin: 0px auto;
}

#head-1 {
	float:right;
}

/* ===== foot ===== */


#foot {
	margin: 0px auto;
	text-align: left;
	padding-bottom: 20px;
}


