* 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 { 
    background-image:url(../images/cerrar.png); 
    position:absolute; 
    right:-15px; 
    top:-15px; 
    cursor:pointer; 
    height:35px; 
    width:35px; 
}

/* styling for elements inside overlay */ 
.details { 
    position:absolute; 
    top:15px; 
    right:15px; 
    font-size:11px; 
    color:#fff; 
    width:150px; 
} 
 
.details h3 { 
    color:#aba; 
    font-size:15px; 
    margin:0 0 -10px 0; 
}

#custom { 
    background-image:url(http://static.flowplayer.org/img/commerce/box-512.png); 
    width:512px; 
    height:531px; 
    padding:0px; 
} 
 
#custom div.close { 
    right:-15px; 
    top:-10px; 
} 
 
#petrol { 
    background-image:url(../images/tabs.jpg); 
    color:#fff; 
} 
 
#apple { 
    background-image:url(http://static.flowplayer.org/img/overlay/apple.png); 
    color:#fff; 
}

/* the overlayed element */
div.overlay {
	
	/* growing background image */
	background-image:url(../images/tabs.jpg);
	
	/* 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;
}

div.overlay2 {
	
	/* growing background image */
	background-image:url(../images/vacaciones2.jpg);
	
	/* dimensions after the growing animation finishes  */
	width:500px;
	height:661px;		
	
	/* initially overlay is hidden */
	display:none;
	
	/* some padding to layout nested elements nicely  */
	padding:10px;
}

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

div.overlay2 div.close {
	background-image:url(../images/cerrar.jpg);
	position:absolute;
	right:5px;
	top:5px;
	cursor:pointer;
	height:35px;
	width:35px;
}


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

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

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

div.overlay2.petrol {
	background:url(../images/vacaciones2.jpg) no-repeat !important;
	color:#fff;
}

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