@charset "utf-8";
/* CSS Document */

html {
	background: url(/images/bg0.jpg) no-repeat center center fixed;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}
body {
	background-color: #000000;
	margin: 0px;
	padding: 0px;
	font-family: Calibri,Arial,sans-serif;
	font-size: 14px;
	color: #ffffff;
}
p {
	margin: 0 0 10px 0;
}
h1 {
	font-size: 24px;
	font-weight: bold;
	margin: 0 0 20px 0;
}
h2 {
	font-size: 22px;
	font-weight: bold;
	margin: 0 0 10px 0;
}
h3 {
	font-size: 20px;
	font-weight: bold;
	margin: 0 0 10px 0;
}
h4 {
	font-size: 18px;
	font-weight: bold;
	margin: 0 0 10px 0;
}
h5 {
	font-size: 16px;
	font-weight: bold;
	margin: 0 0 10px 0;
}
h6 {
	font-size: 14px;
	font-weight: bold;
	margin: 0 0 10px 0;
}
a {
	color: #916d3b;
	text-decoration: none;
	outline: none;
}
a:link {
	color: #916d3b;
	text-decoration: none;
	outline: none;
}
a:visited {
	color: #666666;
	text-decoration: none;
	outline: none;
}
a:hover {
	color: #b07829;
	text-decoration: none;
	outline: none;
}
a:active {
	color: #ca831d;
	text-decoration: none;
	outline: none;
}
.smalltext {
	font-size: 12px;
	color: #cccccc;
}
.crossedtext {
	text-decoration: line-through;
}
.pricetag {
	font-size: 18px;
}
.opening {
	color: #666666;
}
.imageborder {
	border: solid 1px #000000;
}

/*
* Sets the background image
*/
img.bg {
	/* Set rules to fill background */
	min-height: 100%;
	min-width: 1024px;
	/* Set up proportionate scaling */
	width: 100%;
	height: auto;
	/* Set up positioning */
	position: fixed;
	top: 0;
	left: 0;
}
@media screen and (max-width: 1024px) {
	img.bg {
		left: 50%;
		margin-left: -512px;
	}
}

/*
* Holds the top images of the design
*/
#top-wrap {
	position: relative;
	top: 0;
	width: 842px;
	margin: 0px auto;
	padding: 0px;
	background: none;
}

/*
* Holds the general content
*/
#page-wrap {
	position: relative;
	width: 842px;
	margin: 50px auto;
	padding: 20px;
	background: none;
	-moz-box-shadow: 0 0 20px black;
	-webkit-box-shadow: 0 0 20px black;
	box-shadow: 0 0 20px black;
}
#content-wrap {
	position: relative;
	width: auto;
	margin: 10px auto;
	padding: 20px;
	background: none;
}

/*
* Navigation bar
*/
#nav {
	list-style: none;
	font-size: 16px;
	text-transform: uppercase;
	text-decoration: none;
	margin-bottom: 10px;
	/* Clear floats */
	float: left;
	width: 800px;
	border-top: solid 1px #916d3b;
	border-bottom: solid 1px #916d3b;
	background: #000000;
	background: rgba(0,0,0,0.9);
	/* Bring the nav above everything else--uncomment if needed.
	position: relative;
	z-index: 5;
	*/
}
#nav li {
	float: left;
	margin-right: 10px;
	position: relative;
}
#nav a {
	display: block;
	padding: 5px;
}
#nav a:visited {
	color: #916d3b;
	text-decoration: none;
}
#nav a:hover {
	color: #b07829;
	text-decoration: none;
}
#nav a:active {
	color: #ca831d;
	text-decoration: none;
}

/*--- DROPDOWN ---*/
#nav ul {
	background: #000000; /* Adding a background makes the dropdown work properly in IE7+. Make this as close to your page's background as possible (i.e. white page == white background). */
	background: rgba(0,0,0,0.9); /* But! Let's make the background fully transparent where we can, we don't actually want to see it if we can help it... */
	-moz-box-shadow: 0 0 20px black;
	-webkit-box-shadow: 0 0 20px black;
	box-shadow: 0 0 20px black;
	list-style: none;
	position: absolute;
	left: -9999px; /* Hide off-screen when not needed (this is more accessible than display:none;) */
}
#nav ul li {
	padding-top: 1px; /* Introducing a padding between the li and the a give the illusion spaced items */
	float: none;
}
#nav ul a {
	white-space: nowrap; /* Stop text wrapping and creating multi-line dropdown items */
}
#nav li:hover ul { /* Display the dropdown on hover */
	left: 0; /* Bring back on-screen when needed */
}
#nav li:hover a { /* These create persistent hover states, meaning the top-most link stays 'hovered' even when your cursor has moved down the list. */
	text-decoration: none;
}
#nav li:hover ul a { /* The persistent hover state does however create a global style for links even before they're hovered. Here we undo these effects. */
	text-decoration: none;
}
#nav li:hover ul li a:hover { /* Here we define the most explicit hover states--what happens when you hover each individual link. */
	color: #b07829;
	background: #916d3b;
	background: rgba(145,109,59,0.4);	
	-moz-box-shadow: 0 0 20px #916d3b;
	-webkit-box-shadow: 0 0 20px #916d3b;
	box-shadow: 0 0 20px #916d3b;
}
