﻿/* 
	root element for the scrollable. 
	when scrolling occurs this element stays still. 
*/
div.scrollable-gl {
	
	/* required settings */
	position:relative;
	overflow:hidden;	 	
	width: 870px;
	height:172px;	
	float:left;
	
	/* custom decorations*/ 
	padding-top:10px;	
	border:1px solid #ccc;
	background-color:#efefef;	
	-moz-border-radius:7px;			
}

/* 
	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-gl div.items-gl{	
	/* this cannot be too large */
	width:20000em;	
	position:absolute;
	clear:both;		
	
	/* decoration */
	margin-left:9px;
}

/* single scrollable item */
div.scrollable-gl div.items-gl div{	
	float:left;
	
	/* custom decoration */
	text-align:center;
	width:156px;
	padding:3px 3px 3px 3px;
	font-size:30px;
	font-family: 'bitstream vera sans';
	border:1px solid #ccc;/*outset*/
	background-color: #ddd;
	margin-right: 8px;	
	-moz-border-radius:5px;
}

/* active item */
div.scrollable-gl div.items-gl div.active{
	border:1px inset #ccc;		
	background-color:#fff;
}
a.prev, a.next, a.prevPage, a.nextPage {
	display:block;
	width:18px;
	height:18px;
	background:url(../../images/tab/left_top.png) no-repeat;
	float:left;
	margin:80px 5px;
	cursor:pointer;
}
a.noneNextPrev{
	display:block;
	width:18px;
	height:18px;
	/*background:url(../../images/left.png) no-repeat;*/
	float:left;
	margin:80px 5px;
	cursor:pointer;
}

/* next button uses another background image */
a.next, a.nextPage {
	background-image:url(../../images/tab/right_top.png);
	clear:right;	
}
/* mouseover state */
a.prev:hover,  a.prevPage:hover  {
	background-image:url(../../images/tab/rleft_bot.png);
}
a.next:hover,a.nextPage:hover
{
	background-image:url(../../images/tab/right_bot.png);

	}
/* disabled navigational button */
a.disabled {
	visibility:hidden !important;		
}





/*********** navigator ***********/


/* position and dimensions of the navigator */
div.navi-gl {
	margin-left:440px!important;
	width:200px;
	height:20px;
}
div.noneNavi
{
	margin-left:420px;
	width:200px;
	height:5px;
}

/* items inside navigator */
div.navi-gl a {
	width:8px;
	height:8px;
	float:left;
	margin:3px;
	background:url(../../images/tab/dot_top.png) 0 0 no-repeat;     
	cursor:pointer;	
}


/* mouseover state */
div.navi-gl a:hover {
	/*background-position:0 -8px;*/
	background:url(../../images/tab/dot_mid.png) 0 0 no-repeat;     
      
}

/* active state (current page state) */
div.navi-gl a.active {
	/*background-position:0 -16px;*/
	background:url(../../images/tab/dot_bot.png) 0 0 no-repeat;     
} 	

