
/* container for slides */
.images {
	position:relative;	
	height: 220px;	
	width: 330px;
	float:left;	
	cursor:pointer;
	left: 121px;
	top: 19px;
	color: #1f1f1f !important;
}

/* single slide */
.images div {
	display:none;
	position:absolute;
	top:0px;
	left:0px;		
	height:220px;
	width: 330px;
	font-size:0px;
}


/* tabs (those little circles below slides) */
.tabs {
	clear:both;
	margin-left:330px;
}

/* 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 {
	position: absolute;
	top: 0px;
	display:block;
	height:220px;
	cursor:pointer;
}

/* next */
.forward 	{ left: 330px; width: 119px; background: url(../image/next.jpg); }



/* prev */
.backward  	{ left: -121px; width: 121px; background: url(../image/back.jpg); }


/* disabled navigational button. is not needed when tabs are configured with rotate: true */
.disabled {
	visibility:hidden !important;		
}

