body {
	/*behavior:url(scripts/csshover.htc);*/
	background-color: #010101;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.7em;
	margin-right: 20px;
	margin-bottom: 20px;
	margin-left: 20px;
	background-image: url(../images_layout/background.jpg);
}
* {
	margin:0; padding:0; /* removes defaults of all elements */
}
#mainwrap {
	margin-left:auto;
	margin-right:auto; /* centers the layout in SCBs */
	text-align:left;
	width: 810px;
}
#header {
	background-position: left top;
	height: 450px;
}
#navigation {
	padding-top: 47px;
	padding-left: 210px;
}

#content {
	background-color: #FFFFFF;
	width: 755px;
	margin-left: 55px;
}
#contentleft {
	width: 460px;
	padding-top: 30px;
	padding-right: 20px;
	padding-left: 20px;
	margin-bottom: 20px;
	float: left;
	margin-right: 20px;
}
.contentleftitem {
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #E6E6E6;
	padding-top: 12px;
}
#contentright {
	position: relative;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #E6E6E6;
	padding-left: 20px;
	padding-right: 20px;
	padding-top: 30px;
	margin-bottom: 20px;
	margin-left: 500px;
}
.contentrightitem {
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #E6E6E6;
	padding-top: 12px;
}
#footer {
	background-image: url(../images_layout/footer.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	height: 80px;
	width: 810px;
}

/* 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;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}
