/* the overlayed element */
.simple_overlay {
/* must be initially hidden */
display:none;

/* place overlay on top of other elements */
z-index:299999999999;

 /* styling */
 background-color:#fff;

width:900px;
padding: 25px;
 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(../media/images/close2.png);
 position:absolute;
 left:-15px;
 top:-15px;
 cursor:pointer;
 height:35px;
 width:35px;
} 

.simple_overlay #flp_img{margin:0px auto 25px; width: auto;max-width: 850px; height:auto;}
.simple_overlay #print_button{float:right;text-align:center; margin:25px;}
.simple_overlay #print_button a img{border:0;}
.simple_overlay #print_button a, .simple_overlay #print_button a:visited{text-decoration:none;color:black;}
.simple_overlay #print_button a:hover{text-decoration:none;color:#B7A364; font-weight:bold;}
.simple_overlay .info{width:100%; font-size:12px; text-align:center;}




