/* container for slides */
.slides {
	border:1px solid #BCBCBC;
	position:relative;	
	height:300px;
	width:660px;
	float:left;	
	margin:14px;
	cursor:pointer;
	background-color: #FFFFFF;
	
	-moz-border-radius:7px;
	-webkit-border-radius:7px;
	-moz-box-shadow:0 0 25px #666;
	-webkit-box-shadow:0 0 25px #666;	
}

/* single slide */
.slides div {
	display:none;
	position:absolute;
	top:0;
	left:0;		
	margin:0px;
	padding:7px;
	height:286px;
	width:646px;
	font-size:0.85em;
}

/* single slide img */
.slides img {
	float:left;
	margin:0px 10px 0px 10px;
}

/* header */
.slides h3 {
	width:130px;
	margin:0px;
	font-size:1.34em;
}

/* text */
.slides p {
	width:130px;
	font-size:1em;
}

/* tabs (those little circles below slides) */
.slidetabs {
	clear:both;
	margin-left:380px;
}

.slidetabs li {
	float:left;
	list-style:none;		
}

/* single tab */
.slidetabs a {
	width:8px;
	height:8px;
	margin:3px;
	background: url(syms/navigator.png) no-repeat 0px 0px;
	display:block;
	font-size:0.5em;		
}

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

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


/* prev and next buttons */
.forward, .backward {
	float:left;
	margin-top:155px;
	display:block;
	width:15px;
	height:15px;
	cursor:pointer;
	font-size:0.5em;
	text-indent:-9999em;	
}

/* here control distance to left */
.backward {
	background: url(syms/icon_small_arrow_lk.png) no-repeat 0px 0px;
	margin-left:0px;	
}

.forward {
	background: url(syms/icon_small_arrow_re.png) no-repeat 0px 0px;	
}

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

