
html,body {
	margin:0;
	padding:0;
	height:100%; /* needed for container min-height */

	background-image: url(../img/bg.gif);
	background-color: #fff;
	
	font-family:arial,sans-serif;
	font-size:10px;
	color:#666;
}



div#container {

	background-image: url(../img/container_bg.gif);

	position:relative; /* needed for footer positioning*/
	margin:0 auto; /* center, not in IE5 */
	width:900px;
	
	height:auto !important; /* real browsers */
	height:100%; /* IE6: treaded as min-height*/

	min-height:100%; /* real browsers */
}


div#header {
	height:30px;
	background:#a7a37e;
}


div#logo {
	height:135px;
	margin:0;
	padding:0;
}

div#menu {
	height:35px;
	margin:0;
	padding:0;
}


div#content {
	margin:0;
	background:#fff;
	padding:10px 50px 60px 50px; /* bottom padding for footer */
}



div#footer {
	position:absolute;
	width:100%;
	height:60px;
	bottom:0; /* stick to bottom */
	background:#046380;
}

div#footer p {
	margin-left:50px;
	margin-top:23px;
	}








