@charset "utf-8";
/* jquerytools scrollable */

.scrollable {
	position: relative;	
	overflow: hidden;
	width: 920px;
	height: 318px;
}
.scrollable .items {
	width: 20000em;
	position: absolute;
	clear: both;
}
.items .slide {
	float: left;
	width: 920px;
/*	height: 270px; */
	height:318px;
	
	font-size: 17px;
	position: relative;
/*	padding: 48px 0 0; */
}
.scrollable .active {
	background-color: #CCC;
	position: relative;
	cursor: default;
}

/* prev, next, prevPage and nextPage buttons */
a.browse {
	background:red;
	display:block;
	width:30px;
	height:30px;
	position:absolute;
	z-index:99;
	top:50%;
	cursor:pointer;
	font-size:1px;
}

a.right			{right:0}
a.right:hover	{}
a.right:active 	{} 

a.left			{left:0} 
a.left:hover  	{}
a.left:active  	{}

a.disabled {visibility:hidden !important;} 	

.navi {
	display:block;
	position:absolute;
	z-index:999;
	bottom:0;
	left:0;
}


/* items inside navigator */
.navi a {
	width:12px;
	height:12px;
	float:left;
	margin:3px;
	background:grey;
	display:block;
	font-size:1px;
}

/* mouseover state */
.navi a:hover {
	background-color:#CCCCCC;
}

/* active state (current page state) */
.navi a.active {
	background-color:red;     
}


/* OVERRIDES */
a.browse,
.navi {
	display: none;
}