@charset "utf-8";

* {
	margin:0;
	padding:0;
} 

html, body {
	font: 100% "Trajan Pro";
	background: #000;
	margin: 0 auto; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #fff;
	height:100%;
}
img {
	border: 0;	
}
#container {
	width: 100%;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #000;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
	min-height:100%;
}
#header {
	padding: 0 0 0 20px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	height:160px;
	text-align:right;
}
#header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	color:#fff;
}
#header #logo {
	float:left;
}

#header #tagline h1 {
	font-size: 1em;
	text-align:right;
	margin-top: 30px;
	width:300px;
	padding-right:10px;
	float: right;
}
/* NAVIGATION */
#navbar {
	background-color:#333;
	height: 30px;
	float:left;
	overflow:hidden;
	position:relative;
	width:100%;
	clear:both;
}
#navbar ul {
	clear:left;
	float:left;
	list-style:none;
	margin:0;
	padding:0x;
	position:relative;
	left:50%;
	text-align:center;
}

#navbar ul li {
   display:block;
   float:left;
   list-style:none;
   margin:0;
   padding:0 20px 0 20px;
   position:relative;
   right:50%;
}
#navbar ul li a {
   display:block;
   margin:0 0 0 1px;
   padding:4px 10px;
   color:#fff;
   text-decoration:none;
   line-height:1.3em;
}
#navbar ul li a:hover {
   background:#F93;
   color:#BF1C24;
}
#navbar ul li a.active,
#navbar ul li a.active:hover {
   color:#fff;
   background:#f93;
}
/* END NAVIGATION */

#mainContent {
	clear:both;
	padding: 15px 0 20px 25px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #000;
	width:940px;
	
}
#mainContent h1 {
	font-size:1.5em;
}
#mainContent h2 {
	color: #faa21b;
}
#mainContent h3 {
	line-height: 1em;
	font-size: 1.25em;
	color: #BF1C24;
}
#mainContent h4 {
	font-size: 1em;
	color: #faa21b;
	line-height:1em;
}

#mainContent .imgLeft {
	padding-right: 5px;
	padding-bottom: 2px;
	float:left;
}
#mainContent .imgRight {
	padding-left: 10px;
	padding-bottom: 2px;
	float:right;
}
/* MENU */
.menu {
	color:#F93;
	text-decoration:none;
}
a:hover.menu  {
	text-decoration:underline;	
}
div.menu-item-wrapper {
	margin-bottom: .75em;
	width: 900px;
	position: relative;
	
}
span.menu-item-title {
	font-family:"Trajan Pro";
	font-size: 1.15em;
	text-transform: uppercase;
	color: #faa21b;
}
span.menu-item-desc {
	display: block;
	position: relative;
	top: -3px;
	font-family:"Trajan Pro";
	font-size:.85em;
	color: #fff;
}
span.menu-item-price {
	position: absolute;
	top: 0;
	right: 0;
	width: 15em;
	font-family:"Trajan Pro"
	font-size: 1em;
	color: #faa21b;
	text-align:right;
}
/* END MENU */

/*  S3SLIDER  */
#s3slider {
   width: 940px; /* important to be same as image width */
   height: 301px; /* important to be same as image height */
   position: relative; /* important */
   overflow: hidden; /* important */
   margin: 50px auto;
}
ul#s3sliderContent {
	list-style-type: none;
}
#s3sliderContent {
   width: 940px; /* important to be same as image width or wider */
   position: absolute; /* important */
   top: 0; /* important */
   margin-left: 0; /* important */
}

.s3sliderImage {
   float: left; /* important */
   position: relative; /* important */
   display: none; /* important */
}

.s3sliderImage span {
   position: absolute; /* important */
   left: 0;
   font: 10px/15px Arial, Helvetica, sans-serif;
   padding: 10px 13px;
   width: 940px;
   background-color: #000;
   filter: alpha(opacity=0); /* here you can set the opacity of box with text */
   -moz-opacity: 0.0; /* here you can set the opacity of box with text */
   -khtml-opacity: 0.0; /* here you can set the opacity of box with text */
   opacity: 0.0; /* here you can set the opacity of box with text */
   color: #fff;
   display: none; /* important */
   bottom: 0;

   /*
       if you put
       top: 0; -> the box with text will be shown at the top of the image
       if you put
       bottom: 0; -> the box with text will be shown at the bottom of the image
   */
}
.clear {
   clear: both;
} 
/* END S3SLIDER */

/* jQuery lightBox plugin - Gallery style */

#gallery {
	background-color: #000;
	padding: 10px;
	width: 100%;
}

#gallery ul {

	list-style: none;
}

#gallery ul li {
	display: inline;
}

#gallery ul img {
	border: 5px solid #000;
	border-width: 5px 5px 20px;
}
#gallery ul a:hover img {
	border: 5px solid #fff;
	border-width: 5px 5px 20px;
 	color: #fff;
}
#gallery ul a:hover {
    	color: #fff;
}

/* END GALLERY */

/*  CONTACT FORM */
.cssform p{
width: 300px;
clear: left;
margin: 0;
padding: 5px 0 8px 0;
padding-left: 155px; /*width of left column containing the label elements*/
height: 1%;
}

.cssform label{
font-weight: bold;
float: left;
margin-left: -155px; /*width of left column*/
width: 150px; /*width of labels. Should be smaller than left column (155px) to create some right margin*/
color: #faa21b;
}

.cssform input[type="text"]{ /*width of text boxes. IE6 does not understand this attribute*/
width: 180px;
}

.cssform textarea{
width: 250px;
height: 150px;
}
/*.threepxfix class below:
Targets IE6- ONLY. Adds 3 pixel indent for multi-line form contents.
to account for 3 pixel bug: http://www.positioniseverything.net/explorer/threepxtest.html
*/

* html .threepxfix{
margin-left: 3px;
}
/*  END FORM     */

/*  MAP  */
#bodyContent p {
	font-family:Verdana, Geneva, sans-serif;
	font-size: 1em;
	line-height:1.25em;
	color: #000;
}



#footer {
	clear:both;
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#000;
	height: 100px;
	text-align:left;
	border-top-width: thin;
	border-top-style: solid;
	border-top-color: #F93;
}
#footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	color:#fff;
	font-family:"Trajan Pro";
	font-size:.85em;
}