html {
	background: #f5faff;
}
body {
	background-color: #fafafa;
	box-shadow: 0 0 5px grey;
	font-family: 'Open Sans', Verdana, sans-serif;
	font-weight: 300;
	margin: 0;
}
header {
	background: #fff;
	border-top: 4px solid #0fa6bc;
	text-align: center;
}
.logo a {
	color: #fff;
	font-family: 'Open Sans Condensed', sans-serif;
	font-size: 2.5em;
	text-decoration: none;
}
.logo a img {
	background-color: white;
	display: block;
	padding: 10px;
	height: 80px;
	margin: 0 auto;

}
.logo a:hover {
	text-shadow: 0 0 1px #777;
}
.logo span {
	font-size: 16px;
}
.container {
	margin: auto;
	padding: 1em;
	max-width: 900px;
}
nav {
	background-color: #eee;
	background-image: linear-gradient(#fff, #eee);
	box-shadow: 0 0 1px #555;
	border-radius: 5px;
	text-align: center;
}
nav a {
	display: inline-block;
	font-size: 16px;
	padding: 10px;
	text-decoration: none;
	transition: background-color 0.5s;
}
nav a:hover {
	background-color: #FBD00F;
}
nav a:link,
nav a:visited {
	color: #555;
}
.current:link,
.current:visited {
	background-color: #FBD00F;
}
a.selected {
	font-weight: bold;
}
aside {
	text-align: right;
	margin: 1em;
}
section {
	line-height: 20px;
	min-height: 400px;
}
section a:link,
section a:visited {
	color: blue;
	text-decoration: none;
}
section a:hover {
	color: red;
	text-decoration: underline;
}
article {
	text-align: justify;
}
.copyright {
	color: #555;
	font-size: 11px;
	padding: 1em;
	padding-bottom: 2em;
	text-align: center;
}
ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}
ul.index {
	list-style-type: circle;
	padding: 10px 50px;
}
.price {
	background-color: white;
	border: 5px solid #fff;
	border-radius: 3px;
	box-shadow: 0 0 4px #aaa;
	margin: 30px auto;
	text-align: center;
}
.price caption {
	color: #777;
	font-weight: bold;
	padding: 1em 0;
}
.price thead {
	color: #333;
	background-color: #E6E3E4;
	background-image: linear-gradient(#E6E3E4, #EAE7E8, #E6E3E4);
	font-size: 14px;
	font-weight: bold;
}
.price td {
	padding: 1em;
	border-bottom: 1px solid #eee;
}
.list {
	background-color: #fff;
	border-collapse: collapse;
	box-shadow: 0 0 4px grey;
	margin: auto;
}
.list td,
.list th {
	border: 2px solid #eee;
	padding: 10px;
}
.list thead {
	background-color: #eee;
}
.list tbody tr {
	transition: background-color 0.5s;
}
.list tbody tr:hover {
	background-color: #F7F5D1;
}
h1,
h2 {
	color: #555;
	font-family: 'Open Sans Condensed', sans-serif;
	line-height: 1em;
	text-align: center;
}
h1 {
	font-size: 2em;
	text-shadow: 0 1px 3px #bbb;
}
h2 {
	font-size: 1.5em;
}
h2.tog {
	text-align: left;
	text-decoration: dashed underline;
	cursor: pointer;
	font-weight: normal;
	font-size: 1.3em;
}
h2.tog + div {
	display: none;
	background-color: #e8faed;
	padding: 1em;
	margin-bottom: 2em;
	text-align: justify;
	transition: all 1s;
}
b.tog {
	cursor: pointer;
}
.discount {
	background-color: #F9F3C1;
	border: 1px solid #aaa;
	border-radius: 5px;
	padding: 40px;
	text-align: center;
}
.discount h1 {
	margin: 0 0 20px;
}
.payment-options {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.payment-options a {
	border: 1px solid grey;
	border-radius: 3px;
	box-shadow: 0 0 2px #0fa6bc;
	margin: 1em;
	padding: 2em;

}
.payment-options a:hover {
	box-shadow: 0 0 4px #0fa6bc;
}
.payment-options img {
	max-height: 3em;
}
ul.payment {
	list-style-type: circle;
}
ul.payment li {
	margin: 1.5em;
}
.payment-process li {
	margin-top: 2em;
}
.payment-process img {
	max-width: 100%;
}
.block {
	background-color: white;
	padding: 0.5em 1em;
	margin: 0.5em;
	border-top: 1px solid #ddd;
	border-right: 3px solid #ddd;
	border-bottom: 3px solid #ddd;
	border-left: 1px solid #ddd;
	border-radius: 5px;
}
a[href$=pdf]:before {
	color: white;
	content: "PDF";
	background-image: linear-gradient(#ff5555, red);
	border-radius: 3px;
	font-size: 0.4em;
	font-weight: bold;
	margin: 1em;
	padding: 0.5em;
	vertical-align: top;
}
.documents {
	margin: 0 auto;
	padding: 1em;
	overflow: scroll;
}
.documents td {
	padding: 1em;
}
.documents tbody tr:hover {
	background-color: #f7f5d1;
}
.documents thead {
	background-color: #eee;
	text-align: center;
}
.flex-container {
	align-items: flex-start;
	font-size: 0.8em;
	display: flex;
	justify-content: space-around;
}
.notification {
	background-color: #fdffe8;
	border: 1px solid #ddd;
	margin: 3em 1em;
	padding: 1em;
}
.notification h1 {
	font-size: 1.5em;
}
.notification p {
	text-indent: 1em;
}
form {
	margin: 1em;
	padding: 1em;
	border: 1px solid lightgrey;
	border-radius: 4px;
}
form p {
	text-align: center;
}
input {
	border-radius: 3px;
	padding: 0.4em 0.6em;
}
.emergency-status {
    margin: 0 auto;
}
.emergency-status td {
    padding: 10px;
    border-bottom: 1px solid rgb(235, 234, 234);
}

/*
* Mobile
*/
@media (max-width: 600px){
.documents {
	padding: 0;
}
.documents td {
	padding: 1em 5px;
}

}