/* container for slides */
.images {
	position:relative;	
	height:320px;
	width:705px;
	margin:0px;
	/* cursor:pointer; */

}

/* single slide */
.images div {
	display:none;
	position:absolute;
	top:0;
	left:0;		
	margin:0px;
	padding:0px;
	height:320px;
	font-size:12px;
}



/* tabs (those little circles below slides) */
.tabs {
	clear:both;
	/* margin-left:330px; */
	position:absolute;
	top:0;
	right:0;
	margin:290px 0 0 0;
}

/* single tab */
/* .tabs a {
	width:8px;
	height:8px;
	float:left;
	margin:3px;
	background:url(http://flowplayer.org/tools/img/scrollable/arrow/navigator.png) 0 0 no-repeat;
	display:block;
	font-size:1px;		
} */
.tabs a {
	width:25px;
	height:25px;
	float:left;
	margin:2px;
	display:block;
	font-size:1px;		
}
	.tabs a.item1 {
		background:url(../images/slider/tabs-a-item1.png) no-repeat 0 0;
	}
	.tabs a.item2 {
		background:url(../images/slider/tabs-a-item2.png) no-repeat 0 0;
	}
	.tabs a.item3 {
		background:url(../images/slider/tabs-a-item3.png) no-repeat 0 0;
	}

/* mouseover state */
.tabs a:hover {
	background-position:0 -25px;      
}

/* active state (current page state) */
.tabs a.current {
	background-position:0 -25px;     
} 	


/* prev and next buttons */
.forward, .backward {
	float:left;
	margin-top:140px;
	background:#fff url(http://flowplayer.org/tools/img/scrollable/arrow/hori_large.png) no-repeat;
	display:block;
	width:30px;
	height:30px;
	cursor:pointer;
	font-size:1px;
	text-indent:-9999em;	
}

/* 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;		
}

