/* root element for scrollable */
div.scrollable {  
	
	/* required settings */
	position:relative;
	overflow:hidden;	

	/* vertical scrollers have typically larger height than width */	
	height: 285px;	width: 370px; 
	padding: 0 0 0 0;  margin: 0 0 20px 20px;
	background:#7baebb;}

/* root element for scrollable items */
div.scrollable div.items {	
	position:absolute; 	
	/* this time we have very large space for height */	
	height:20000em;	
	margin: 0px;
}

/* override item style defined in scrollable.css */
div.scrollable div.items div {
	float:none;
}

/* single scrollable item */
div.scrollable div.items div {
	float:left;
	width:350px; height: 75px;
	padding: 5px; margin:5px;
	color:#333;	
	font-size:12px;
	text-align:justify;
	background: url(../img/bg_drill.png) no-repeat 0 0;
}


/* mouseover state */
div.scrollable div.items div:hover {	
	/*background: #fff url(../img/bg_dr_super_light.png) no-repeat 0 0;*/
}

/* clicked state */
div.scrollable div.items div:active {	
	/*background: #fff url(../img/bg_dr_dark.png) no-repeat 0 0;*/
}

/* active item */
div.scrollable div.items div.active {	
	/*background: #fff url(../img/bg_dr_dark.png) no-repeat 0 0;*/
	cursor:default;
}
 /*-----------------------------------------------------------------------------------*/
 /* this makes it possible to add next button beside scrollable */
div.scrollable {
	float:left;	
}

/* prev, next, prevPage and nextPage buttons */
a.prev, a.next, a.prevPage, a.nextPage {
	display:block; 
	width:18px;
	height:18px;
	background:url(../img/arrow/up.png) no-repeat;
	float:left;
	margin: -180px 0 0 400px;
	cursor:pointer;
	font-size:1px;
}

/* mouseover state */
a.prev:hover, a.next:hover, a.prevPage:hover, a.nextPage:hover {
	background-position:0px -18px;
}

/* disabled navigational button */
a.disabled {
	visibility:hidden !important;		
}

/* next button uses another background image */
a.next, a.nextPage {
	background-image:url(../img/arrow/down.png);
	margin: -160px 0 0 400px;
	clear:right;	
}



/*********** navigator ***********/


/* position and dimensions of the navigator */
div.navi {	margin: -30px 0 0 200px;
			width:100px; height:20px;
			text-align:center;}


/* items inside navigator */
div.navi a {
	width:8px;
	height:8px;
	float:left;
	margin:3px;
	background:url(../img/arrow/navigator.png) 0 0 no-repeat;
	display:block;
	font-size:1px;
}

/* mouseover state */
div.navi a:hover {
	background-position:0 -8px;      
}

/* active state (current page state) */
div.navi a.active {
	background-position:0 -16px;     
} 	


 


