/* container for slides */
.images {
	height:300px;
	width:960px;
	float:left;
	cursor:pointer;
	/* CSS3 tweaks for modern browsers */
	-moz-border-radius:;
	-webkit-border-radius:;
	-moz-box-shadow:;
	-webkit-box-shadow:;
	background-color: #d4d0c5;
	position: relative;
}

/* single slide */
.images div {
	display:none;
	position:absolute;
	top:0;
	left:0;
	height:300px;
	width: 960px;
}
.tabs /* tabs (those little circles below slides) */
 {
	float: left;
}
.tabs li {
	float: left;
}

.tabs ul {
	list-style-type: none;
}


/* prev and next buttons */
.forward, .backward {
	float:left;
	margin-top:140px;
	display:block;
	width:30px;
	height:30px;
	cursor:pointer;
	font-size:1px;
	text-indent:-9999em;
	background-color: #CC3366;
	background-image: url(/tools/img/scrollable/arrow/hori_large.png);
	background-repeat: no-repeat;
}

/* 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;		
}
.one {
}

