
/* container for slides */
.images {

	border:0;
	position:relative;	
	height:141px;
	width:744px;
	float:left;
	cursor:pointer;
	

}

/* single slide */
.images div {
	display:none;
	position:absolute;
	border:0;	
	height:141px;
	
}



/* tabs (those little circles below slides) */
.slide {
	clear:both;

}

/* single tab */
.slide a {
	width:8px;
	margin: 4px 1px 0 0;
	height:8px;
	float:right;
	
	background:url(../images/html/navigator.png) 0 0 no-repeat;
	display:block;
			
}

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

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




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

