/* container for slides */
.images {
	position:relative;	
	height:300px;
	width:400px;
	float:left;	
	cursor:pointer;
	margin:0 0 8px 5px;

}

/* single slide */
.images div {
	display:none;
	position:absolute;
	top:0;
	left:0;		
	margin:7px;
	padding:15px 30px 15px 15px;
	height:275px;
	font-size:12px;
}

/* tabs (those little circles below slides) */
.tabs {
	clear:both;
	margin-left:21px;
}

/* single tab */
.tabs a {
	width:23px;
	height:14px;
	float:left;
	margin:3px 0px;
	background:url(../images/img-slideshow-indicator.gif) 0 0 no-repeat;
	display:block;
	font-size:1px;	
	outline:none;
}

/* mouseover state */
.tabs a:hover {
	background-position:0 -14px;      
}

/* active state (current page state) */
.tabs a.current {
	background-position:0 -28px;     
} 	

/* disabled navigational button. is not needed when tabs are configured with rotate: true */
.disabled {
	visibility:hidden !important;		
}

