#popups {
	position: fixed;
	left: 0;
	top: 10%;
	min-width: 100%;
	height: 0;
	z-index: 1001;
	overflow: visible;
}
.popup_layer {
	margin: 0 auto;
	position: relative;
	width: 80%;
	min-height: 200px;
	max-height: 80vh;
	background-color: #fff;
	border: 3px solid black;
	box-shadow: 3px 3px 30px 5px rgba(0,0,0,0.6);
	text-align: center;
}

nav.popup_toolbar {
	background-color: rgba(255, 255, 255, 0.8);
}

nav.popup_nav {
	background-color: #EEE;
	padding: 1.5% 12px;
}
nav.popup_nav a,
nav.popup_nav a:visited {
	font-size: 11pt;
	color: #666;
	text-decoration: none;
}

div.popup_content {
	padding: 4%;
}

@media only screen and (max-width: 640px) {
	.popup_layer {
		width: 96%;
		min-height: 50px;
	}
	div.popup_content {
		padding: 0;
	}
} /* End */