@charset "UTF-8";
/*---------------basic styling-------------*/
* {
	margin: 0px;
	padding: 0px;
	border-bottom-color: #2E2E2E;
	background-color: #2E2E2E;
	border-right-color: #2E2E2E;
	border-left-color: #2E2E2E;
	border-color: #2E2E2E;
	border-top-color: #2E2E2E;
}

body, html	{
	background-color: #2E2E2E;
}
	
/*---------------sets the margin on html-----------*/
#body {
	text-align: center
	font-family: Arial, Helvetica, sans-serif;
	font-size: 85%;
	}
	
#wrapper {
	position: relative;
	margin: 0 auto;
	width: 1000px;
	height: 1040px;
	text-align: left;
	background-color: #2E2E2E;
	}
	
	#clear {
		clear:both;
		}
/*--------------position container elements---------*/

#header{
	position:relative;
	height: 100px;
	width:1000px;
}
#title	{
	height: 50;
	width:1000px;
	background-color: #2E2E2E;
}

#content {
	width: 850px;
	clip: rect(auto,auto,auto,auto);
	margin-left: 150px;
	}
#caption {
	height: 50px;
	width: 1000px;
}
#footer {
	height: 240;
	width: 1000;
	top: 80px;
	}

