﻿/* container for slides */
.images {
	position:relative;	
	display:block;
	height:244px;
	
}

/* single slide */
.images div {
	display:none;
	position:absolute;
	top:0;
	left:0;
	width:100%;
	
}


/* tabs (those little circles below slides) */
.tabs {
	clear:both;
	display:none;
}

/* single tab */
.tabs a {
}

/* mouseover state */
.tabs a:hover {
}

/* active state (current page state) */
.tabs a.current {
} 	


/* prev and next buttons */
.forward, .backward {
}

/* next */
.forward {}
.forward:hover {}
.forward:active {}


/* prev */
.backward:hover {}
.backward:active {}

/* disabled navigational button. is not needed when tabs are configured with rotate: true */
.disabled {
	visibility:hidden !important;		
}

