/*  
    root element for the scrollable.  
    when scrolling occurs this element stays still.  
*/ 
div.scrollable { 
     
    /* required settings */ 
    position:absolute; 
	float: left;
	top : 5px;
    overflow:hidden;          
    width: 66%;     
    height:39px;     
	/* custom decorations */
	font-size: 2.8mm;
	padding:1px 1px;	
	border: 0px outset #ccc;
} 
 
/*  
    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;  
	height: 39px;	
    position:absolute;
	font-size: 2.8mm;	
	/* custom decorations */
	margin-left:6px;
	border: 1px solid blue;
	margin-top : 4px;
} 
 
/*  
    a single item. must be floated on horizontal scrolling 
    typically this element is the one that *you* will style 
    the most. 
*/ 
div.scrollable div.items div,  div.scrollable div.items a{ 
    float:left; 
	/* custom decoration */
	text-align:left;
	width: 4.5cm;
	font-size:2.8mm;
	font-family: verdana;
	/*background-color: #ddd;*/
	margin-right: 6px;	
	border: 1px solid #838066;
	cursor: default;
	-moz-border-radius:5px;
} 

.hoverTabNav{ 
    float:left; 
	/* custom decoration */
	width: 4.5cm;
	text-align:left;
	font-size:2.8mm;
	font-family: verdana;
	/*background-color: #ddd;*/
	border: 1px solid #FcFcFc;
	background-image: url(img/blanc-trans50.png);
	cursor: pointer;
	-moz-border-radius:5px;
} 


 
div.scrollable div.items a{

	border:0px outset #ccc;

} 
 
/* you may want to setup some decorations to active item */ 
div.items div.active 
{ 
    border:1px inset #ccc;         
    background-color:#eee; 
}


/* this makes it possible to add next button beside scrollable */
div.scrollable {
	float:left;	
	font-size: 2.8mm;
}

/* prev, next, prevPage and nextPage buttons */
a.prev, a.next, a.prevPage, a.nextPage {
	display:block;
	width :18px;
	height:18px;
	font-size: 2.8mm;
	background:url(img/left.png) no-repeat;
	margin:0;
	float: left;
	cursor:pointer;
}

/* mouseover state */
a.prev:hover, a.next:hover, a.prevPage:hover, a.nextPage:hover {
	font-size: 2.8mm;
	border: 0px solid blue;
	background-position:0px -3px;		
}

/* disabled navigational button */
a.disabled {
	visibility:hidden !important;		
}

/* next button uses another background image */
a.next, a.nextPage {
	background-image:url(img/right.png);
	border: 1px solid blue;
	float: none;
	clear: right;	
}



/*********** navigator ***********/


/* position and dimensions of the navigator */
div.navi {
	margin-left:69%;
	font-size: 2.8mm;
	border: 1px solid blue;
	width:100px;
	height:20px;
	top: 5px;
	clear:right;
}


/* items inside navigator */
div.navi a {
	width:8px;
	height:8px;
	float:left;
	border: 0px solid blue;
	font-size: 2.8mm;
	margin:3px;
	background:url(img/navigator.png) 0 0 no-repeat;     
	cursor:pointer;	
}

/* mouseover state */
div.navi a:hover {
	font-size: 2.8mm;
	border: 0px solid blue;
	background-position:0 -8px;      
}

/* active state (current page state) */
div.navi a.active {
	font-size: 2.8mm;
	border: 0px solid blue;
	background-position:0 -16px;     
} 	


