
/*
  root element for the scrollable.
  when scrolling occurs this element stays still.
  */
  
.scrollable {

    /* required settings */
 position:relative;
   overflow:hidden;
  width: 680px ;/*wBase*/
    height: 120px ;/*hBase*/
}

/*
   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;
}

.items > div {
    float:left;
    width: 680px ;/*base*/
}

/* single scrollable item */
.scrollable img {
}

/* active item */
.scrollable .active {
    border:2px solid #000;
    position:relative;
    cursor:default;
}


/* this makes it possible to add next button beside scrollable */
.scrollable {
}

/* prev, next, prevPage and nextPage buttons */
a.browse {
}



/* disabled navigational button */
a.disabled {
    visibility:hidden !important;
}



/* active item */
.next .browse .right {
}
#scroller_btn_left{
left:0px;}
#scroller_btn_right {
right:0px;}

#scroller_btn_left span{
background:url(../img/arrow_10px.png) no-repeat left center;
}

#scroller_btn_right span{
background:url(../img/arrow_10px.png) no-repeat right center;
}

a.browse span{
width:10px;
height:10px;
display:block;
text-indent:-2em;
overflow:hidden;
}


/* prev, next, prevPage and nextPage buttons */
a.browse {
	background:#fbe1e4;
	display:block;
padding:10px 10px;
width:10px;
	cursor:pointer;
	font-size:1px;
	position:absolute;
	bottom:90px;
}
a.browse:hover{
	background:#eb6877;
}
/* right */
a.right 			{ clear:right; margin-right: 0px;}


/* left */
a.left				{ margin-left: 0px; } 
a.left:hover  		{ }



/* disabled navigational button */
a.disabled {
	visibility:hidden !important;		
} 	


a.browse {
border-radius:5px;}
