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

/* container for slides */
#slideshow	{
	position:relative;	
}

.images {
	position:relative;	
	height:330px;
	width:220px;
	float:right;	
	margin:20px 15px 20px 15px;
	padding:0;
	cursor:pointer;
	z-index:200;
	/* CSS3 tweaks for modern browsers */
	-moz-box-shadow:0 0 25px #333;
	-webkit-box-shadow:0 0 25px #333;	
}

/* single slide */
.images div {
	display:none;
	position:absolute;
	top:-15px;	
	left:-15px;
	margin:0;
	padding:0;
	height:330px;
	width:220px;
	1font-size:12px;
}

/* header */
.images h3 {
	font-size:22px;
	font-weight:normal;
	1margin:0 0 20px 0;
	color:#456;
}

/* tabs (those little circles below slides) */
.tabs {
	z-index:500;
	position:absolute;
	right:15px;
	top:0;
}

/* single tab */
.tabs a {
	width:10px;
	height:10px;
	float:left;
	margin:3px;
	background:url(../images/slideshow_tab.png) top left no-repeat;
	display:block;
	font-size:1px;
	border:none;
}

/* mouseover state */
.tabs a:hover {
	background-position:bottom left;      
}

/* active state (current page state) */
.tabs a.current {
	background-position:bottom left;     
} 	


/* prev and next buttons */
.forward, .backward {
	float:left;
	margin-top:140px;
	background:#fff url(../images/slideshow_tab.png) no-repeat;
	display:block;
	width:30px;
	height:30px;
	cursor:pointer;
	font-size:1px;
	text-indent:-9999em;	
}

/* next */
.forward 				{ background-position: 0 -30px; clear:right; }
.forward:hover 		{ background-position:-30px -30px; }
.forward:active 	 	{ background-position:-60px -30px; } 


/* prev */
.backward:hover  		{ background-position:-30px 0; }
.backward:active  	{ background-position:-60px 0; }

/* disabled navigational button. is not needed when tabs are configured with rotate: true */
.disabled {
	visibility:hidden !important;		
}

p.slideshow_caption {
	margin:0;
	position:relative;
	left:18px;
	bottom:30px;
	font-size:9px;
}