/* jQuery */

.slide-down { display: none; }

a.slide { }

a.slide:hover { }

a.slide-active { }

/* the overlayed element */
.simple_overlay {
	display:none;
	z-index:1;
	background-color:#333;
	width:200px;
	min-height:20px;
}

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

#img {
	border: 1px solid #333;
	margin: -11px;
	padding: 10px;
	background-color: #000;
} 

#gallery .next, #gallery .prev {
	position:absolute;
	top:40%;	
	cursor:pointer;
	display:block;
	padding:0.5em 1em;
	-moz-border-radius: 0.5em;
	-webkit-border-radius: 0.5em;	
}

#gallery .prev {
	left:0;
	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;
}

#gallery .next {
	right:0;
	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;	
}

#gallery .next:hover, #gallery .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: 0.5em 1em;
	font-size: smaller;
}

.info strong {
	color:#fff;
	display:inline;
	font-weight:normal;
}

.info span {
	float:right;	
}

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

/* everybody should know about RGBA colors. */
#gallery .next, #gallery .prev, #gallery .info {
	background:#111 !important;
	background:rgba(0, 0, 0, 0.6);		
}

/* OVERLAY */

div.overlay {
	
	/* growing background image */
	background-image:url(../layout/white.png);
	
	/* dimensions after the growing animation finishes  */
	width:600px;
	height:470px;		
	
	/* initially overlay is hidden */
	display:none;
	
	/* some padding to layout nested elements nicely  */
	padding:55px;
}

/* default close button positioned on upper right corner */
div.overlay div.close {
	background-image:url(../layout/close.png);
	position:absolute;
	right:5px;
	top:5px;
	cursor:pointer;
	height:35px;
	width:35px;
}


/* black */
div.overlay.black {
	background:url(../layout/transparent.png) no-repeat !important;
	color:#fff;
}

/* petrol */
div.overlay.petrol {
	background:url(../layout/petrol.png) no-repeat !important;
	color:#fff;
}

div.black h2, div.petrol h2 {
	color:#ddd;		
}

#overlay { 
    background-image:url(http://static.flowplayer.org/img/overlay/transparent.png); 
    color:#efefef; 
    height:450px; 
} 
 
/* container for external content. uses vertical scrollbar, if needed */ 
div.wrap { 
    height:441px; 
    overflow-y:auto; 
}
