/**
Stylesheet: Slideshow.css
	CSS for Slideshow.

License:
	MIT-style license.

Copyright:
	Copyright (c) 2008 [Aeron Glemann](http://www.electricprism.com/aeron/).
	
HTML:
	<div class="slideshow">
		<div class="images" />
		<div class="captions" />
		<div class="controller" />
		<div class="thumbnails" />
	</div>
	
Notes:
	These next four rules are set by the Slideshow script.
	You can override any of them with the !important keyword but the slideshow probably will not work as intended.
*/

body {
	margin:0;
	background:#f3e8ca url(images/back.png) repeat-x top center;
	font-family: Georgia, Verdana, 'Trebuchet MS', Tahoma, Arial;
	font-size:10pt;
	text-align:center;
} 

#main {
	margin:10px auto;
	width:900px;
	height:590px;
	padding:0px 15px;
	border:1px solid #b1a691;
	background:#fdfbf5;
}

#header {
	width:100%;
	height:80px;
	background: #fdfbf5 url(images/back_header.png) no-repeat top left;
	text-align:left;
}

#logo {
	text-decoration:none;
}
#logo img {
	margin:0;
	padding:0;
	border:0;
}

#menu {
	height:25px;
	margin:0;
	padding:0px 0px 0px 0px;
	text-align:right;
	border:0px solid black;
}
#menu li {
	float:right;
	list-style:none;
}
#menu li a {
	display:block;
	margin:0;
	padding:5px 10px;
	text-decoration:none;
	color:maroon;
}
#menu li a:hover {
	background-color: #faf2dc;
	border-style:solid;
	border-color:#f3e8ca;
	border-width:1px 1px 0;
	padding:5px 9px;
	color:#bf0000;
}
#menu li a.current {
	background-color: #faf2dc;
	border-style:solid;
	border-color:#f3e8ca;
	border-width:1px 1px 0;
	padding:5px 9px;
	color:#bf0000;
	font-weight:bold;
}

#footer {
	width:930px;
	margin: 0px auto;
	text-align:right;
	font-size:8pt;
	color:#808080;
	border:0px solid black;
}

#footer p {
	width:100%;
	padding: 0px 0px 5px 0px;
	margin:5px 0;
	text-align: right;
	border-bottom:1px dotted #e1d5b6;
}
#footer div {
	width:100%;
	padding: 0;
	margin:0;
	text-align: right;
	color:#808080;
	font-size:7pt;
	letter-spacing:1px;
}


a {
	color: maroon;
	text-decoration:none;
}

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



.slideshow {
	width:900px;
	height:460px;
/*	border:1px solid black;		*/
	display: block;
	position: relative;
	z-index: 0;
}
.slideshow a img {
	border: 0;
}
.slideshow-images {
	display: block;
	padding:0;
	margin:0;
	overflow: hidden;
	position: relative;
}		
.slideshow-images img {
	display: block;
	position: absolute;
	padding:0;
	margin:0;
	z-index: 1;
}		
.slideshow-thumbnails {
	overflow: hidden;
	width: 100%;
	padding:0;
	margin:0;
/*	border:1px solid black; */		
}

/**
HTML:
	<div class="slideshow-images">
		<img />
		<img />
	</div>
	
Notes:
	The images div is where the slides are shown.
	Customize the visible / prev / next classes to effect the slideshow transitions: fading, wiping, etc.
*/

.slideshow-images {
	height: 300px;
	width: 400px;
}		
.slideshow-images-visible { 
	opacity: 1;
}	
.slideshow-images-prev { 
	opacity: 0; 
}
.slideshow-images-next { 
	opacity: 0; 
}
.slideshow-images img {
	float: left;
	left: 0;
	top: 0;
}	

/**
HTML:
	<div class="slideshow-thumbnails">
		<ul>
			<li><a class="slideshow-thumbnails-active" /></li>
			<li><a class="slideshow-thumbnails-inactive" /></li>
			...
			<li><a class="slideshow-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.
*/

.slideshow-thumbnails {
	position: relative;
}
.slideshow-thumbnails * {
	margin: 0;
	padding: 0;
}
.slideshow-thumbnails ul {
}
.slideshow-thumbnails li {
	float: left;
	list-style: none;
	margin: 5px 5px 0px 0;
	position: relative;
}
.slideshow-thumbnails a {
	display: block;
	padding: 3px;
	position: relative; 
	border:2px solid #F0F0F0;
}
.slideshow-thumbnails a:hover {
	background-color: #E0E0E0 !important;
	opacity: 1 !important;
}
.slideshow-thumbnails img {
	display: block;
	width:25px;
}
.slideshow-thumbnails-active {
	background-color: #EEEEEE;
	border:2px solid #D0D0D0;
	opacity: 1;
	width:25px;
}
.slideshow-thumbnails-inactive {
	background-color: #FFFFFF;
	border:2px solid #F0F0F0;
	opacity: .5;
	width:25px;
}




#subpage {
	width:898px;
	height:460px;
	border:1px solid #e1d5b6;
	background-color:#faf6ea;
	text-align:left;
}

#subpage .content_left {
	float:left;
	padding:20px 50px 0 20px;
	text-align:left;
	border-right:1px solid #e1d5b6;
}

#subpage .content_right {
	float:left;
	width:250px;
	background-color:#faf8f2;
	margin:20px 0 0 50px;
	padding:0px 20px;
	text-align:left;
	border:1px solid #DDD;
}
#subpage h2 {
	margin:10px 15px;
	padding:2px;
	border-bottom:1px solid #CCC;
}
#subpage p {
	margin: 15px auto;
	padding:0 15px;
	line-height:16pt;
}
#subpage span.title {
	color: #bf0000;
}

a.mailto {
	color: #bf0000;
	text-decoration:none;
}
a.mailto:hover {
	color: maroon;
	text-decoration:underline;
}


#sendmail {
}

#sendmail input, textarea {
	background-color:#FFF !important;
	border:1px solid #AAA;
}

#sendmail .sendContact {
	padding: 1px;
	background-color:#faf2dc !important;
	color:maroon;
	border:2px solid #e1d5b6;
	font-size:10pt;
	font-weight:bold;
	width:100px;
	height:30px;
}

#contact_name, #contact_address {
	width:225px;
}
#contact_subject {
	width:350px;
}
#contact_message {
	width:415px;
	height:125px;
}
