
/* container for slides */
.images {
	background:#fff url(/img/global/gradient/h300.png) repeat-x;
	position:relative;	
	height:367px;
	width:876px;
	float:left;	
	cursor:pointer;
	
	/* CSS3 tweaks for modern browsers */
}

/* single slide */
.images div {
	display:none;
	position:absolute;
	top:0;
	left:0;		
	margin:0px;
	/*padding:15px 30px 15px 15px;*/
	height:367px;
	font-size:12px;
}



/* tabs (those little circles below slides) */
.slidetabs {
	clear:both;
	z-index:300px;
	background:#00F;
}

/* single tab */
.slidetabs a {
	width:8px;
	height:8px;
	float:left;
	margin:3px;
	display:block;
	font-size:1px;		
}

/* mouseover state */
.slidetabs a:hover {
	background-position:0 -8px;      
}

/* active state (current page state) */
.slidetabs a.current {
	background-position:0 -16px;     
} 	


/* prev and next buttons */
.forward {
	background:url(forword-on.png) no-repeat;
	display:block;
	width:30px;
	height:365px;
	cursor:pointer;
	font-size:10px;
	position:absolute;
	left:843px;
	z-index:300;
}
.backward {
	background:url(backword-on.png) no-repeat;
	display:block;
	width:30px;
	height:365px;
	cursor:pointer;
	font-size:10px;
	position:absolute;
	top:0px;
	left:0px;
	z-index:300;
}

/* next */
.forward 				{ background:url(forword-on.png) no-repeat;}
.forward:hover 		{ background:url(forword.png) no-repeat;}
.forward:active 	 	{ background:url(forword-on.png) no-repeat;} 


/* prev */
.backward:hover  		{ background:url(backword.png) no-repeat;}
.backward:active  	{ background:url(backword-on.png) no-repeat; }

/* disabled navigational button. is not needed when tabs are configured with rotate: true */
.disabled {
	visibility:hidden !important;		
}

