/* SCROLLABLE */

/* 
	root element for the scrollable. 
	when scrolling occurs this element stays still. 
*/
div.scrollable 
{	
	/* required settings */
	float: left;
	position:relative;
	overflow:hidden;	 	
	width: 960px;	
	height:500px;
	clear: both;
    /* custom decorations */
	padding:0px;	
	text-align:center;	
}

/* 
	root element for scrollable items. Must be absolutely positioned
	and it should have a large width to accomodate scrollable items.
	it's enough that you set width and height for the root element and
	not for this element.
*/

div.scrollable div.items 
{	
	/* this cannot be too large */
	width:20000em;	
	position:absolute;
	clear:both;
	margin: auto 0;
	text-align:center;
	}

/* single scrollable item */
div.scrollable div.items div
{
	float:left;
	
	/* custom decoration */
	text-align:left;
	width:930px;
	height:500px;
	padding:15px 0px 0px 0px;
	margin: 0px 390px 0px 0px;
	}

/* active item */
div.scrollable div.items div.active 
{

}


/* NAVIGATION */


/* 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, a.backslash{
	display:block;
	float:left;
	margin:5px;
	font-size:0.75em;
	font-weight:normal;
	color:black;
}

/* mouseover state */
a.prev:hover, a.prevPage:hover {
	background-color: yellow;
	cursor:pointer;
}

a.next:hover, a.nextPage:hover {
	background-color: yellow;
	cursor:pointer;
}

/* disabled navigational button */
a.disabled {
	color: grey;
}

a.disabled:hover {
	color: grey;
	background-color: white;
	cursor:auto;
}

/* next button uses another background image */
a.next, a.nextPage {
	
	clear:right;	
}



/*********** navigator ***********/


/* position and dimensions of the navigator */
div.navi {
	margin-left: 15px;
	height:12px;
	float: left;
	position: relative;
	top: 5px;
	border: solid 0.5px grey;
	padding: 1px;
}


/* items inside navigator */
div.navi a {
	width:8px;
	height:8px;
	float:left;
	margin: 2px 3px 2px 3px;
	background: grey;
	display:block;
	font-size:1px;
}

/* mouseover state */
div.navi a:hover {
	background: yellow;   
}

/* active state (current page state) */
div.navi a.active {
	 background: black;  
} 	


