@charset "utf-8";
/* CSS Document */


#image_wrap {
		/* dimensions */
		
		width:610px;
	/*	margin:15px 3px 15px 5px;
		padding:15px 0;*/

		/* centered */
		text-align:center;

		/* some "skinning" */
	/*	background-color:#efefef;
		border:2px solid #fff;
		outline:1px solid #ddd;*/
		-moz-ouline-radius:4px;
	}

	

.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 575px;
	margin:1px 1px 1px 15px;
	height:50px;

	/* custom decorations */
	/*border:1px solid #ccc;
	background:url(../images/h300.png) repeat-x;*/
}

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

/* single scrollable item */
.scrollable img {
	float:left;
	margin:5px 6px 1px 4px;
	background-color:#fff;
	padding:2px;
	/*border:1px solid #ccc;*/
	width:50px;
	height:35px;
	cursor:pointer;
	
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}

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


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

/* prev, next, prevPage and nextPage buttons */
a.browse {
	background:url(../images/hori_large.png) no-repeat !important;
	display:block;
	width:50px;
	height:50px;
	float:left;
	margin:-160px 0px 0px 0px;
	cursor:pointer;
	font-size:1px;
	visibility:visible;
}

/* right */
a.right 				{ background-position: 0px -50px!important; clear:right; margin-left: -45px;;}
a.right:hover 		{ background-position:-50px -50px; }
a.right:active 	{ background-position:-1000px -50px; } 


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


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

