
/* the overlayed element */
.simple_overlay {

    /* must be initially hidden */
    display:none;

    /* place overlay on top of other elements */
    z-index:10000;

    /* styling */
	
	position: relative;
	margin: 10% auto;
	font-size: 12px;
	line-height: 15px;
	text-align: left;
    width:400px;
    min-height:100px;
	padding: 50px;
    border: 0px solid #fff;
	background-color: none !important;
	background-image: url(/Sitefinity/WebsiteTemplates/NCVC/App_Themes/National/img2/BlackTransparentBckgrnd.png) 0 0 repeat;
	color: #fff;

    /* CSS3 styling for latest browsers */
    -moz-box-shadow:0 0 90px 5px #000;
    -webkit-box-shadow: 0 0 90px #000;
}

.simple_overlay h2 {
	font-size: 24px;
	line-height: 1.15em;
	margin: 0 0 20px 0;
	color: #df981b;
}

.simple_overlay a {
	color: #df981b;
	font-weight: bold !important;	
}

.simple_overlay.home a.close {
	display: inline-block;
	position: relative;
	margin: 15px 0 !important;	
	left: 0;
	height: auto;
	width: auto;
	padding: 5px 10px;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	color: #fff !important;
}

.simple_overlay.home a.close:hover {
	color: #09c;
}

/* close button positioned on upper right corner */
.simple_overlay .close {
    background-image:url(/media/img/overlay/close.png);
    position:absolute;
    right:-15px;
    top:-15px;
    cursor:pointer;
    height:35px;
    width:35px;
}