﻿/* 
	root element for the scrollable. 
	when scrolling occurs this element stays still. 
*/
div.scrollable {
	
	/* required settings */
	position:relative;
	overflow:hidden;	 	
	width: 520px;	
	height:250px;	
	
	/* custom decorations */
	padding:10px 0;		
	background-color:#E9E9E9;				
}

/* 
	root element for scrollable items. Must be absolutely positioned
	and it should have a super 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;			
	/* decoration */
	margin-left:10px;
}

/* single scrollable item */
div.scrollable div.items div {
	float:left;
	
	/* custom decoration */
	vertical-align: top;	
	/*width:110px;
	height: 220px;	*/
	font-size:9pt;
	font-family: 'bitstream vera sans';	
	margin-right: 16px;
}

/* active item */
div.scrollable div.items div.active {
	border:1px inset #ccc;		
	background-color:#fff;
}
/* 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:20px;
	height: 20px;	
	float:left;	
	cursor:pointer;	
	background-color: #C9C9C9;
	Text-align:right;
}

/* 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-repeat:no-repeat;
	background-color: #C9C9C9;
	width:20px;
	height: 20px;
	text-align: left;
}


/*********** navigator ***********/


div.spacer
{
    background-color: #C9C9C9;
	width:30px;
	float:left;
	height: 20px;	
    }

div.font
{
    background-color: #C9C9C9;
	width:50px;
	float:left;
	height: 20px;
	text-align: left; 	
	font-family: Frutiger Bold,Verdana, Arial, Helvetiva, Sans-Serif;
	font-size: 8pt;
	font-weight: normal;
    }

/* position and dimensions of the navigator */
div.navi {
	/*margin-left:328px;*/
	
	height: 20px;	
	float: left;
	background-color: #C9C9C9;		
	font-family: Frutiger Bold,Verdana, Arial, Helvetiva, Sans-Serif;
	font-size: 8pt;
	font-weight: normal;
	padding-top: 3px;
	padding-left: 130px;
	padding-right: 130px;
	}


/* items inside navigator */
div.navi a 
{    
	float:left;	
	margin-right:3px;
	margin-left:3px;	
	font-family: Frutiger Bold,Verdana, Arial, Helvetiva, Sans-Serif;
	font-size: 8pt;
	font-weight: normal;
	text-align: center; 
	
}

/* mouseover state */
div.navi a:hover 
{
    background-color: #C9C9C9;
	background-position:0 -8px; 
	text-align: center;	     
}

/* active state (current page state) */
div.navi a.active {
	background-position:0 -16px;     
} 

