
/* container for slides */
.images {
	border:1px solid #ccc;
	position:relative;	
	height:425px;
	width:640px;
	float:left;	
	margin:0px;
	cursor:pointer;
	
}

/* single slide */
.images div {
	display:none;
	position:absolute;
	top:0;
	left:0;		
	height:425px;
	font-size:12px;
	z-index: 0;
}

/* header */
.images h3 {
	font-size:22px;
	font-weight:normal;
	margin:0 0 20px 0;
	color:#456;
}

/* tabs (those little circles below slides) */
.slidetabs {
	clear:both;
	position: absolute;
	background-color:#f4f3ef;
	width: 345px;
	height: 24px;
	padding: 6px 0 0 295px;
	left: 36px;
	top: 431px;
}

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

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

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


/* prev and next buttons */
.backward {
	position: absolute;
	top:431px;
	left: 36px;
	background:#f4f3ef url(../files/hori_large.png) no-repeat;
	display:block;
	width:30px;
	height:30px;
	cursor:pointer;
	font-size:1px;
	text-indent:-9999em;	
	z-index: 10000;	
}
.forward {
	position: absolute;
	top:431px;
	left: 646px;
	background:#f4f3ef url(../files/hori_large.png) no-repeat;
	display:block;
	width:30px;
	height:30px;
	cursor:pointer;
	font-size:1px;
	text-indent:-9999em;	
	z-index: 10000;	
}


/* 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;		
}
