* {
	box-sizing: border-box;
}
html, body {
	padding: 0;
	margin: 0;
	font-family: 'Arial';
	max-width: 100%;
	overflow-x: hidden;
	color: #545858;
}

header img {
	width: 100%;
}

.blue-title {
	color: #0d1650;
	font-weight: bold;
	font-size: 22px;
	margin-bottom: 20px;
	margin-top: 20px;
}

.content {
	background: rgba(232, 240, 229, 1);
	max-width: 1005px;
	margin: 80px auto;
	margin-top: 20px;
}
.faculty-member {
	background: #f3f7fb;
	padding: 20px;
	margin-bottom: 20px;
}
.no-bg {
	background: transparent !important;
	padding: 0;
}
.faculty-member p {
	color: #009e56;
	font-weight: bold;
}
.faculty-content, .faculty-member aside {
	display: flex;
	flex: 1;
}
.faculty-info {
	padding-left: 20px;
	color: #030358;
	font-weight: bold;
}
.faculty-info p {
	color: #030358;
}
.avatar {
	align-self: center;
	width: 150px;
}
@media screen and (max-width: 768px) {
	.faculty-content, .faculty-member aside, .flex {
		flex-direction: column;
	}
	.faculty-info, .featured-text {
		padding-left: 0;
		text-align: center;
		display: block;
	}
	form {
		max-width: 100% !important;
	}
}
.blue {
	color: #0F2C53;
}

.btn {
	cursor: pointer;
	background: #0F2C53;
	color: white;
	font-weight: bold;
	align-self: center;
	padding: 8px 30px;
	text-decoration: none;
	/* border-radius: 4px; */
	width: 40% !important;
	font-size: 22px;
}
footer {
	margin-top: 50px;
}
footer a {
	color: inherit;
}
.text-right {
	margin-top: 100px;
	font-size: 12px;
	text-align: right;
}

.flex {
	display: flex;
}
.flex-1 {
	flex: 1;
}

form {
	padding: 20px;
	border-radius: 6px;
}
form label {
	display: block;
	color: #545858;
}
form ul {
	padding-left: 0;
}
form ul li {
	list-style: none;
}
form ul li label {
	display: inline-block;
}
form input:not([type=radio]),
form select {
	width: 100%;
	height: 45px;
}

#id_optout {
	height: 0px !important;
	width: 0px !important;
}

.superscript-fix {
	vertical-align: top;
	position: relative;
	top: -0.5em;
}

/* The container */
.container {
	display: block;
	position: relative;
	padding-left: 35px;
	margin-bottom: 12px;
	cursor: pointer;
	font-size: 22px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

/* Hide the browser's default checkbox */
.container input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

/* Create a custom checkbox */
.checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 25px;
	width: 25px;
	background-color: #eee;
}

/* On mouse-over, add a grey background color */
.container:hover input~.checkmark {
	background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.container input:checked~.checkmark {
	background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
	content: "";
	position: absolute;
	display: none;
}

/* Show the checkmark when checked */
.container input:checked~.checkmark:after {
	display: block;
}

/* Style the checkmark/indicator */
.container .checkmark:after {
	left: 9px;
	top: 5px;
	width: 5px;
	height: 10px;
	border: solid white;
	border-width: 0 3px 3px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}