﻿/* headers */
h1, h2, h3 {
	font: bold 1em 'Trebuchet MS', Arial, Sans-serif;
	color: #333;	
}
h1 {
	font-size: 1.5em;
	color: #502915;
} 
h2 { font-size: 1.4em; text-transform:uppercase;}
h3 { font-size: 1.3em; }

p, h1, h2, h3 {
	margin: 10px 15px;
}
ul, ol {
	margin: 10px 30px;
	padding: 0 15px;
	color: #4284B0;
}
ul span, ol span {
	color: #666666; 
}

/* --[ nav ]------------------------------- */

#nav {
	width: 530px;
	height:105px;
	float: left;
	margin: 0;
	font-family: "Trebuchet MS", Verdana;
	font-size: 115%;
	text-transform: lowercase;
	padding-top: 8px;
	padding-right: 0;
	padding-bottom: 18px;
	padding-left: 36px;
	}
#nav li {
	list-style: none;
	float: left;
	margin: 0 6px 0 0;
	padding: 0 0 0 0;
	}
#nav a {
	float: left;
	display: block;
	text-decoration: none;
	font-weight: bold;
	color: #cbb19a;
	border: none;
	padding-top: 8px;
	padding-right: 10px;
	padding-bottom: 8px;
	padding-left: 10px;
	}
	
/* hover state */

#nav li:hover {
	background: #9c6f4e url(nhov-top.gif) no-repeat top left;
	}
#nav a:hover { /* a backup for IE's lack of li:hover support */
	background-color: #9c6f4e;
	}
html>body #nav a:hover {
	background: transparent url(nhov-bottom.gif) no-repeat bottom right;
	}
	
/* active state */

#nav li.active {
	background: url(nav-top.gif) no-repeat top left;
	}
#nav li.active a {
	color: #2B4A8D;
	background: url(nav-bottom.gif) no-repeat bottom right !important;
	}

