
/* container for slides */
.images {
	position:relative;	
	height:440px;
	width:677px;
	float:left;
	overflow:hidden;
	/*cursor:pointer;*/
}
/*.images div img {	 CSS3 tweaks for modern browsers 
	box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3);
	-ms-box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3);
	-webkit-box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3);
}*/

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

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

/* tabs (those little circles below slides) */
.slidetabs {
	display:none;
	position:absolute;
	left:16px;
	top:412px;
}

/* single tab*/
.slidetabs a {
	width:8px;
	height:8px;
	float:left;
	margin:3px;
	background:url(tools/img/scrollable/arrow/navigator.png) 0 0 no-repeat;
	display:block;
	font-size:1px;
	z-index:251;
}


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

/* active state (current page state)*/
.slidetabs a.current {
	background-position:0 -16px;     
}
.forward, .backward {
	cursor:pointer;
}

/* 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;		
}
