/* 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;
	
	width:675px;	
	min-height:200px;
	border:none;
	
	/* CSS3 styling for latest browsers */
	-moz-box-shadow:0px 20px 60px -10px #000;
	-webkit-box-shadow: 0 20px 60px -10px #000;	
	box-shadow: 0 20px 60px -10px #000;	
	padding:10px;
	font-family:Verdana, Tahoma, Arial, sans-serif;
}

/* close button positioned on upper right corner */
.simple_overlay .close {
	background-image:url(../images/layout/close.png);
	position:absolute;
	right:-15px;
	top:-15px;
	cursor:pointer;
	height:35px;
	width:35px;
}

/* the large image. we use a gray border around it */
#img {
	
}

/* "next image" and "prev image" links */
.simple_overlay .next,
.simple_overlay .prev {
	
	/* absolute positioning relative to the overlay */
	position:absolute;
	top:40%;	
	/*border:1px solid #666;*/	
	cursor:pointer;
	display:block;
	padding:10px 20px;
	color:#fff;
	font-size:11px;
	
	/* upcoming CSS3 features */
	-moz-border-radius:5px;
	-webkit-border-radius:5px;	
	text-transform:uppercase;
}

.simple_overlay .prev {
	left:10px;
	border-left:0;
	-moz-border-radius-topleft:0;
	-moz-border-radius-bottomleft:0;
	-webkit-border-bottom-left-radius:0;
	-webkit-border-top-left-radius:0;
}

.simple_overlay .next {
	right:10px;
	border-right:0;
	-moz-border-radius-topright:0;
	-moz-border-radius-bottomright:0;
	-webkit-border-bottom-right-radius:0;
	-webkit-border-top-right-radius:0;
}

.simple_overlay .next:hover,
.simple_overlay .prev:hover {
	text-decoration:underline;
	background-color:#000;
}

/* when there is no next or previous link available this class is added */
.simple_overlay .disabled {
	visibility:hidden;		
}

/* the "information box" */
.simple_overlay .info {
	position:absolute;
	bottom:10px;
	left:10px;	
	padding:10px 15px;
	color:#fff;
	font-size:11px;
	/*border-top:1px solid #666;*/

}

.simple_overlay .info strong {
	display:block;	
}

/* progress indicator (animated gif). should be initially hidden */
.simple_overlay .progress {
	position:absolute;
	top:45%;
	left:50%;
	display:none;
}

/* everybody should know about RGBA colors. */
.simple_overlay .next,
.simple_overlay .prev,
.simple_overlay .info {
	background:#333 !important;	
}


#content a.back_to_album {
	margin:.5em 0;
	text-transform:uppercase;
}
#photo_gallery {
	margin-top:1em;
}
#photo_gallery.albums h5 {
	text-transform:uppercase;
	font-size:1.15em;
	margin:0 0 0.25em;
	padding:0 0 2px;
}
	#photo_gallery.albums h5 a {
		color:#666;
	}
	#photo_gallery.albums h5 a:hover {
		color:#C49810;
	}
#photo_gallery.albums td.thumb {
	width:272px;
	padding:1px;
}
#photo_gallery.albums td.caption {
	padding:3px 6px 10px;
	line-height:1.5em;
}




#photo_gallery.thumbs td.thumb {
	width:137px;
	padding:1px;
}
#photo_gallery.thumbs td.caption {
	padding:3px 6px 10px;
	line-height:1.5em;
}


/** VIDEO OVERLAY **/
div.overlay {
	padding:0;
	display:none;	
	border-bottom:1px solid #111;
	background:#000;
	position:relative;
	width:576px;
}

div.overlay .player {
	height:450px;
	display:block;
	-moz-box-shadow:0px 20px 60px -10px #000;
	-webkit-box-shadow: 0 20px 60px -10px #000;	
	box-shadow: 0 20px 60px -10px #000;	
	position:relative;
	color:#000;
}

	div.overlay .download_container {
		position:absolute;
		left:9px;
		bottom:0px;
		height:32px;
		visibility:hidden;
	}
	
	div.overlay .download,
	div.overlay .download_mobile,
	div.overlay .download_large {
		position:relative;
		display:inline;
		float:left;
		color:#000;
		text-decoration:none;
		height:32px;
		margin-right:15px;
	}
	div.overlay .download:hover ,
	div.overlay .download_mobile:hover ,
	div.overlay .download_large:hover  {
		background-position:bottom left;
	}
	div.overlay .download {
		width:146px;
		background:url( "../images/interface/video_download.jpg" ) top left no-repeat;
	}
	div.overlay .download_mobile {
		width:115px;
		background:url( "../images/interface/video_download_mobile.jpg" ) top left no-repeat;
	}
	div.overlay .download_large {
		width:105px;
		background:url( "../images/interface/video_download_large.jpg" ) top left no-repeat;
	}

#content #photo_gallery .thumb,
#content #photo_gallery .albums {
	text-align:left;
}
#content #photo_gallery .thumb a,
#content #photo_gallery .albums a {
	text-decoration:none;
	border:none;
	background:transparent;
}

#content #photo_gallery .thumb a img,
#content #photo_gallery .albums a img {
	padding:1px;
	border:5px solid #111;
	display:inline;
	float:none;
}

#content #photo_gallery .thumb a:hover img,
#content #photo_gallery .albums a:hover img{
	border-color:#C49810;
}










