/* styling for the image wrapper */
.image_wrap {
  /* dimensions */
  width:600px;
  height:450px;
  margin:25px 0 1px 20px;
  /* centered */
  text-align:center;
  /* some "skinning" */
}
.image_wrap img {
	vertical-align:bottom;
}



/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {
	/* required settings */
	float:left;
	position:relative;
	overflow:hidden;
	width:560px;
	height:120px;
	margin:0;
	/* custom decorations */
	background:url(bg_scrollable_items.jpg) 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;
	top: 1px;
}

.scrollable .items div {
	float:left;
	width:560px;
}

/* single scrollable item */
.scrollable img {
	float:left;
	margin:20px 0 20px 10px;
	width:100px;
	height:75px;
}

/* active item */
.scrollable .active {
	padding-bottom:1px;
	border-bottom:5px solid #30F;
	position:relative;
	cursor:default;
}



/* prev, next, prevPage and nextPage buttons */
a.browse {
	background:url(btn_scroll.jpg) no-repeat;
	display:block;
	width:20px;
	height:120px;
	float:left;
	margin:0;
	cursor:pointer;
	font-size:1px;
	display:inline;
}

/* right */
a.right        { background-position:-20px 0; clear:right; margin-right:0px;}
a.right:hover  { background-position:-20px -120px; }
a.right:active { background-position:-20px -240px; } 


/* left */
a.left         { background-position:0 0; margin-left:20px; } 
a.left:hover   { background-position:0 -120px; }
a.left:active  { background-position:0 -240px; }


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

