/* the overlayed element */
.simple_overlay {
	
	/* must be initially hidden */
	display:none;
	
	/* place overlay on top of other elements */
	z-index:10000;
	
	/* styling */
	background-color:#ffffff;
	
	max-width:500px;
	padding:10px;	
	border:none;
	/*margin:135px 0 0 0;*/
	
	/* CSS3 styling for latest browsers */
	-moz-box-shadow:0 0 5px 5px #2d2d2d;
	-webkit-box-shadow: 0 0 5px #2d2d2d;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;	
}

.simple_overlay h3 {
	font-family: 'Open Sans',sans-serif;
	font-weight: bold;
	font-size:30px;
	margin:5px 0 20px 0;
}

.simple_overlay p {
	float: left;
	width: 100%;
	margin: 0 0 10px 0;
	font-size:15px;
	line-height:19px;
}

/* close button positioned on upper right corner */
.simple_overlay .close {
	background-image:url(../images/elements/close.png);
	position:absolute;
	right:-15px;
	top:-15px;
	cursor:pointer;
	height:35px;
	width:35px;
}

.simple_overlay #overlay-left {
	height: 400px;
	overflow: auto;
	padding: 15px;
}

.triggers a {
	cursor:pointer;
}