
/* the overlayed element */
.simple_overlay {

    /* must be initially hidden */
    display:none;

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

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

    width:412px;
    min-height:210px;
	height:auto;
    border:3px solid #000000;
	padding-bottom:20px;

    /* 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:url(close.png) no-repeat;
    position:absolute;
    right:-15px;
    top:-15px;
    cursor:pointer;
    height:35px;
    width:35px;
}
.details{
	width:349px;
	height:auto;
	overflow:hidden;
	margin:49px 0 0 32px;	
	color:#41536f;
}
.details p{
	font-size:12px;
	text-align:justify;
	line-height:17px;	
	
}
.details span{
	font-family:"Bebas Neue", "Gothic720 BT";
	font-size:31px;
	font-weight:normal;
	color:#41536f;	
	line-height:31px;
}

.detailsForm{
	width:530px;
	height:auto;
	overflow:hidden;
	
}
.detailsForm span{
	font-family:"Bebas Neue", "Gothic720 BT";
	font-size:31px;
	font-weight:normal;
	color:#41536f;	
	line-height:31px;
	margin:30px 0 15px 15px;
	display:block;
}





