/* container for slides */
.images {
	background:transparent;
	border:2px solid #fff;
	position:relative;	
	height:202px;
	width:482px;
	float:left;
	margin:10px 8px 5px 12px;
	cursor:pointer;
	
	/* CSS3 tweaks for modern browsers */
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	-moz-box-shadow:0 0 15px #666;
	-webkit-box-shadow:0 0 15px #666;
}

/* single slide */
.images div {
	display:none;
	position:absolute;
	height:210px;
	width:490px;
	margin:0px 0px 0px 0px;
	padding:1px 1px 1px 1px;
}

.images span {
	position:absolute;
	margin:150px 0px 0px 0px;
        height:50px;
	width:480px;
	z-index: 0;
	background-image: url('images/interface/blackback.png');
	background-repeat:repeat-y;
}

/* main image */
.images img {
	position:absolute;
	margin:0px;
	padding:0px;
	z-index: -1;
}

/* header */
.images h3 {
	font-size:16px;
	font-weight:normal;
	margin:5px 5px 5px 5px;
	color:#fff;
}

/* caption text */
.images p {
	font-size:12px;
	font-weight:bold;
	margin:5px 0px 0px 0px;
	padding:0px 10px 0px 10px;
	color:#fff;
	vertical-align: middle;
}
.images p a {
	color: #EF7B08;
}

/* tabs (those little circles below slides) */
.tabs {

	margin:2px 0px;
	z-index:10;
}

/* single tab */
.tabs a {
	width:8px;
	height:8px;
	float:left;
	margin:3px;
	background:url(images/interface/navigator.png) 0 0 no-repeat;
	display:block;
	font-size:1px;
}

/* mouseover state */
.tabs a:hover {
	background-position:0 -8px;      
}

/* active state (current page state) */
.tabs a.current {
	background-position:0 -16px;     
} 	


/* prev and next buttons */
.forward {
	float:left;
	margin:-3px 0px 0px 0px;
	background:url(images/interface/right.png) no-repeat;
	display:block;
	width:18px;
	height:18px;
	cursor:pointer;
	font-size:1px;
	text-indent:-9999em;
	z-index:10;
}
.backward {
	float:left;
	margin:0px 0px 0px 10px;
	background:url(images/interface/left.png) no-repeat;
	display:block;
	width:18px;
	height:18px;
	cursor:pointer;
	font-size:1px;
	text-indent:-9999em;
	z-index:10;
}

/* next */
.forward 				{ background-position: 0 -18px; }
.forward:hover 		{ background-position:0px 0; }
.forward:active 	 	{ background-position:0px 0; } 


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

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