body {margin:0; padding:0;background:#FFF;}
.scrollable {
	/* required settings */
	position:relative;
	overflow:hidden;
	width: 852px;
	height:344px;
	border-top:5px solid #FECCCB;
	border-top:5px solid #FECCCB;
	border-left:2px solid #FECCCB;
	border-right:2px solid #FECCCB;
	background-color:#FECCCB;
}

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

/* single scrollable item */
.scrollable img {
	float:left;
	margin:0;
	background-color:#FECCCB;
	padding:0;
	border-top:0px solid #FECCCB;
	border-bottom:0px solid #FECCCB;
	border-left:2px solid #FECCCB;
	border-right:2px solid #FECCCB;
}

/* active item */
.scrollable .active {
	border:2px solid #FECCCB;
	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 {display:none;}
/* right */
a.right 				{ display:none;} 
/* left */
a.left				{display:none;}


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



/* position and dimensions of the navigator */
.navi {
	float:right;
	width:100px;
	height:20px;
	margin:10px -40px 0 0;
	clear:both;
	text-align:right;
	border:0px solid #F00;
}


/* items inside navigator */
.navi a {
	width:8px;
	height:8px;
	float:left;
	margin:3px;
	background:url(/Gallery_Collections/navigator.jpg) 0 0 no-repeat;
	display:block;
	font-size:1px;
}

/* mouseover state */
.navi a:hover {
	background-position:0 -8px;      
}

/* active state (current page state) */
.navi a.active {
	background-position:0 -16px;     
}



/*============================================
Overlay
==============================================*/

/* the overlayed element */
.simple_overlay {
	
	/* must be initially hidden */
	display:none;
	
	/* place overlay on top of other elements */
	z-index:10000;
	
	/* styling */
	background-color:#fff;
	
	min-height:200px;
	border:2px solid #FFF;
	
	/* CSS3 styling for latest browsers */
	-moz-box-shadow:0 0 90px 5px #000;
	-webkit-box-shadow: 0 0 90px #000;	
}

/* close button positioned on upper right corner */
.simple_overlay .close {
	background-image:url(/Gallery_Collections/img/close.png);
	position:absolute;
	right:-15px;
	top:-15px;
	cursor:pointer;
	height:35px;
	width:35px;
}



