/* Set everything to use border-box model */
html {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  height:100%;
}

*, *:before, *:after {
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
  margin:0;
  padding:0;
}

body {
	font-family: 'Calibri', sans-serif;
	color: rgb(20,20,20);
}

.page-header, .page-navigation, .page-content, .page-footer {
	width: 100%;
}

.page-header img {
	width: 16%;
	height: 16%;
	float: left;
}

.page-header h1 {
	position: relative;
	padding: 3% 0;
	text-align: center;
	font-size: 1.7rem;
}

.page-header {
	display: inline-block;
}

.page-title, .copyright {
	padding: 3% 0;
}

.copyright {
	border-top: 2px solid rgb(20,20,20);
	text-align: center;
}

.white_txt {
	color: white;
}

.blue_bg {
	background-color: rgb(104,187,203);
}

.purple_bg {
	background-color: rgb(92,63,129);
}

.page-links {
	text-align: center;
}

.page-links li {
	border-top: 2px solid rgb(20,20,20);
}

.page-links-last {
	border-bottom: 2px solid rgb(20,20,20);
}

.page-links a {
	display: block;
	font-size: 1.2rem;
	padding: 2%;
	text-decoration: none;
	width: 100%;
}

.image-block {
	margin: 2% 0;
}

img {
	width: 100%;
}

.text-block h2, .text-block p {
	margin: 5% auto;
}

.text-block {
	font-size: 1.1em;
	line-height: 1.4em;
	margin: 2%;
}

.link {
	font-size: 1.2em;
	color: rgb(104,187,203);
	font-weight: bold;
}

table {
	border-collapse: collapse;
	text-align: left;
	width: 100%;
}

table, td {
	border: 2px solid rgb(104,187,203);
}

td {
	padding: 2%;
}

h4 {
	font-size: 1.25rem;
}

.bold {
	font-weight: bold;
}

.contact-form, .contact-form input, .contact-form textarea {
	border: 1px solid black;
	font-family: 'Calibri', sans-serif;
	font-size: 1.2rem;
	padding: 3%;
	width: 100%;
}

.contact-form textarea {
	height: 10rem;
}

.list {
	margin-left: 1.3rem;
	margin-bottom: 5%;
}