@charset "utf-8";
@import url("css/slideshow.css");
/* CSS Document */
    body {
	margin:0px;
	padding:0px;
	background-color:#11090a;
	font-family:Arial, Helvetica, sans-serif;
	z-index: auto;
        }  
    #outside_container {  
       background:url(images/background_slice.jpg) repeat-x #000000;  
       }  
   #container {
	background:url(images/BG1.jpg) no-repeat;
	min-height:600px;
	width: 1280px;
	position:relative;
       }  
	   
	   /*
	   Logo / Menu / Panel Positioning
	   */
	   
	 #logo { position:absolute; top:0px; left:0px; }
     
	 #panel { position:absolute; top:200px; left:0px; }

    ul#menu {
	margin:0px;
	padding:0px;
	position:absolute;
	top:180px;
	left:400px;
	width: 584px;
}
			 
ul#menu li{
	margin:0px;	padding:0px;
	list-style:none;
	margin-right:10px;
	font-size:9px;
	text-transform:uppercase;
	display:inline;
}
ul#menu li a{
	text-decoration:none;
	color:#bd92b2;
}
ul#menu li a:hover{
	text-decoration:none;
	color:#ffffff;
}

/*
	Content
*/

#content {
	padding-top:225px;
	padding-left:135px;
	width:815px;
	color:#674f5d;
	font-size:13px;
	line-height:20px;
	z-index: 2;
}

.column1 {
	float:left;
	width:300px;
	margin-right:30px;
	z-index: 0;
	position: absolute;
	left: 94px;
	top: 225px;
}

/* Gallery */

.gallery {
	display: block;
	z-index: 0;
	position:relative;
}
.gallery-images {
	display: block;
	overflow: hidden;
	position: relative;
}		
.gallery-images img {
	display: block;
	position: absolute;
	z-index: 1;
}		
.gallery-thumbnails {
	overflow: hidden;
}

/**
HTML:
	<div class="gallery-images">
		<img />
		<img />
	</div>
	
Notes:
	The images div is where the slides are shown.
	Customize the visible / prev / next classes to effect the gallery transitions: fading, wiping, etc.
*/

.gallery-images {
	height: 333px;
	width: 249px;
}		
.gallery-images-visible { 
	opacity: 1;
}	
.gallery-images-prev { 
	opacity: 0; 
}
.gallery-images-next { 
	opacity: 0; 
}
.gallery-images img {
	float: left;
	left: 0;
	top: 0;
}	

/**
Notes:
	These are examples of user-defined styles.
	Customize these classes to your usage of gallery.
*/

.gallery {
	height: 250px;
	margin: 0 auto;
	width: 280px;
}
.gallery a img {
	border: 0;
}

/**
HTML:
	<div class="gallery-captions">
		...
	</div>
	
Notes:
	Customize the hidden / visible classes to affect the captions animation.
*/

.gallery-captions {
	background: #000;
	bottom: 0;
	color: #FFF;
	font: normal 12px/22px Arial, sans-serif;
	left: 0;
	overflow: hidden;
	position: absolute;
	text-indent: 10px;
	width: 100%;
	z-index: 10000;
}
.gallery-captions-hidden {
	height: 0;
	opacity: 0;
}
.gallery-captions-visible {
	height: 22px;
	opacity: .7;
}

/**
HTML:
	<div class="gallery-controller">
		<ul>
			<li class="first"><a /></li>
			<li class="prev"><a /></li>
			<li class="pause play"><a /></li>
			<li class="next"><a /></li>
			<li class="last"><a /></li>
		</ul>
	</div>
	
Notes:
	Customize the hidden / visible classes to affect the controller animation.
*/

.gallery-controller {
	background: url(controller.png) no-repeat;
	height: 42px;
	left: 50%;
	margin: -21px 0 0 -119px;
	overflow: hidden;
	position: absolute;
	top: 50%;
	width: 238px;
	z-index: 10000;
}
.gallery-controller * {
	margin: 0;
	padding: 0;
}
.gallery-controller-hidden { 
	opacity: 0;
}
.gallery-controller-visible {
	opacity: 1;
}
.gallery-controller a {
	cursor: pointer;
	display: block;
	height: 18px;
	overflow: hidden;
	position: absolute;
	top: 12px;
}
.gallery-controller a.active {
	background-position: 0 18px;
}
.gallery-controller li {
	list-style: none;
}
.gallery-controller li.first a {
	background-image: url(controller-first.gif);
	left: 33px;
	width: 19px;
}
.gallery-controller li.last a {
	background-image: url(controller-last.gif);
	left: 186px;
	width: 19px;
}
.gallery-controller li.next a {
	background-image: url(controller-next.gif);
	left: 145px;
	width: 28px;
}
.gallery-controller li.pause a {
	background-image: url(controller-pause.gif);
	left: 109px;
	width: 20px;
}
.gallery-controller li.play a {
	background-position: 20px 0;
}
.gallery-controller li.play a.active {
	background-position: 20px 18px;
}
.gallery-controller li.prev a {
	background-image: url(controller-prev.gif);
	left: 65px;
	width: 28px;
}

/**
HTML:
	<div class="gallery-loader" />
	
Notes:
	Customize the hidden / visible classes to affect the loader animation.
*/

.gallery-loader {
	height: 28px;
	right: 0;
	position: absolute;
	top: 0;
	width: 28px;
	z-index: 10001;
}
.gallery-loader-hidden {
	opacity: 0;
}
.gallery-loader-visible {
	opacity: 1;
}

/**
HTML:
	<div class="gallery-thumbnails">
		<ul>
			<li><a class="gallery-thumbnails-active" /></li>
			<li><a class="gallery-thumbnails-inactive" /></li>
			...
			<li><a class="gallery-thumbnails-inactive" /></li>
		</ul>
	</div>
	
Notes:
	Customize the active / inactive classes to affect the thumbnails animation.
	Use the !important keyword to override FX without affecting performance.
*/

.gallery-thumbnails {
	bottom: -65px;
	height: 65px;
	left: 0;
	position: absolute;
	width: 100%;
}
.gallery-thumbnails * {
	margin: 0;
	padding: 0;
}
.gallery-thumbnails ul {
	height: 65px;
	left: 0;
	position: absolute;
	top: 0;
	width: 10000px;
}
.gallery-thumbnails li {
	float: left;
	list-style: none;
	margin: 5px 5px 5px 0;
	position: relative;
}
.gallery-thumbnails a {
	display: block;
	float: left;
	padding: 5px;
	position: relative; 
}
.gallery-thumbnails a:hover {
	background-color: #FF9 !important;
	opacity: 1 !important;
}
.gallery-thumbnails img {
	display: block;
}
.gallery-thumbnails-active {
	background-color: #9FF;
	opacity: 1;
}
.gallery-thumbnails-inactive {
	background-color: #FFF;
	opacity: .5;
}

/* End Gallery */

   /*
	Footer
*/
#footer {
	border-top:1px solid #3f2324;
	padding:30px 50px 80px 50px;
	color:#674f5d;
	font-size:9px;
	line-height:14px;
}
#footer img {
	float:left;
	margin-right:10px;
}
#footer span {
	display:block;
	float:left;
	width:250px;
}
#footer a {
	color:#9e8292;
	text-decoration:none;
}
#footer a:hover { color:#ffffff; }
