/* container for slides */
.images {
	position:relative;	
	height: 240px;	
	width: 100%;
	float:left;	
	cursor:pointer;
}

/* single slide */
.images div {display:none;	position:absolute;	top: 0;	left: 0; /*margin: 7px;	padding: 15px 30px 15px 15px; height: 240px;*/
	font-size:12px; }

/* header */
.images h3 {font-size:22px;	font-weight:normal;	margin:0 0 20px 0;	color:#456;}

/* tabs (those little circles below slides) */
.tabs { clear: both; margin-left: 330px; padding-top: 10px; }

/* single tab */
.tabs a { width:8px; height:8px; float:left; margin:3px; padding: 0; background:url(navigator.png) 0 0 no-repeat; display:block; font-size:1px;	}

/* mouseover state */
.tabs a:hover {	background-position:0 -8px; }

/* active state (current page state) */
.tabs a.current { background-position:0 -16px; } 	


/* 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; }

/* Tabs*/
/**********/
/* root element for tabs  */
ul.css-tabs {  
	margin:0 !important; 
	padding:0;
	height:30px;
	border-bottom:1px solid #666;	 	
}

/* single tab */
ul.css-tabs li {  
	float:left;	 
	padding:0; 
	margin:0;  
	list-style:none;	
}

/* link inside the tab. uses a background image */
ul.css-tabs a { 
	float:left;
	font-size:13px;
	display:block;
	padding:5px 30px;	
	text-decoration:none;
	border:1px solid #666;	
	border-bottom:0px;
	height:18px;
	margin-right:2px;
	-moz-border-radius-topleft: 4px;
	-moz-border-radius-topright:4px;
	/*position:relative;*/
	top:1px;	
	background: none;
	background-color:#89a;         
    color:#fff !important; 
}

ul.css-tabs a:hover { background-color:#678; color:#333; }
	
/* selected tab */
ul.css-tabs a.current {	color:#000;	cursor:default; background-color:#4F5C6A;   border-bottom:1px solid #4F5C6A; }

	
/* tab pane */
div.css-panes div {
	display:none;
	/*border:1px solid #666;*/
	border-width:0 1px 1px 1px;
	min-height:200px;
	padding:15px 20px;
	/*background-color:#ddd;*/	
}



/* tabs */
#tab { margin-top: 20px; }

