/* the overlayed element */
.simple_overlay {          /* must be initially hidden */     
    display:none;         /* place overlay on top of other elements */     
    z-index:1000;          /* styling */     
    background-color:#333;          
    width:250px;         
    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 {
    z-index:0;
    background-image:url(../img/close.png);     
    position:absolute;     
    right:-15px;     
    top:-15px;     
    cursor:pointer;     
    height:35px;     
    width:35px; 
}

/* styling for elements inside overlay */ 
.info_img {     
    position:absolute;     
    top:15px;     
    right:15px;    
    font-size:11px;     
    color:#fff;     
    width:0px; 
}  

.info_img h3 {     
    color:#aba;     
    font-size:15px;    
    margin:0 0 -10px 0; 
}

#images {
	text-align:center !important;
}
#images img {
	cursor:pointer;
	margin:0 5px;
	background-color:#fff;
	border:1px solid #ccc;
	padding:2px;
	margin-right:3px;
	margin-left:0px;
 
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}

/*APPLE OVERLAY*/


.apple_overlay {    
    display:none;   
    width:860px;        /* some padding to layout nested elements nicely  */     
    padding:35px;       /* a little styling */         
    font-size:11px;
}   /* default close button positioned on upper right corner */ 

.apple_overlay div.close {     
    background-image:url(../img/close.png);     
    position:absolute; 
    right:5px; 
    top:5px;     
    cursor:pointer;     
    height:35px;     
    width:35px; 
}

div.apple_overlay.black {
	background-image:url(../img/black.png);	
	color:#fff;
}

div.apple_overlay.white {
	background-image:url(../img/white.png);	
	color:#fff;
}
 
#images {
	margin-top:10px;
	text-align:center;
}
 
#images img {
	background-color:#fff;
	padding:1px;
	border:1px solid #ccc;
	margin:2px 2px;
	cursor:pointer;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}

	/*FIN APPLE OVERLAY*/


