/*http://stackoverflow.com/questions/2941189/how-to-overlay-one-div-over-another-div*/
#mapspopup_background {
	position: absolute;
	top: 0;
	right: 0;  bottom: 0;
	left: 0;
	margin: auto;
	margin-top: 0px;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	z-index: 900;
	visibility: hidden;
} 

#mapspopup {
	position: relative;
	z-index: 1000;
	height: 80%;
    width: 60%;
	margin: 0 auto;
	top:20px;
	background-color:white;
	border: 5px solid #cccccc;
    border-radius: 10px;
	visibility: hidden;
}

#mapsiframe{
	width:100%;
	height: 100%;
	border: none;
}

.cancel {
    display: block;
    position: absolute;
	padding:5px;
    background: #cccccc;
	border-bottom-right-radius: 5px;
    color: black;
    height: 30px;
    width: 30px;
    font-size: 30px;
    text-decoration: none;
    text-align: center;
    font-weight: bold;
	z-index: 10010;
}