
/* container for slides */
.images {
	position:relative;	
	height:260px;
	width:510px;
	float:left;	
	cursor:pointer;
}

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

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

/* tabs (those little circles below slides) */
.tabs {
	clear:both;
	margin-left:260px;
}

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

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

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


/* prev and next buttons */
a.forward, a.backward {
	float:left;
	margin-top:245px;
	background:#fff url(../images/tabs2/arrow.jpg) no-repeat;
	display:block;
	width:20px;
	height:30px;
	cursor:pointer;
	font-size:1px;
	text-indent:-9999em;	
}

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


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

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