@charset "UTF-8";
body {
	margin: 0;
	padding: 0;
	background-image: url(backgrounds/deep_red.jpg);
}

/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
}

.container {
	width: 960px;
	margin: 0 auto;
}

.header {
	background-image: url(backgrounds/header.png);
	height: 200px;
	width: 960px;
}

.sidebar1 {

	float: left;
	width: 200px;
	background-image: url(backgrounds/sideleft5.jpg);
	height: 1000px;
}
.content {
	padding: 0px 0;
	width: 540px;
	height: 760px;
	float: left;
}
.sidebar2 {
	float: right;
	width: 200px;
	background-image: url(backgrounds/sideright6p.png);
	height: 1000px;
	
}
