
/* container for slides */
.images {
	position:relative;	
	height:310px;
	color:#000;
	width:685px;
	float:left;	
	
	/* CSS3 tweaks for modern browsers 
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	-moz-box-shadow:0 0 25px #666;
	-webkit-box-shadow:0 0 25px #666;	
	*/
}

/* single slide */
.pane_in {
	display:none;
	position:absolute;
	top:0;
	left:0px;		
	height:310px;
	width:685px;
}

.img_container_pane {
	float:left;
	width:180px;
	height:685px;
	margin-right:10px;
}


.txt_container_pane {
	padding-top:20px;
	text-align:center;
	float:left;
	width:370px;
	height:250px;
	margin-right:10px;
	font-size:12px;
	font-family:tahoma;
}

.txt_container_pane h1 {
	margin:0 0 5px 0;
	font-size:16px;
	font-weight:normal;
	color:#1B5B41;
}


/* prev and next buttons */
.forward, .backward {
	position:relative;
	top:100px;
	margin:0;
	background:#ccc;
	float:left;
	display:block;
	width:30px;
	height:30px;
	cursor:pointer;
	font-size:1px;
	text-indent:-9999em;
	display:none;
}

.forward { background:url(../img/next.png) no-repeat 0 0; top:-220px; left:530px;}
.backward { background:url(../img/prev.png) no-repeat 0 0;}


/* disabled navigational button. is not needed when tabs are configured with rotate: true */
.disabled {
	visibility:hidden !important;		
}

.tabs {
	display:none;
}


/* single tab */
.tabs a {
	font-family:tahoma;
	color:#C31E15;
	margin:0 5px;
	font-size:13px;
	padding:0 2px 15px 2px;
	display:block;
	float:left;
}

/* mouseover state */
.tabs a:hover {
	color:#144233;     
}

/* active state (current page state) */
.tabs a.current {
	background:url(../gfx/back_current_overlay.png) no-repeat bottom center;
	color:#144233;
} 	

