@charset "utf-8";
/* ------------------------------ Layout Styles ------------------------------ */
body  {
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
}
.basic #container {
	width: 980px;
	margin: 40px auto 0px auto; /* this overrides the text-align: center on the body element. */
} 
.basic #header {
	padding: 0; 
	height: 440px;
} 
.frame #sidebar {
	float: left; /* since this element is floated, a width must be given */
	width: 350px;
	margin: 0;
}
.frame #sidebarContent {
	margin: 5px;
	padding: 15px;
}
.frame #main {
	width: 608px; 
	margin: 0 0 0 370px;
} 
.frame #mainContent {
	margin: 5px;
	padding: 15px;
} 
.frame #footer {
	width: 950px;
	padding: 15px;
	margin-top: 15px;
} 
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear: both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
.subPage #backHome {
	margin: 0 0 0 20px;
}
/* ------------------------------ Presentation Styles ------------------------------ */
body.basic {
	background-color: #000000;
	background-image: url(../images/bkgd.jpg);
	background-repeat: repeat-x;
}
body.subPage {
	background-color: #000000;
	background-image:url(../images/bkgd_sub.jpg);
	background-repeat: repeat-x;
}
#address {
	margin: 50px 20px 0 0;
	text-align: right;
}
#menu {
	background: url(../images/topD.jpg);
	background-repeat: no-repeat;
}
a {
	outline: none;
	text-decoration: none;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-weight: normal;
	font-size: 12px;
	font-style: italic;
	line-height: 20px;
	color: #d6c5a6;
}
a:hover {
	color: #c59744;
}
a img {
	border-style: none;
}
.frame a img {
	margin-top: 20px;
}
body.frame {
	background-color: #000000;
}
.frame #sidebar, .frame #main {
	background-color: #1c160b;
	border: 1px solid #392f25;
}
.frame #sidebarContent, .frame #mainContent {
	background-color: #2f2714;
	background-image: url(../images/frameBkgd.jpg);
	background-repeat: repeat-x;
}
h1 {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-weight: normal;
	font-size: 18px;
	font-style: italic;
	line-height: 20px;
	color: #d6c5a6;
	margin-top: 10px;
}
h2 {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-weight: normal;
	font-size: 14px;
	font-style: italic;
	line-height: 20px;
	color: #d6c5a6;
	margin-top: 10px;
}
h3 {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-weight: normal;
	font-size: 12px;
	font-style: italic;
	line-height: 20px;
	color: #e5ab52;
	margin: 5px 0 0 0;
}
.bottomMargin {
	margin-right: 10px;
	margin-bottom: 10px;
}
p {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #d6c5a6;
	line-height: 18px;
	margin-top: 10px;
}
p.vertical {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-weight: normal;
	font-size: 12px;
	font-style: italic;
	line-height: 20px;
	color: #d6c5a6;
	margin: 5px 0 0 0;
}
p.tableData {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 9px;
	color: #d6c5a6;
	line-height: 11px;
	margin: 3px 0 25px 0;
}
	
.frame #footer {
	text-align: center;
	border-top: 1px solid #392f25;
}
.copyright {
	font-size: 9px;
	line-height: 50px;
}
/* ------------------------------ Navigation Styles ------------------------------ */
ul.dropdown, ul.dropdown li, ul.dropdown ul {
 	list-style: none;
 	margin: 0;
 	padding: 0;
}
ul.dropdown {
 	position: relative;
 	z-index: 597;
}
ul.dropdown li {
 	float: left;
 	line-height: 20px;
 	vertical-align: middle;
 	zoom: 1;
	padding-right: 5px;
}
ul.dropdown li:hover {
 	position: relative;
 	z-index: 599;
 	cursor: default;
}
ul.dropdown ul {
 	visibility: hidden;
 	position: absolute;
	top: 25px;
 	left: 0;
 	z-index: 598;
 	width: 150px;
 	background-color: #483522;
	padding-right: 5px;
	padding-left: 5px;
}
ul.dropdown ul li {
 	float: none;
	padding: 2px;
	border-bottom: 1px solid #b1a389;
}
ul.dropdown ul li.noBorder {
	border-bottom: none;
}
ul.dropdown li:hover > ul {
 	visibility: visible;
}
ul.dropdown a:link, ul.dropdown a:visited	{ 
	text-decoration: none;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-weight: normal;
	font-size: 12px;
	font-style: italic;
	color: #e5ab52; 
}
ul.dropdown a:hover		{ 
	color: #f4ede0;
}
ul.dropdown a:active	{ 
	color: #f4ede0; 
}
ul.dropdown li.current a, ul.dropdown li.current h3 {
	color: #d6c5a6;
}

