body {
	background-color: white;
	color: #000000;
	font-size: 12px;
	font-family: Arial, sans-serif;
}

div#main {
	margin-top: 100px;
	margin-right: auto;
	margin-left: auto;
	width: 800px;
}

	div#header {
		width: 800px;
		height: 100px;
	}
	
	div#middle {
		width: 800px;
		height: 480px;
	}
	
		div#navigation {
			width: 175px;
			height:100%;
			
			border-right:5px solid #ff9900;
			
			float:left;
		}
			div#navigation ul {
				margin:0;
				padding:0;
				
				list-style:none;
			}
				div#navigation ul li a {
					padding-top:5px;
					padding-bottom:5px;
					
					font-size:15px;
					font-weight:bold;
					text-align:center;
					text-decoration:none;
					color:#ff9900;
					
					border-right:1px solid #ffffff;
					border-bottom:1px solid #ffffff;

					display:block;
				}
				div#navigation ul li a:hover, div#navigation ul li.active a {
					background-color:#ff9900;
					color:#ffffff;
				}
		
		div#content {
			padding-left:10px;
			width: 610px;
			
			float:right;
		}
		
		div#clear {
			clear:both;
		}
	
	div#footer {
		width: 800px;

		color:#888888;
		
		text-align:right;
		font-size:11px;
	}
