@charset "UTF-8";
/* CSS Document */

/* container for slides */
.images {
	background-color:#ee8031;
	position:relative;	
	height:322px;
	border:3px solid #ee8031;
	width:412px;
	float:left;	
	cursor:pointer;
	z-index:10;
	/* CSS3 tweaks for modern browsers */
	-moz-box-shadow:0 0 25px #333;
	-webkit-box-shadow:0 0 25px #333;	
}

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


h3	{
	margin:5px 0;	
	outline:none;
}
/* tabs (those little circles below slides) */
.tabs {
	clear:both;
	margin-left:330px;
}

/* single tab */
.tabs 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;		
}

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

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

.tabs a, .forward, .backward	{
	text-decoration:none;
	border:none;
}
/* prev and next buttons */
.forward, .backward {
	position:relative;
	float:left;
	margin-top:290px;
	display:block;
	width:29px;
	height:28px;
	cursor:pointer;	
}

/* next */
.forward { 
	right:45px;
	z-index:50;
	background-image:url(images/plus.png);
	background-position: 0 0; 
}
.forward:hover 	{ 
	background-position: 0 -27px; 
	border:none;
}

/* prev */
.backward 	{ 
	background-image:url(images/minus.png);
	background-position: 0 0; 
	left:40px;
	z-index:50;
}
.backward:hover  { 
	background-position: 0 -27px; 
	border:none;
}
.none	{
	background-image:none;	
}
/* disabled navigational button. is not needed when tabs are configured with rotate: true */
.disabled {
	visibility:hidden !important;		
}

