	/*
		(1) html elements:
		(2) layout components
		(3) formatting: layout components
		(4) general purpose
		(5) hacks
			made in washington */

	/************************************************
		(1) html elements
	*************************************************/
	* {
		margin: 0;
		padding: 0;
	}

	html {
		min-height: 100%;
	}


	body {
		background: transparent url(../images/bg_body.jpg) 0 0 repeat-x;
		font-family: arial, sans-serif;
		font-size: 75%;
		min-height: 100%;
	}

	a {
		color: #7d1613;
	}

	a:hover {
		color: #bc6621;
	}


	img {
		border: none;
	}

	h2 {
		color: #7d1613;
	}

	p {
		margin-bottom: 15px;
	}


	/************************************************
		(2) layout components
	*************************************************/
	#main {
		margin: 0 auto;
		background: transparent url(../images/bg_main.gif) 0 0 repeat-x;
		min-height: 100%;
	}

	#masthead {
		width: 984px;
		margin: 0 auto;
		height: 116px;
	}

	#logo {
		float: left;
		width: 206px;
		padding-top: 23px;
	}

	#nav {
		float: right;
		margin: 45px 5px 0 0;
		z-index: 500;
	}

	#content-wrapper {
		position: relative;
		width: 984px;
		background: #fff url(../images/bg_content.jpg) 0 0 repeat-x;
		margin: 0 auto;
		min-height: 565px;
		line-height: 1.5em;
		height: 100%;
		overflow: auto;
		padding-bottom: 30px;
	}

	#banner {
		background: transparent url(../images/bg_banner.jpg) 0 0 no-repeat;
		margin: 10px;
		height: 40px;
		padding-top: 224px;
		padding-left: 15px;
	}

	#intro {
		font-family: Garamond, Georgia, sans-serif;
	}

	#contact {
		margin: 15px;
		color: #000;
		font-size: 1.1em;
		width: 175px;
		border-top: 1px solid #7c1613;
		padding-top: 20px;
		text-align: center;
		float: left;
	}
	
	.contact_button{
		width: 100px;
		height: 30px;
		font-size: 9pt;
		margin-top: 0px;
		margin-bottom: 10px;
	}

	#content {
		float: left;
		margin-left: 25px;
		margin-top: 10px;
		width: 500px;
	}

	#estimates {
		float: right;
		margin: 15px;
		width: 175px;
		padding-top: 20px;
		border-top: 1px solid #7c1613;
		text-align: center;
	}

	/************************************************
		(3) formatting: layout components
	*************************************************/

	/* nav */
	#nav li {
		position: relative;
		z-index: 500;
	}

	#nav li a {
		margin: 0 0 0 10px;
		float: left;
		text-decoration: none;
		border-left: 1px solid #7d1613;
		padding-left: 10px;
		font-size: 1.2em;
	}

	#nav li.first a {
		border-left: none;
	}
	
	#nav a.active {
	    font-weight: bold;
	}

	/* nav: level 2 */
	#nav ul ul {
		position: absolute;
		top: 15px;
		left: 10px;
		width: 200px;
		display: none;
		background-color: #fff;
		z-index: 500;
		padding-top: 10px;
		border-left: 1px solid #7d1613;
		border-bottom: 1px solid #7d1613;
	}

	#nav ul li:hover ul {
		display: block;
	}

	#nav ul ul li {
		list-style: none;
		float: none;
		display: block;
	}

	#nav ul ul a {
		border: none;
		margin-bottom: 7px;
		margin-left: 0;
		display: block;
		float: none;
	}

	#nav ul ul a:hover {
		text-decoration: none;
	}


	/* banner */
	#banner h1 {
		font-family: Georgia, sans-serif;
		font-size: 3.5em;
		font-weight: normal;
		color: #fff;
	}


	/* content */
	#content h1 {
		margin-bottom: 15px;
	}

	#content h2 {
		margin-bottom: 15px;
	}

	#content p {
		margin-bottom: 15px;
	}

	#content ul {
		margin: 0 0 15px 25px;
	}
	
	#content ul ul {
	    margin-top: 10px;
	}

	#content .pad {
		padding: 0 15px;
	}

	/* intro */
	#intro h1 strong {
		display: block;
		margin-left: 50px;
		line-height: 1.6em;
		margin-bottom: 15px;
	}

	/* contact */
	#contact p {
		margin-bottom: 15px;
	}


	/* estimates */
	#estimates h2 {
		font-family: georgia, serif;
		font-weight: normal;
		line-height: 1.5em;
		margin-bottom: 15px;
	}

	#estimates p {
		margin-bottom: 15px;
	}




	/************************************************
		(4) general purpose
	*************************************************/

	/* ul.flat */
	ul.flat {
		list-style: none;
	}

	/* ul.adjacent */
	ul.adjacent {
		list-style: none;
	}

	ul.adjacent li {
		float: left;
	}

	.profile {
		overflow: auto;
		padding-bottom: 15px;
		margin-bottom: 15px;
		border-bottom: 1px solid #f7f7f7;
	}

	.profile h3 {
		font-weight: normal;
	}

	.profile h3 strong {
		font-weight: bold;
	}


	.staff {
		float: left;
		margin: 0 15px 15px 0;
	}




	/************************************************
		(5) hacks
	*************************************************/

