@charset "UTF-8";
/* CSS Document */

/* container for slides */
.slideContainer {}
.images {
	position:relative;	
	height:210px;
	width:100%;
	float:left;
	cursor:pointer;
	
}

/* single slide */
.images .slideHolder {
	display:none;
	position:absolute;
	top:0;
	left:0;		
	height:230px;
}


/* tabs (those little circles below slides) */
.slidetabs {
	clear:both;
	height:20px;
	text-align:center;
	margin:auto;	
	overflow:visible;
	margin-left:300px;
	margin-top:10px;
}

/* single tab */
.slidetabs a {
	width:8px;
	height:8px;
	float:left;
	margin:3px;
	background:url(../images/navigator.gif) 0 0 no-repeat;
	display:block;
}

/* mouseover state */
.slidetabs a:hover {
	background-position:0 -8px;      
}

/* active state (current page state) */
.slidetabs a.current {
	background-position:0 -16px;     
} 	


/* prev and next buttons */
.forward, .backward {
	display:none;
	/*z-index:999;
	height:30px;
	width:40px;
	display:block;
	cursor:pointer;
	position:absolute;
	background-color:#CCC;*/
}
/*.forward {right:0px;}
.backward {left:0px;} */
/* next 
.forward 		{ background-position: 0 -30px; clear:right; }
.forward:hover  { background-position:-30px -30px; }
.forward:active { background-position:-60px -30px; } 

*/
/* prev 
.backward:hover  		{ background-position:-30px 0; }
.backward:active  	{ background-position:-60px 0; }
*/
/* disabled navigational button. is not needed when tabs are configured with rotate: true */
.disabled {
	visibility:hidden !important;		
}
