body {
	background-color: #EBEBEB;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.7em;
	margin-right: 20px;
	margin-bottom: 20px;
	margin-left: 20px;
}
* {
	margin:0; padding:0; /* removes defaults of all elements */
}
div#mainwrap {
	min-width:780px;
	max-width:960px;
	width:expression(document.body.clientWidth>960?"960px":"auto");
	margin-left:auto;
	margin-right:auto; /* centers the layout in SCBs */
	text-align:left;
}
div#header {
	background-position: left top;
	height: 250px;
	background-image: url(../images_layout/header.jpg);
}
div#content {
	position:relative;
	background-color: #E8E8E8;
}
div#footer {
	text-align:center;
	background-image: url(../images_layout/footer.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	height: 45px;
}
div#nav {
	text-align: center;
	padding-top: 10px;
	padding-bottom: 30px;
	padding-left: 105px;
}
/* here follows the brillant "no-extra-markup" clearing method devised by Tony Aslett - www.csscreator.com */
/* simply add the clearfix class to any containter that must enclose floated elements */
/* read the details of how and why this works at http://www.positioniseverything.net/easyclearing.html */
.clearfix:after {
	content: ".";              /* the period is placed on the page as the last thing before the div closes */
	display: block;          /* inline elements don't respond to the clear property */ 
	height: 0;                  /* ensure the period is not visible */
	clear: both;               /* make the container clear the period */
	visibility: hidden;	     /* further ensures the period is not visible */
}
.clearfix {
	display: inline-block;   /* a fix for IE Mac */
}
/* next a fix for the dreaded Guillotine bug in IE6 */
/* Hides from IE-mac \*/
* html .clearfix {
	height: 1%;
}
.clearfix {
	display: block;
}
