body {
	height: 100vh;
	margin: 0;
	padding: 0;
}
#main-body {
	position: relative;
	margin: 0;
	width: 100%;
	height: 100%;
	background-image: url('OTEbackdrop.jpg');
	background-repeat: no-repeat;
	background-size: cover;
}
#main-body #panel {
	width: 800px;
	position: absolute;
	left: 0;
	top: 70px;
	background: #fff;
	padding: 30px;
	font-family: 'Arial', 'Helvetica', sans-serif;
	box-shadow: -15px 15px 0 rgba(0,0,0,0.2);
}
#main-body #panel p {
	margin: 0 0 12px;
	font-size: 15px;
	line-height: 130%;
}
#main-body.error #panel p strong:first-of-type {
	color: #a00000;
}
#main-body #panel ul {
	margin: -6px 0 0;
	padding: 0;
	list-style-type: none;
	font-size: 15px;
}
#main-body #panel ul li {
	margin-bottom: 5px;
	position: relative;
}
#main-body #panel a {
	position: relative;
	color: #4d5d1b;
	text-decoration: none;
	padding: 0 0 1px 18px;
	box-sizing: border-box;
	background-image: url('linkIcon.png');
	background-repeat: no-repeat;
	background-position: 0 2px;
	display: inline-block;
}
#main-body #panel a:hover {
	cursor: pointer;
	text-decoration: underline;
}
#main-body #panel ab::before {
	position: absolute;
	top: 2px;
	left: 0;
	width: 13px;
	height: 13px;
	border-radius: 50%;
	content: '';
	background-image: url('linkArrow.png');
	background-color: #4d5d1b;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
}
