
/* container for slides */
#banners {
	position:relative;	
	height:225px;
	
	width:300px;
	float:left;	
	cursor:pointer;	
}

/* single slide */
#banners div {
	display:none;
	position:absolute;
	top:0;
	left:0;		
	height:225px;
	font-size:12px;
}

/* tabs (those little circles below slides) */
.slidetabs {
	float:left !important;
	width:80px !important;
	margin-right:0 !important;
	margin-top:3px;
}

/* single tab */
.slidetabs a {
	width:8px;
	height:8px;
	float:left;
	margin:3px;
	background:url(/images/home/navigator.png) 0 0 no-repeat;
	display:block;
	font-size:1px;		
}

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

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

.buttons {
	float:right !important;
	width:68px !important;
	margin:0 !important;
}
/* prev and next buttons */
.backward, .forward {
	float:right;
	background:url(/images/home/hori.png) no-repeat;
	display:block;
	width:20px;
	height:20px;
	cursor:pointer;
	font-size:1px;
	text-indent:-9999em;	
}

/* next */
.forward 				{ background-position: 0 -20px; clear:left; }
.forward:hover 		{ background-position:-20px -20px; }
.forward:active 	 	{ background-position:-40px -20px; } 


/* prev */
.backward:hover  		{ background-position:-20px 0; }
.backward:active  	{ background-position:-40px 0; }

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