/*gallery*/


div.gallery{
	width:746px;
	}


div.scrollable { 
 
    /* required settings */ 
    position:relative; 
    overflow:hidden; 
    width: 746px; 
    height:236px; 
	margin:0 auto;
	margin-left:13px;
} 
 
/* 
    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:746px;
	height:236px;
	
}

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

a.prevPage{
	/*position:absolute;
	margin:150px -10px 0 0;*/
	float:left;
	}
	
a.nextPage{
	/*position:absolute;
	margin:160px 0 0 700px;*/
	float:right;
	}
	
div.mybuttons{
		z-index:500000;
		position:absolute;
		margin-top:90px;
		padding-left:12px;
		/*_padding:0px;*/
		width:748px;
		}

/* right */
a.right 			{ background:url(../images/hori_large3.png) no-repeat; margin-right: 0px;}
a.right:hover 		{ background:url(../images/hori_large3.png) no-repeat;}
/*a.right:active 	{ background-position:-100px -50px; } */

/* left */
a.left				{ margin-left: 0px; } 
a.left:hover  		{ background-position: 0px 0;}
/*a.left:active  	{ background-position:-100px -150px; }*/

/* up and down */
a.up, a.down		{ 
	background:url(vert_large.png) no-repeat; 
	float: none;
}
