/*
	Desciprtion: This style sheet contains the custom styling for the site
	Client: Jamie Stephen
	Version: 1.0
	Author: Ben Ellis
	Created: 28/07/2008
	Updated: 08/08/2008
*/

/* ------------------------------------------------------------
	Default elements
---------------------------------------------------------------- */

body {
	margin: 0px;
	padding: 0px;
	background: #000000 url("../images/nav_bg.gif") 0px 99px repeat-x;
	color: #4B4B4B;
	font-size: 13px;
	font-family: Lucida sans, Tahoma, Verdana, Arial, Helvetica, sans-serif;
	line-height: 20px;
	text-align: center;
}

a {
	font-weight: normal;
	color: #524B30;
	text-decoration: underline;
	cursor: pointer;
}

a:visited {
	color: #494230;
	text-decoration: underline;
}

a:active {
	color: #9B8E5A;
	text-decoration: underline;
}

a:hover {
	color: #C1AE80;
	text-decoration: none;
}

h1, h2, h3, h4, h1 a, h2 a, h3 a, h4 a, h5, h5 a {
	font-weight: normal;
	font-family: "Minion Pro", Minion, Georgia, "Times New Roman", Times, serif;
	text-decoration: none;
	clear:both;
}

h1, h1 a, h1 a:visited {
	font-size: 20px;
	margin: 0px 0px 3px 0px;
	padding: 0px 0px 0px 0px;
}

h2, h2 a, h2 a:visited {
	font-size: 30px;
	color: #91835F;
	margin: 0px 0px 5px 0px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

h3, h3 a, h3:visited {
	font-size: 18px;
	color:#91835F;
	margin: 0px 0px 5px 0px;
	text-transform: uppercase;
}

h4, h4 a, h4 a:visited {
	font-size: 14px;
	font-family: Lucida sans, Tahoma, Verdana, Arial, Helvetica, sans-serif;
	color: #CCCCCC;
	margin: 0px 0px 0px 0px;
	text-transform: uppercase;
}

p {
	margin: 0px 0px 25px 0px;
}

strong {
	color: #999999;
	font-weight: bold;
}

/* ------------------------------------------------------------
	Styles for container
---------------------------------------------------------------- */

#container {
	position: relative;
	margin: 0px auto;
	width: 960px;
}

/* ------------------------------------------------------------
	Styles for header
---------------------------------------------------------------- */

#header {
	position: relative;
	text-align: left;
	z-index: 3;
}

#header h1 {
	width: 300px;
	height: 56px;
	margin: 20px 0px 23px 0px;
}

#header h1 a {
	display: block;
	width: 300px;
	height: 56px;
	background: url("../images/logo_bg.gif") top left no-repeat;
}


#header h1 a:hover {
	display: block;
	width: 300px;
	height: 56px;
	background-position: -300px 0px;
}

#header h1 a span {
	display: none;
}

/* ------------------------------------------------------------
	Styles for skip navigation
---------------------------------------------------------------- */

#skip_nav {
	display: none;
}

/* ------------------------------------------------------------
	Styles for navigation
---------------------------------------------------------------- */

/* Styles the top level navigation */

ul#nav {
	padding: 0;
	margin: 0;
	padding-left: 0px;
	list-style: none;
	line-height: 1;
	height: 25px;
	line-height: 1;
}

#nav li {
	float: left;
	width: 106px; /* width needed or else Opera goes nuts */
}

#nav a {
	display: block;
	width: 106px;
	text-align: center;
	border-right: 1px #383325 solid;
	padding: 6px 0px 5px 0px;
	text-decoration: none;
	font: 10px Georgia, Century Gothic, Georgia, "Times New Roman", Times, serif;
	color: #7B6F51;
	text-transform: uppercase;
	cursor: text;
}

#nav a:hover  {
	color: #a5956d;
}

#nav .first {
	border-left: 1px #3B3626 solid;
}

#nav li.inactive a {
	color: #373225;
}

#nav a.active {
	color: #FFFFFF;
}

/* Sets the top level mouse gesture to a pointer and not a hand */

#nav li#item_1 li li a, #nav li#item_2 li a, #nav li#item_3 a {
	cursor: pointer;
}

/* Second level navigation */

#nav li ul {
	position: absolute;
	left: -1000px; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	padding-top: 2px;
	margin: 0px;
	width: 140px;
	z-index: 100;
}

#nav li ul li a {
	background: #494230 url("../images/sub_nav_off_bg.gif") 5px 8px no-repeat;
	color: #000000;
	font: 11px Arial, Helvetica, sans-serif;
	text-transform: none;
	border-bottom: 1px #3B3626 solid;
	border-right: none;
	text-align: left;
	padding-left: 17px;
	width: 140px;
}

#nav li ul li a:hover {
	color: #FFFFFF;
	background: #9B8E5A url("../images/sub_nav_on_bg.gif") 5px 8px no-repeat;
}

/* Third level navigation */

#nav li ul ul {
	margin: -25px 0 0 156px;
	padding-top: 0px;
	padding-left: 2px;
}

#nav li:hover ul ul, #nav li:hover ul ul ul, #nav li.sfhover ul ul, #nav li.sfhover ul ul ul {
	left: -1000px;
}

#nav li:hover ul, #nav li li:hover ul, #nav li li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul, #nav li li li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}

/* ------------------------------------------------------------
	Styles for content container area
---------------------------------------------------------------- */

#content {
	text-align: left;
	padding: 30px 0px 0px 0px;
}

/* ------------------------------------------------------------
	Styles for side content area
---------------------------------------------------------------- */

#primary {
	width: 200px;
	float: left;
	font-size: 12px;
}

#primary li a {
	background: url("../images/bullet_bg.gif") 0px 6px no-repeat;
	padding: 2px 0px 2px 15px;
	width: 185px;
	text-decoration: none;
	text-transform: capitalize;
}

#primary li a:hover, #primary li.active a {
	background-position: 0px -8px;
}

#primary li.active a {
	color: #FFFFFF;
	background: url("../images/active_bullet_bg.gif") 0px -8px no-repeat;
}

#primary ul {
	margin-bottom: 20px;
}

#primary h3 {
	font-size: 13px;
}

#primary p {
	line-height: 16px;
	margin-bottom: 20px;
}

#primary li.website a {
	text-transform: none;
}

/* ------------------------------------------------------------
	Styles for main content area
---------------------------------------------------------------- */

#secondary, #secondary.two_col {
	width: 700px;
	float: right;
	margin: 0px 0px 0px 30px;
}

#secondary.full_width {
	width: 100%;
}

#secondary a img {
	border: 1px #0A0A0A solid;
	padding: 5px;
	margin-top: 5px;
	margin-right: 5px;
	background-color: #070707;
}

#secondary a:hover img {
	border-color: #524B30;
}

.gallery {
	width: 690px;
	height: 445px;
	overflow: auto;
	margin: 10px 0px 30px 0px;
}

.gallery img {
	width: 90px;
	height: 90px;
}

/* ------------------------------------------------------------
	Styles for custom non-IE scrollbars
---------------------------------------------------------------- */

.scrollgeneric {
	line-height: 1px;
	font-size: 1px;
	position: absolute;
	top: 0; 
	left: 0;
}

.vscrollerbase {
	width: 18px;
	background: #0D0D0D;
}

.vscrollerbar {
	width: 18px;
	background: url("../images/scrollbar_handle.gif") 0px 0px no-repeat;
	z-index: 2;
}

.vscrollerbarbeg {
	width: 18px;
	height: 1px !important;
}

.vscrollerbarend {
	width: 18px;
	height: 1px;
}

/* ------------------------------------------------------------
	Styles for show/hide
---------------------------------------------------------------- */

.hidden {
	position: absolute;
	left: -1000px;
	top: -1000px;
}

.show {
	display: block;
	position: inherit;
}

/* ------------------------------------------------------------
	Styles for footer area
---------------------------------------------------------------- */

#footer {
	clear: both;
	font-size: 10px;
	padding: 0px 0px 40px 0px;
	margin: 100px 0px 0px 0px;
	line-height: 12px;
	color: #383838;
}

#footer p {
	margin: 0px 0px 5px 0px;
}