
/*LAYOUT*/
	body{
		margin: 0px;
		padding: 0px;
		background-color: #E8E8E8;
		font-family: Arial, Sans-Serif;
		font-size: 10pt;
	}
	#nav{
		position: absolute;
		top: 180px;
		left: 40px;
		margin: 0px;
		background-color: #E8E8E8;
		width: 150px;
	}
	#main{
		position: absolute;
		top: 0px;
		left: 150px;
		background-color: #fff;
		width: 75%;
		padding: 5px;
		border-right: 3px solid #ccc;
		border-left: 3px solid #ccc;
		border-bottom: 3px solid #ccc;
	}
	#banner{
		top: 0px;
		left: 0px;
		height: 170px;
		background-image: url(images/header.png);
	}

	/*STYLE*/
	a{
		color: #718A74;
	}
	a:hover{
		color: #ccc;
	}
	h3{
		color: #718A74;
		font-size: 18pt;
		margin: 0px;
		margin: 0px 0px -5px -20px;
		padding: 0px;
	}
	h2.section-head{
		margin: 0 0 0 -15px;
		font-size: 10pt;
		color: #718A74
	}
	ul.submenu{
		margin: 5px 0 0 25px;
		list-style-type: none;
		color: black;
	}
	#content{
		margin: 0 30px 0 50px;
	}
		/*NAV STYLING*/
		#menu{
			list-style: none;
			width: 110px;
			text-align: right;
			margin: 0px;
			padding: 0px;
		}
		#menu li{
			padding: 5px 0px 5px 0px;
		}
		#menu li a{
			padding: 0px 5px 0px 0px;
			display: block;
			width: 100%;
			text-decoration: none;
			font-weight: bolder;
			background-color: #ccc;
			border-top: 1px solid #e8e8e8;;
			border-bottom: 1px solid #ccc;
			border-left: 10px solid #666;
		}
		#menu li a:hover{
			color: #fff;
			background-color: #ccc;
			border-left: 10px solid #999;
		}
		#copyright{
			text-align: center;
			color: #666;
			font-size: .7em;
			padding: 3px;
		}