body {
background-image:url(images/indexbg.png);
background-repeat:repeat;
background-attachment: fixed;
background-color: #000000;
font-size: 12px;
font-family: Arial, Helvetica, sans-serif;
color:#7B7B73;
padding:0px;
margin:20px 0px;
}

a {
color: #D2B839;
}

a:hover {
color: #D2B839;
text-decoration:underline;
}

p {
margin:0px;
}

gold {
color: #D2B839;
}

chris a {
color:#7B7B73;
text-decoration:none;
}

chris a:hover {
text-decoration:none;
}

table.index {
	margin: 0px;
	padding:0px;
}

th.index {
border: none;
font: 12px;
background: transparent;
font-weight: normal;
text-decoration:none;
vertical-align: top;
padding-top: 10px;
}

h1 {
color:#CCCDC8;
font-size:16px;
font-weight: normal;
padding: 10px 0px 0px 0px;
margin:0px;
}

h2 {
color:#CCCDC8;
font-size:16px;
font-weight: normal;
padding: 0px;
margin:0px;
}

h3 {
color:#D2B839;
font-size:24px;
text-align:center;
font-weight: 100;
padding: 0px;
margin: 30px 0px 30px 0px;
}

h6 {
color:#D2B839;
font-size:20px;
text-align:center;
font-weight: 100;
padding: 0px;
margin: 30px 0px 0px 0px;
}

h4 {
color:#D2B839;
font-size:14px;
font-weight: normal;
font-style:italic;
padding: 0px;
margin:0px;}

h5 {
color:#D2B839;
font-size:24px;
text-align:center;
font-weight: 100;
padding: 0px;
margin: 10px 0px 0px 0px;
}

img.download {vertical-align:middle;}

/*  wrapper  */
#wrapper {
width: 800px;
margin-bottom: 10px;
margin-left: auto;
margin-right: auto;
background-color: #000000;
border: 1px solid #57574D;
}

/*  header  */
#header {
padding: 0px;
margin: 0px;
}

/*  Stripes  */
#stripes {
height: 16px;
border-bottom: 1px solid #57574D;
padding: 3px 0px 0px 0px;
text-align:center;
}


/* Menu */
#menu {
color: #FFFFFF;
height: 35px;
background: transparent;
text-align: center;
margin: 0px 0px 0px 0px;
padding: 0px 0px 0px 0px;
}

.menu, .menu ul {
	margin: 0;
	padding: 0;
	border: 0;
	list-style-type: none;
	display: block;
}

.menu li {
	margin: 0;
	padding: 0;
	border: 0;
	display: block;
	float: left;	/* move all main list items into one row, by floating them */
	position: relative;	/* position each LI, thus creating potential IE.win overlap problem */
	z-index: 5;		/* thus we need to apply explicit z-index here... */
}

.menu li:hover {
	z-index: 10000;	/* ...and here. this makes sure active item is always above anything else in the menu */
	white-space: normal;/* required to resolve IE7 :hover bug (z-index above is ignored if this is not present)
							see http://www.tanfa.co.uk/css/articles/pure-css-popups-bug.asp for other stuff that work */
}

.menu li li {
	float: none;/* items of the nested menus are kept on separate lines */
}

.menu ul {
	visibility: hidden;	/* initially hide all submenus. */
	position: absolute;
	z-index: 10;
	left: 0;	/* while hidden, always keep them at the top left corner, */
	top: 0;		/* 		to avoid scrollbars as much as possible */
}

.menu li:hover>ul {
	visibility: visible;	/* display submenu them on hover */
	top: 100%;	/* 1st level go below their parent item */
}

.menu li li:hover>ul {	/* 2nd+ levels go on the right side of the parent item */
	top: 0;
	left: 100%;
}

/* -- float.clear --
	force containment of floated LIs inside of UL */
.menu:after, .menu ul:after {
	content: ".";
	height: 0;
	display: block;
	visibility: hidden;
	overflow: hidden;
	clear: both;
}
.menu, .menu ul {	/* IE7 float clear: */
	min-height: 0;
}
/* -- float.clear.END --  */

/* -- sticky.submenu --
	it should not disappear when your mouse moves a bit outside the submenu
	YOU SHOULD NOT STYLE the background of the ".menu UL" or this feature may not work properly!
	if you do it, make sure you 110% know what you do */
.menu ul {
	background-image: url(empty.gif);	/* required for sticky to work in IE6 and IE7 - due to their (different) hover bugs */
	padding: 10px 30px 30px 30px;
	margin: -10px 0 0 -30px;
	/*background: #f00;*/	/* uncomment this if you want to see the "safe" area.
								you can also use to adjust the safe area to your requirement */
}
.menu ul ul {
	padding: 30px 30px 30px 10px;
	margin: -30px 0 0 -10px;
}
/* -- sticky.submenu.END -- */


/* - - - ADxMenu: DESIGN styles [ OPTIONAL, design your heart out :) ] - - - */

.menu {
	font-size:14px;
	color: #CCCDC8;
	border-top: 1px solid #D2B839;
	border-bottom: 1px solid #D2B839;
	background: #000000;
	height: 28px;
	margin:0px;
	padding: 0px 0px 0px 20px
}

.menu ul li {
	color: #CCCDC8;
	background: #000000;
}

.menu ul {
	width: 11em;
}

.menu a {
	text-decoration: none;
	color: #CCCDC8;
	padding: .4em 1em;
	display: block;
	position: relative;
}

.menu a:hover, .menu li:hover>a {
	color: #D2B839;
	padding: .4em 1em;
	display: block;
}

.menu li li {	/* create borders around each item */
	border: 1px solid #D2B839;
}

.menu ul>li + li {	/* and remove the top border on all but first item in the list */
	color: #D2B839;
	border-top: 0;
}

.menu li li:hover>ul {	/* inset 2nd+ submenus, to show off overlapping */
	top: 5px;
	left: 90%;
}

/* Fix for IE5/Mac \*//*/
.menu a {
	float: left;
}
/* End Fix */


/*  content  */
#content {
padding: 0px 50px 0px 50px;
margin-left: 0px;
margin-right: 0px;
}

#contentcentered {
text-align:center;
width: 700px;
padding: 0px;
margin: 0px 50px;
}

.contentimagegallery {
padding: 0px 80px 0px 120px;
margin-left: 0px;
margin-right: 0px;
}

/* ----------image pages ----------------*/
#pagination {
height:35px;
width: 400px;
float: right;
font-size:14px;
margin: 10px 175px 0px 0px;
}

.pagination {
border: 1px solid #57574D;
}

.previous {
background-color: transparent;
border: 1px solid #D2B839;
}

.next {
background-color: transparent;
border: 1px solid #D2B839;
}

.active { 
color: #57574D;
}


/* ----------vendors page ----------------*/
#vendor {
width: 197px;
height: 340px;
background-image:url(images/vendor-bg.jpg);
background-position:top;
background-repeat: no-repeat;
text-align: left;
float: left;
border: 1px solid #57574D;
padding: 0px 0px 0px 0px;
margin: 0px 15px 30px 15px;
}

.vendorinfo {
text-align: left;
border-top: 3px solid #57574D;
padding: 10px 10px 0px 10px;
margin: 0px 0px 0px 0px;
}

#vendor img {
padding: 0px 0px 0px 0px;
margin: 25px 0px 25px 25px;
}

#vendor img.border {
border:1px solid #7B7B73;
}


/*  cleaner  */
.cleaner {
clear: both;
height: 1px;
margin: 0px 30px 0px 30px;
font-size: 0;
content: ' ';
}


/*  right image bar  */
img.alignright {
float: right;
border: 1px solid #57574D;
margin: 0px 0px 15px 15px;
}

img.alignleft {
float: left;
border: 1px solid #57574D;
margin: 0px 15px 15px 0px;
}

.sidebar {
background-image:url(images/background2.gif);
float: right;
padding: 13px 0px 0px 13px;
margin: 0px 0px 15px 15px;
border: 1px solid #57574D;
}


/*** Index Pics ***/
#indexpics {
margin: 20px 0px 0px 50px;
padding: 0px 0px 0px 51px;
width: 649px;
}

.indexpictop {
margin: 0px 20px 20px 0px;
border:1px solid #7B7B73;
}

.indexpictable {
margin: 0px 0px 20px 0px;
border:1px solid #7B7B73;
}

.picturelist {
text-align:center;
margin-right:auto;
margin-left:auto;
}

.picturelist li {
list-style:none;
float:left;
margin:30px 0px 0px 30px;
font-weight:bold;
color:#AAAAAA;
}

.picturelist img{
display:block;
border:1px solid #7B7B73;
}

.picturelist a{
color:#AAAAAA;
text-decoration:none;
}

.picturelist a:hover{
color:#E5C51F;
}


/* forms */
.form1 {
color:#D2B839;
width: 320px;
text-align: right;
padding:0px;
margin:0px auto;
}


/*  footer  */
#footer {
margin: 50px 0px 0px 0px;
padding: 0px;
text-align: center;
}

#lowerfooter {
width: 800px;
margin-bottom: 10px;
margin-left: auto;
margin-right: auto;
text-align: center;
}