	body {
		font-family:arial,helvetica,sans-serif;
		font-size:12px;
		background-color:#993300;
	}


/*These first couple of lines in the style sheet specify the font family and size for the document. */

	#wrapper {
		width:900px;
		margin:0px auto;
		border:1px solid #bbb;
		padding:10px;
		background-color:#ffc
	}


/*Here, the page width has been specified as 900 pixels. 
This wrapper division also has padding of 10 pixels and a border of 1 pixel. 
The total of these values results in the actual width of the page being 922 pixels.*/

	#header {
		border:1px solid #bbb;
		height:110px;
		padding:10px;
	}
	#header_a {
		border:1px solid #bbb;
		height:82px;
		padding:10px;
	}
	#content {
		margin-top:10px;
		padding-bottom:10px;
	}
	#content div {
		padding:10px;
		border:1px solid #bbb;
		float:left;
	}
	#content-left {
		width:100px;
		background-color:#ffffff;
	}
	#content-main  {
		margin-left:10px;
		width:600px;
	}
	#content-right {
		margin-left:10px;
		width:114px;
		background-color: #000;
		color:#fff
	}
	#footer {
		float:left;
		margin-top:10px;
		margin-bottom:10px;
		padding:10px;
		border:1px solid #bbb;
		width:878px;
	}
	#bottom {
		clear:both;
		text-align:right;
	}

