/* Reset */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, 
abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, 
strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, 
legend, caption {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}

/* General */
html, body{
	width: 100%;
	font-family: Arial, Helvetica, sans-serif;
}

h1, p, label{
	color: white;
}

h1{
	font-size: 2em;
}

/* Top bar */
#topBar{
	background-color: #873e23;
	width: 100%;
}

#topBar h1{
	padding: 15px;
	text-align: center;
}

/* Content */ 
#content{
	padding: 25px 50px;
	background-color: #154c79;
}

.sub-header{
	margin-bottom: 25px;
}

/* Footer */
#footer{
	padding: 50px;
	background-color: #873e23;
}

/* FORM */

.form-field{
	display: flex;
	flex-direction: column;
	margin-bottom: 15px;
}

.form-field label, .form-field .filler{
	width: 150px;
}

.form-field .input{
	padding: 5px;
	border: none;
	border-radius: 5px;
	width: 100%;
}

.work-select{
	margin-bottom: 15px;
}

.button{
	padding: 15px;
	color: white;
	border: none;
	background-color: #e28743;
	font-weight: bold;
}

/* Overlay */
#greyout{
	background-color: #0009;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: none;
}
#overlay{
	background-color: white;
	width: 80%;
	margin: 25px auto;
	height: 500px;
	position: relative;
	padding: 25px;
}

#overlay p{
	color: black;
}
#overlay table{
	margin-top: 25px;
}
#overlay table td{
	padding-top: 10px;
	padding-right: 25px;
}

.overlay-list li{
	list-style-type: none;
	
}
#overlayCloseBtn{
	padding: 15px;
	position: absolute;
	bottom: 0;
	display: block;
	margin: 15px auto;
	width: 100px;
	left: calc(50% - 50px);
}