@charset "utf-8";
/* CSS Document */
/* 
    root element for the scrollable. 
    when scrolling occurs this element stays still. 
*/ 
div.scrollable { 
 
    /* required settings */ 
    position:relative; 
    overflow:hidden; 
    width: 538px; 
    height:298px; 
	border:2px  solid #c1c1c1; 
	/*color:#c1c1c1;*/
	
	padding:0px 0px;
	margin-right: 0px;
	margin:0px;
} 
 
/* 
    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; */
    width:50000em;	
    position:relative;
	padding:0px 0px;
	margin-right: 0px;
} 
 
/* 
    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 { 
    float:left; 
	
	/* custom decoration */
	text-align:center;
	width:540px;
	height:300px; 
	
	padding:0px 0px;
	margin-right: 0px;	
	
	
	/*
	font-size:30px;
	
	font-family: 'bitstream vera sans';
	
	border:1px outset #ccc;
	background-color: #ddd;
	margin-right: 0px;	
	-moz-border-radius:5px;
	*/

} 

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

/*

.nextbutton { 
    width:50;
	height:30px;
	z-index:10;
    position:absolute;
	top:40%;
	
	
	border:1px outset #ccc;
	background-color: #ddd;
	margin-right: 0px;	
	-moz-border-radius:5px;
} 
*/


/* prev, next, prevPage and nextPage buttons */
a.prev, a.next {
	display:block;
	width:27px;
	height:28px;
	background:url(../img_index/imgscroller/prev.png) no-repeat;	
	cursor:pointer;	
	position:absolute;	
	top:50%;
	z-index:10;

	margin-left:2px;
	
}

/* next button uses another background image */
a.next {
	background:url(../img_index/imgscroller/next.png) no-repeat;
	z-index:10;
	margin-left:513px;
}

a.zoom {
	display:block;
	/*background:url(../img_index/imgscroller/zoom.png) no-repeat; */
	z-index:10;
	/*width:70px;
	height:30px;*/
	

	cursor:pointer;	
	position:absolute;	
	top:250px;
	left:30px;
}

a.back {
	display:block;
	background:url(../img_index/imgscroller/back_stiga.png) no-repeat;
	z-index:100;
	width:50px;
	height:20px;
	position:absolute;

	/*
	margin-left:30px;
	top:180px;
	cursor:pointer;	
	*/
	
}

#back {
	display:block;
	background:url(../img_index/imgscroller/back_stiga.png) no-repeat;
	/*z-index:100;*/
	width:50px;
	height:20px;
	/*
	margin-left:30px;
	top:180px;
	cursor:pointer;	
	*/
	
	position:absolute;
	background-color:#CCCCCC;
}



/* disabled navigational button */

#imagecontent {
	position:relative;
	height:300px;
	
	 /*background:url(../img_index/center_details_bg.jpg) no-repeat; */
	
}

.imgItem {
	/*
	border:2px  solid: #009900;
	background-color:#00FFFF;
	*/
	height:300px;
	
}

#imagecontent a.disabled {
	visibility:hidden;		
}


.productBg {
	position:relative;	
	 background:url(../img_index/center_details_bg.jpg) no-repeat; 
	
}


