#resources_access {
	max-width: 45em;
	background-color: white;
	border: 0.2em solid #2c2479;
	text-align: center;
	padding: 2em;
	position: relative;
	margin-bottom: 4em;
}
#resources_access table {
    border-collapse:separate;
    border-spacing:0 1rem;
}

#resources_access table tr.submit td {
	text-align: center;
}

#resources_access th {
	padding-right: 1em;
}
#resources_access .close-button:first-child > a {
	position: absolute;
	width: 2em;
	line-height: 2em;
	right: 0;
	top: 0;
	font-weight: bold;
	font-size: 120%;
	color: black;
}
#resources_access.closed {
	display: none;
}
@media screen and (min-width: 40em) and (min-height: 40em) {
	#resources_access {
		position: fixed;
		z-index: 999;
		top: 0;
		left: 0;
		box-shadow: 0 0 2em rgba(0, 0, 0, 0.2);
		opacity: 0;
		transition: opacity 1s;
	}
	#resources_access.positioned {
		opacity: 1;
	}
}