
/* container for slides */
.images {
	position:relative;	
	height:210px;
	margin-bottom:15px;
	line-height:160%;
}

/* single slide */
.images div {
	display:none;
	position:absolute;
	top:0;
	left:0;		
	margin:7px;
	padding:5px 0px 15px 0px;
	height:220px;
	font-size:12px;
}

/* header */
.images h1 {
	color:#005c4d;
	margin-bottom:8px;
	padding-bottom:5px;
	padding-top:0px;
}

/* header */
.images img {
	float:left;
	padding-top:10px;
	margin-right:15px;
}

/* tabs (those little circles below slides) */
.tabs {
	clear:both;
	float:right;
	margin-bottom:10px;
	line-height:140%;
}

/* single tab */
.tabs a {
	width:26px;
	height:22px;
	float:left;
	margin:3px;
	background:url(../img/navi.jpg) no-repeat;
	display:block;
	font-size:11px;
	color:#000;
	text-decoration:none;
	text-align:center;
	padding-top:4px;
}

/* mouseover state */
.tabs a:hover {
	background-position:0 -26px;
	color:#fff;
}

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


/* prev and next buttons */
.forward, .backward {
	float:left;
	margin-top:140px;
	background:#fff url(/tools/img/scrollable/arrow/hori_large.png) no-repeat;
	display:block;
	width:30px;
	height:30px;
	cursor:pointer;
	font-size:1px;
	text-indent:-9999em;	
}

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

