
/* container for slides */
.images {
/*	background: #fff url(../img/h300.png) repeat-x; */
	border: 1px solid #ccc;
	position: relative;	
	height: 330px;
	width: 860px;
	float: left;	
	margin-top: 2px;
	cursor:pointer;
	
	/* CSS3 tweaks for modern browsers */
	border-radius: 5px;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	-moz-box-shadow: 1px 1px 6px #888;
	-webkit-box-shadow: 1px 1px 6px #888;
}

/* single slide */
.images div.slide {
	display:none;
	position:absolute;
	top:0;
	left:0;		
/*	margin:7px;
	padding:15px; */
	height:256px;
	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) */
.slidetabs {
	clear:both;
	padding: 3px 0 0 0;
	display: block !important;
	z-index: 1000;
    position: relative;
    top: -34px;
	left: 5px;
}

/* single tab */
.slidetabs a {
	height:24px;
	line-height:24px;
	border:1px solid #888;
	background:#222;
	color:#fff;
	padding:0 7px;
	text-decoration:none;
	float: left;
	margin: 2px;
	display: block;
	font-size: 14px;
}

/* mouseover state */
.slidetabs a:hover {
	background:#ddd;
	color:#111;
}

/* active state (current page state) */
.slidetabs a.current {
	background:#ddd;
	color:#111;
} 	


/* prev and next buttons */
.forward, .backward {
	float:left;
	margin-top:140px;
	background:#fff url(../img/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; }