
/* container for slides */
.images {
	position:relative;	
	height:100px;
	width:470px;
	float:left;	
	cursor:default;
}

/* single slide */
.images div {
	display:none;
	position:absolute;
	top:0;
	left:0;		
	height:100px;
	font-size:12px;
	color:#b4c3d3;
	padding-left:20px;
	padding-right:20px;
	font-size:0.9em;
}

/* header */
.images h3 {
	font-size:18px;
	font-weight:bold;
	margin:0px 0 10px 0;
}

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

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

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

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


/* prev and next buttons */
.forward {
	float:left;
	margin:0;
	margin-top:50px;
	background:url(../images/hori_large.png) no-repeat;
	display:block;
	width:20px;
	height:20px;
	cursor:pointer;
	font-size:1px;
	text-indent:-9999em;	
}

.backward {
	float:left;
	margin-left:40px;
	margin-top:50px;
	background:url(../images/hori_large.png) no-repeat;
	display:block;
	width:20px;
	height:20px;
	cursor:pointer;
	font-size:1px;
	text-indent:-9999em;	
}

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


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

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

