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

/* Gallery styles */

#gallery {
	position:relative;
	/* CSS3 Box Shadow */
	-moz-box-shadow:0 0 18px #FFF;
	-webkit-box-shadow:0 0 18px #FFF;
	box-shadow:0 0 18px #FFF;
	border:5px solid #000;
	background:url(img/panel.jpg) repeat-x bottom center #ffffff;
	/* The width of the gallery */
	width:800px;
	overflow:hidden;
	margin:0 auto 50px auto;
}
#slides {
	/* This is the slide area */
	height:640px;
	width:800px;
	font-size:80%;
	background:#E7DBBE;/* jQuery changes the width later on to the sum of the widths of all the slides. */
}
#slides .slide {
	overflow:hidden;
	height:640px;
	width:800px;
}
#slides .slide img {
	float: left;
	margin:0 20px 0 0;
	border-right:3px solid #000;
	/* jQuery changes the width later on to the sum of the widths of all the slides. */
	overflow:hidden;
}
#slides .slide p {
	font-size:110%;
	padding:10px 10px 10px 80px;
	text-indent:-11px;
	letter-spacing:0.1em;
}
.slide {
	float:left;
}
#slides .slide h2 {
	font-size:130%;
	clear:light;
	background:#000;
	color: #EFEFEF;
	padding:5px;
	margin:0 0 20px 0;
}
#menu {
	position:absolute;
	top:0px;
	left:10px;/* This is the container for the thumbnails */
}
#menu ul {
	margin:10px 0 0;
	padding:0px;
}
#menu li {
	/* Every thumbnail is a li element */
	float:left;
	list-style:none;
	background:#000;
	color:#FFF;
	font-weight:bold;
	font-size:12px;
	width:22px;
	height:22px;	
	margin:4px;
	padding:3px;
}
#menu li a {
	display:block;
	background:url(img/divider.png) no-repeat right;
	color:#FFF;
	text-decoration:none;
	text-align:center;
	width:22px;
	height:22px;
}
#menu li a:hover {
	background: #888;
}

#gallery blockquote{
	font-size:90%;
	padding-right:10px;
	margin:10px;
	color: #960;
}
#gallery blockquote hr{
	margin-bottom:15px;
	border: dotted thin #960;
}

#slides .slide blockquote p {
	padding:2px 2px 2px 2px;
	margin-left:8px;
	letter-spacing:0.1em;
}