@import url('/shared/css/jquery.lightbox-0.5.css');
/* 
	root element for the scrollable. 
	when scrolling occurs this element stays still. 
*/
#loaGallery a img {border: none;}
div.scrollable {
	/* required settings */
	position:relative;
	overflow:hidden;	 	
	width: 420px;	
	height:90px;	
}

/* 
	root element for scrollable items. Must be absolutely positioned
	and it should have a super 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;
	clear:both;
	
}

/* single scrollable item */
div.scrollable div.items div {
	float:left;
	/* custom decoration */
	text-align:center;
	width:95px;
	height:68px;	
	padding:0;
	border:1px outset #ccc;
	background-color: #ddd;
	margin-right: 10px;	
	overflow:hidden;
	-moz-border-radius:5px;
}
div.scrollable div.items div div {
	padding: 0;
	border: 1px solid black;;
	width: 75px;
	height: 48px;
	overflow: hidden;
	margin: 10px;
}
/* active item */
div.scrollable div.items div.active {
	border:1px inset #ccc;		
	background-color:#fff;
}

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

/* prev, next, prevPage and nextPage buttons */
a.loaGalleryPrev, a.loaGalleryNext, a.loaGalleryPrevPage, a.loaGalleryNextPage {
	display:block;
	width:18px;
	height:18px;
	background:url(/shared/images/left.png) no-repeat;
	float:left;
	margin:33px 10px;
	cursor:pointer;
}

/* mouseover state */
a.loaGalleryPrev:hover, a.loaGalleryNext:hover, a.loaGalleryPrevPage:hover, a.loaGalleryNextPage:hover {
	background-position:0px -18px;		
}

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

/* next button uses another background image */
a.loaGalleryNext, a.loaGalleryNextPage {
	background-image:url(/shared/images/right.png);
	clear:right;	
}

/*********** navigator ***********/


/* position and dimensions of the navigator */
/* position and dimensions of the navigator */
div.loaGalleryNav {
clear: both;
padding-top: .5em;
text-align: center;
}


/* items inside navigator */
div.loaGalleryNav span {
color: blue;
text-decoration: underline;
	cursor:pointer;	
}

/* active state (current page state) */
div.loaGalleryNav span.active {
color: black;
text-decoration: none;
cursor: none;
} 


