
/* the overlayed element -- SIMPLE OVERLAY */
.simple_overlay {
	
	/* must be initially hidden */
	display:none;
	
	/* place overlay on top of other elements */
	z-index:5000;
	
	/* styling */
	background-color:#333;
	
	width:600px;	
	height:450px;
	border:1px solid #666;

	-moz-border-radius:15px;
	-webkit-border-radius:15px;
	
	/* CSS3 styling for latest browsers */
	-moz-box-shadow:0 0 90px 15px #000;
	-webkit-box-shadow: 0 0 90px #000;	
}

.simple_overlay img {
	position:absolute;
	left:20px;
	top:37px;
	margin:0 0 0 0px;
	border:1px solid #ccc;
	padding:2px;

	-moz-border-radius:5px;
	-webkit-border-radius:5px;
}


/* close button positioned on upper right corner */
.simple_overlay .close {
	background-image:url(../images/close.png);
	position:absolute;
	right:15px;
	top:-15px;
	cursor:pointer;
	height:35px;
	width:35px;
}

/* SMALLER OVERLAY */
.smaller_overlay {
	
	/* must be initially hidden */
	display:none;
	
	/* place overlay on top of other elements */
	z-index:5800;
	
	/* styling */
	background-color:#333;
	
	width:550px;	
	height:250px;
	border:1px solid #666;

	-moz-border-radius:15px;
	-webkit-border-radius:15px;
	
	/* CSS3 styling for latest browsers */
	-moz-box-shadow:0 0 90px 15px #000;
	-webkit-box-shadow: 0 0 90px #000;	
}
/* close button positioned on upper right corner */
.smaller_overlay .close {
	background-image:url(../images/close.png);
	position:absolute;
	right:15px;
	top:-15px;
	cursor:pointer;
	height:35px;
	width:35px;
}
.smaller_overlay img {
	position:absolute;
	left:105px;
	top:30px;
	margin:0 0 0 0px;
	border:1px solid #ccc;
	padding:2px;

	-moz-border-radius:5px;
	-webkit-border-radius:5px;
}

/* LARGE OVERLAY */
.large_overlay {
	
	/* must be initially hidden */
	display:none;
	
	/* place overlay on top of other elements */
	z-index:5000;
	
	/* styling */
	background-color:#333;
	
	width:750px;	
	height:500px;
	border:1px solid #666;

	-moz-border-radius:15px;
	-webkit-border-radius:15px;
	
	/* CSS3 styling for latest browsers */
	-moz-box-shadow:0 0 90px 15px #000;
	-webkit-box-shadow: 0 0 90px #000;	
}

.large_overlay img {
	position:absolute;
	left:20px;
	top:37px;
	margin:0 0 0 0px;
	border:1px solid #ccc;
	padding:2px;

	-moz-border-radius:5px;
	-webkit-border-radius:5px;
}

/* close button positioned on upper right corner */
.large_overlay .close {
	background-image:url(../images/close.png);
	position:absolute;
	right:15px;
	top:-15px;
	cursor:pointer;
	height:35px;
	width:35px;
}
/* rfid overlay */
.rfid_overlay {
	
	/* must be initially hidden */
	display:none;
	
	/* place overlay on top of other elements */
	z-index:5000;
	
	/* styling */
	/* background-color:none;	 */
	width:740px;	
	height:280px;
	border:0px solid #666;

	-moz-border-radius:15px;
	-webkit-border-radius:15px;
	
	/* CSS3 styling for latest browsers
	-moz-box-shadow:0 0 90px 15px #000;
	-webkit-box-shadow: 0 0 90px #000; */
}
.rfid_overlay img {
	position:absolute;
	margin:0 0 0 0px;
	border:0px solid #ccc;
	padding:2px;

	-moz-border-radius:15px;
	-webkit-border-radius:15px;
}

/* close button positioned on upper right corner */
.rfid_overlay .close {
	background-image:url(../images/close.png);
	position:absolute;
	right:15px;
	top:10px;
	cursor:pointer;
	height:35px;
	width:35px;
}









