/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 634px;
	height:160px;

	/* custom decorations
	border:1px solid #ccc;
	background:#eee; */
}

/*
	root element for scrollable items. Must be absolutely positioned
	and it should have a extremely large width to accomodate scrollable items.
	it's enough that you set the width and height for the root element and
	not for this element.
*/
.scrollable .items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
}

/* single scrollable item */

.items div {
	float:left;
	clear: right;
	margin:0px;
	padding:0px;
	cursor: default;
	width: 635px;
	height:160px;		
	-moz-border-radius:0px;
	-webkit-border-radius:0px;
}

.items img {
    margin: 0px;
    padding: 0px;
    background-color: #fff;	
}	

.items span {
	font-family: Arial;
	font-size: 12px;
    color: #666;	
}


/* active item */
.scrollable .active {
	z-index:998;
	position:relative;
}


/* this makes it possible to add next button beside scrollable */
.scrollable {
	float:left;	
}

/* prev, next, prevPage and nextPage buttons */
a.browse {
	display:block;
	width:66px;
	height:150px;
	float:left;
	cursor:pointer;
	font-size:1px;
}

/* right */
a.right { 
	background:url(../images/index/pil_hoyre.png) no-repeat;
	clear:right;
	margin-right: 0px;
}

/* left */
a.left { 
	background:url(../images/index/pil_venstre.png) no-repeat;
	margin-left: 0px; 
} 

/* disabled navigational button */
a.disabled {
	visibility:hidden !important;		
} 	

/* position and dimensions of the navigator */ 
.navi { 
    position: inherit;
    top:10px;
    padding-right: 10px;
    float: right;
    z-index: 999;
    margin:0px;     
    width:auto;     
    height:20px; 
}   
/* items inside navigator */ 
.navi a {     
    width:8px;     
    height:8px;     
    float:left;     
    margin:3px;     
    background:url(../images/index/navigator.png) 0 0 no-repeat;     
    display:block;     
    font-size:1px; 
}  

/* mouseover state */ 
.navi a:hover {     
    background-position:0 -8px;       
}  

/* active state (current page state) */ 
.navi a.active {     
    background-position:0 -16px;      
}
