/* container for slides */
.images {
	position:relative;
	height:320px;	
	width:900px;
	float:left;	
	clear:both;
	/* CSS3 tweaks for modern browsers */
}

/* single slide */
.images div {
	display:none;
	position:absolute;
	top:0;
	left:0;		
	margin:7px;
	padding:15px 30px 15px 15px;
	height:256px;
	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 {
	background-image:url(../images/pattern.jpg);
	background-repeat:repeat;
	background-position:left bottom;
	height:18px;
	width:980px;
	float:left;
	margin-top:12px;
}

/* single tab */
.tabs a {
	width:190px;
	height:13px;
	float:left;
	margin:3px;
	display:block;
	font-size:1px;
	
}

/* mouseover state */
.tabs a:hover {
	background-position:0 -8px;      
	width:190px;
}

/* active state (current page state) */
.tabs a.current {
	width:190px;
	background-image:url(../images/slider.jpg);
	background-position:60px top;
	background-repeat:no-repeat;  
} 	


/* prev and next buttons */
.backward {
	float:left;
	background:#fff url(../images/left-btn.jpg) no-repeat;
	width:30px;
	cursor:pointer;
	font-size:1px;
}
.forward {
	float:left;
	background:#fff url(../images/right-btn.jpg) no-repeat;
	width:30px;
	cursor:pointer;
	font-size:1px;
}

/* 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;		
}
