#popups {
	position: fixed;
	left: 0;
	top: 10%;
	min-width: 100%;
	height: 0;
	z-index: 1001;
	overflow: visible;
}
.popup_layer {
	margin: 50px auto;
	position: relative;
	width: 80%;
	min-height: 400px;
	background-color: #fff;
	border-radius: 16px;
	box-shadow: 3px 3px 30px 5px rgba(0,0,0,0.6);
	text-align: center;
}

nav.popup_toolbar {
	border-radius-top-left: 16px;
	border-radius-top-right: 16px;
	background-color: rgba(255, 255, 255, 0.8);
}

nav.popup_nav {
	background-color: rgba(200, 200, 200, 0.8);
	padding: 8px 12px;
	border-radius: 16px 16px 0 0;
}
nav.popup_nav a {
	font-size: 16pt;
}

div.popup_content {
	padding: 30px;
}