/* the overlayed element */
.simple_overlay {
	/* must be initially hidden */
	display:none;
	
	/* place overlay on top of other elements */
	z-index:10000;
    
	/* styling */
	/*background-color:#000;*/
    background-image:url(../images/overlay_bg.png);
	min-height:400px;
    width:450px;
    padding:13px;
}



/* close button */
.simple_overlay div.close {
	background-image:url(../images/overlay_close.png);
	position:absolute; 
    right:-15px; 
    top:-15px;
	cursor:pointer;
    width:36px;
	height:36px;
}
.simple_overlay .overlay_content {
    background-color:#FFFFFF;
    font-size:15px;
    color:#564A34;
    padding:10px;
    min-height:400px;
    
}

/* H2 */
.overlay_content h2 {
	font-family: arial,helvetica,sans-serif;
    font-size: 22px;
    line-height:18px;
    color:#666666 !important;
    letter-spacing: 0;

    text-align: center;
    font-weight:bold;
    
    margin-bottom: 1px;
    margin-top: 5px;
    margin-right:0px;
    margin-left:0px;
    padding:0px;
    display:block;
	}


/* ------------------------------------- SHORTER OVERLAY ------------------------------------- */ 
.simple_overlay_shorter {
	/* must be initially hidden */
	display:none;
	
	/* place overlay on top of other elements */
	z-index:10000;
    
	/* styling */
	/*background-color:#000;*/
    background-image:url(../images/overlay_bg.png);
	min-height:200px;
    width:450px;
    padding:13px;
}
/* close button */
.simple_overlay_shorter div.close {
	background-image:url(../images/overlay_close.png);
	position:absolute; 
    right:-15px; 
    top:-15px;
	cursor:pointer;
    width:36px;
	height:36px;
}
.simple_overlay_shorter .overlay_content {
    background-color:#FFFFFF;
    font-size:15px;
    color:#564A34;
    padding:10px;
    min-height:200px;
}


