
/* use a semi-transparent image for the overlay */ 
#overlay { 
	background-image:url('/fileadmin/img/ajax_player.png');


    color:#ffffff; 
    height:500; 
} 
 
/* container for external content. uses vertical scrollbar, if needed */ 
div.contentWrap { 
    height:450px; 
    overflow-y:auto; 
}
/* the overlayed element */
div.overlay {
	margin: 0;
	padding: 0;

	/* dimensions after the growing animation finishes  */
	width:390px;
	height:456px;		
	
	/* initially overlay is hidden */
	display:none;
	
	/* some padding to layout nested elements nicely  */
	padding: 17px 52px 37px 37px;
}

/* default close button positioned on upper right corner */
div.overlay div.close {

	background-image:url(/fileadmin/img/back.png);
    background-repeat: no-repeat;
	position:absolute;
	right:52px;
	top:28px;
	cursor:pointer;
	height:12px;
	width:43px;
}


/* black */
div.overlay.black {

	color:#ffffff;
}

/* petrol */
div.overlay.petrol {

	color:#ffffff;
}

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

		.black_overlay{
			display: none;
			position: absolute;
			top: 0%;
			left: 0%;
			width: 100%;
			height: 100%;
			background-color: black;
			z-index:1001;
			-moz-opacity: 0.8;
			opacity:.80;
			filter: alpha(opacity=80);
		}
		.white_content {
			display: none;
			position: absolute;
			top: 25%;
			left: 25%;
			width: 50%;
			height: 50%;
			padding: 16px;
			border: 16px solid orange;
			background-color: white;
			z-index:1002;
			overflow: auto;
		}
