
/* container for slides */
.images {
	position:relative;	
	height:254px;
	cursor:pointer;
}

/* single slide */
.images div.img_container {
	display:none;
	position:absolute;
	top:0;
	left:0;		
	height:254px;
	overflow: hidden;
}

.images div.img_container div.border {
	position: absolute;
	left: 2px;
	top: 2px;
	width: 194px;
	height: 248px;
	border: 1px solid #FFFFFF;
}

.images div img {
	width: 200px;
}

/* tabs (those little circles below slides) */
.tabs {
	clear:both;
	margin-left:330px;
	position: absolute;
	top: -10000px;
}

/* single tab */
.tabs a {
	width:8px;
	height:8px;
	float:left;
	margin:3px;
	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, .backward {
	cursor:pointer;
}






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

