/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 722px;
	height: 171px;
}

/*
	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 */

.scrollable .items div {
	float:left;
	clear: right;
	margin:0px 16px 0px 0px;
	padding:0px;
	cursor: default;
	width: 353px;
	height: 171px;
}

.scrollable .items img {
    margin: 0px;
    padding: 0px;
    background: none;
	width:353px;
	height:169px;	
}	

.scrollable .items span {
	font-family: Arial;
	font-size: 12px;
    color: #666;	
}

/* rounded corners */
.scrollable .items .rounded_corners {
    z-index: 1000;
    visibility: inherit;     
    display: block;    
    position: absolute;   
	width: 353px; 
	height: 171px;
    background: url(../images/index/rounded_corner_smal.png) no-repeat left top;
}

.scrollable .items .rounded_corners_left_top {
    z-index: 1000;
    visibility: inherit;     
    display: block;    
    position: absolute;   
	width: 5px; 
	height: 5px;
    margin: 0px 0px 0px 0px;
    background: url(../images/index/rounded_corner_smal_left_top.png) left top no-repeat ;
}

.scrollable .items .rounded_corners_left_bottom {
    z-index: 1000;
    visibility: inherit;     
    display: block;    
    position: absolute;   
	width: 5px; 
	height: 5px;
    margin: 166px 0px 0px 0px;
    background: url(../images/index/rounded_corner_smal_left_bottom.png) left bottom no-repeat ;
}

.scrollable .items .rounded_corners_right_top {
    z-index: 1000;
    visibility: inherit;     
    display: block;    
    position: absolute;   
	width: 5px; 
	height: 5px;
    margin: 0px 0px 0px 348px;
    background: url(../images/index/rounded_corner_smal_right_top.png) right top no-repeat ;
}

.scrollable .items .rounded_corners_right_bottom {
    z-index: 1000;
    visibility: inherit;     
    display: block;    
    position: absolute;   
	width: 5px; 
	height: 5px;
    margin: 166px 0px 0px 348px;
    background: url(../images/index/rounded_corner_smal_right_bottom.png) right bottom no-repeat ;
}

/* 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 {
    position: absolute;
    display:block;
	width:24px;
	height:24px;
	cursor:pointer;
	font-size:1px;
    z-index: 1000000;
}

/* right */
a.right { 
	background:url(../images/index/pil_hoyre.png) no-repeat;
	margin: 75px 0px 0px 690px;
}

/* left */
a.left { 
	background:url(../images/index/pil_venstre.png) no-repeat;
	margin: 75px 0px 0px 8px;
} 

/* disabled navigational button */
.scrollable 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;      
}
