/*gallery*/


div.gallery{
	width:1000px;
	float: left;
	}


div.scrollable { 
 
    /* required settings */ 
    position:relative;
    overflow:hidden;
    width: 906px; 
    height:316px;
	left:47px;
} 
 
/* 
    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 width and height for the root element and 
    not for this element. 
*/ 
div.scrollable div.items { 
    /* this cannot be too large */ 
    width:20000em; 
    position:absolute; 
} 
 
/* 
    a single item. must be floated in horizontal scrolling. 
    typically, this element is the one that *you* will style 
    the most. 
*/ 
div.scrollable div.items div { 
    float:left; 
} 
 
/* you may want to setup some decorations to active the item */ 
div.items div.active { 
    border:0px inset #ccc; 
    background-color:#fff; 
}


/* this makes it possible to add next button beside scrollable 
.scrollable {
	float:left;	
}*/


.scrollable img {
	float:left;
	background-color:#fff;
	cursor:pointer;
	width:906px;
	height:316px;
}

/* prev, next, prevPage and nextPage buttons */
a.browse {
	background:url(../images/hori_large.png) no-repeat;
	display:block;
	width:47px;
	height:316px;
	cursor:pointer;
	font-size:1px;
}

a.prevPage{
	/*position:absolute;
	margin:150px -10px 0 0;*/
	float:left;
	width:47px;
	}
	
a.nextPage{
	/*position:absolute;
	margin:160px 0 0 700px;*/
	float:right;
	width:47px;
	}
	
div.mybuttons{
		z-index:50;
		position:absolute;
		width:1000px;
		}

/* right */
a.right 				{ background:url(../images/slider_right.gif) no-repeat; clear:right;}


/* left */
a.left				{ background:url(../images/slider_left.gif) no-repeat;}
