/* 
	root element for the scrollable. 
	when scrolling occurs this element stays still. 
*/
div.our-values {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 880px;	
	height:245px;
	margin:0 auto;
	padding-top : 60px;
}


div.our-values div.items {	
	/* this cannot be too large */
	width:20000em;	
	position:relative;
	clear:both;	
	overflow:hidden;
	bottom :0;
}

div.our-values div.items div.unit{
	width:900px;
	float:left;
}
/*********** navigator ***********/


/* position and dimensions of the navigator */
div#values-nav, .navi{

	margin : 0 auto;
	text-align:center;
	width  : 80px;
}


/* items inside navigator */
div#values-nav a, .navi a{
	width:8px;
	height:8px;
	float:left;
	margin:3px;
	background:url(../scrollable/arrow/navigator.png) 0 0 no-repeat;
	display:inline;
	font-size:1px;
}

/* mouseover state */
div#values-nav a:hover, .navi a:hover{
	background-position:0 -8px;      
}

/* active state (current page state) */
div#values-nav a.active, .navi a.active{
	background-position:0 -16px;     
}