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

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 574px;
	height:215px;

	/* custom decorations */
	background: url(../images/bg.jpg) repeat-x;
	float:left;	
	-moz-border-radius:10px;
	border:1px solid #998974;
	font-family:"Times New Roman", Times, serif;
}

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

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

.legend {
height:258px;
float:left;
position:relative;}

.scrollable p {
position:absolute;
top:160px;
left:15px;
width:260px;
text-align:center;
background:#ebe8e2;
-moz-border-radius:2px;
color:#000000;
font-size:10px;
font-family:"Times New Roman", Times, serif;}

/* active item */
.scrollable .active {
	border:2px solid #000;
	z-index:9999;
	position:relative;
}


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

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


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



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





