/* Grosvenor House Associates (Cornwall) Limited 2012*/
/* gha overlay styles - jquery tools */
/* the overlayed element */
.simple_overlay {
	/* must be initially hidden */
	display:none;
		/* place overlay on top of other elements */
	z-index:10000;
	/* styling */
	background-color:#dbd8d8;
	width:500px;
	min-height:540px;
	border:1px solid #666;
	/* CSS3 styling for latest browsers */
	-moz-box-shadow:0 90px 5px #000;
	-webkit-box-shadow: 0 0 90px #000;	
}
/* close button positioned on upper right corner */
.simple_overlay .close {
	background-image:url(../Images/close.png);
	background-repeat:no-repeat;
	position:absolute;
	right:-15px;
	top:-15px;
	cursor:pointer;
	height:34px;
	width:34px;
}
/* styling for elements inside overlay */
	.details {
		position:absolute;
		top:15px;
		font-size:100%;
		color:#3b3b3b;
		width:460px;
		padding:20px;
	}
	.details h3 {
		color:#aba;
		font-size:15px;
		margin:0 0 10px 0;
	}
.help_overlay {
	/* must be initially hidden */
	display:none;
		/* place overlay on top of other elements */
	z-index:10000;
	/* styling */
	background-color:#90494C;
	width:500px;
	min-height:300px;
	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 */
.help_overlay .close {
	background-image:url(../images/close.png);
	background-repeat:no-repeat;
	position:absolute;
	right:-15px;
	top:-15px;
	cursor:pointer;
	height:34px;
	width:34px;
}
