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

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 260px;
	height:80px;

	/* custom decorations */
	/*
	border:20px solid #2a2a2a;
	border-left:0;
	background:#2a2a2a;
	margin-top: -19px;
	*/
	
	border:0 none;
	height:80px;
	overflow:hidden;
	padding:0 20px 15px 0;
	position:relative;
	width:260px;
	
}

.gallery .items {
	/* this cannot be too large */
	width:2000px;
	position:absolute;
	clear:both;
}

/* single scrollable item */
.gallery .items li {
	float:left;
	padding:0;
	border:0;
	cursor:pointer;
	width:140px;
	height:80px;
}

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





/* position and dimensions of the navigator */
.gallery_tabs {
	width:280px;
	height:20px;
	/*
	background: #2a2a2a;
	*/
}
.gallery_tabs a {
	width:21px;
	height:11px;
	float:left;
	margin-right:10px;
	background:url(/img/bg_gallerytabs.gif) 0 0 no-repeat;
	display:block;
	font-size:1px;
	cursor: pointer
}
.gallery_tabs a:hover {
	background:url(/img/bg_gallerytabs.gif) 0 -22px no-repeat;
}
.gallery_tabs a.active {
	background:url(/img/bg_gallerytabs.gif) 0 -22px no-repeat;
}



/* 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:#333;
	
	width:675px;	
	min-height:200px;
	/*
	border:1px solid #666;
	*/
	
	/* 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 {
	position:absolute;
	right:2px;
	top:2px;
	cursor:pointer;
	height:17px;
	width:17px;
	background: url(/img/bg_button_close.gif) 0 -17px no-repeat;
}


/* the large image. we use a gray border around it */
#img {
	/*
	border:1px solid #666;
	*/
}

/* "next image" and "prev image" links */
.next, .prev {
	
	/* absolute positioning relative to the overlay */
	position:absolute;
	top:40%;	
	cursor:pointer;
	display:block;
	padding: 5px 20px 5px 10px;
	
}

.prev {
	left:0;
	padding: 5px 10px 5px 20px;
}

.next {
	right:-1px;
}

.next:hover, .prev:hover {
	text-decoration:underline;
	background-color:#000;
}

/* when there is no next or previous link available this class is added */
.disabled {
	visibility:hidden;		
}

/* the "information box" */
.info {
	position:absolute;
	bottom:0;
	left:0;	
	padding:5px 10px;
	color:#fff;
	font-size:11px;
}

.info strong {
	display:block;	
}

/* progress indicator (animated gif). should be initially hidden */
.progress {
	position:absolute;
	top:45%;
	left:50%;
	display:none;
}

/* everybody should know about RGBA colors. */
.next, .prev, .info {
	background:#333 !important;
	background:rgba(0, 0, 0, 0.6) url(/img/global/gradient/h80.png) repeat-x;		
}

