* {
	margin: 0;
}

html {
	height: 100%;
}

body {
	text-align: center;
	font-family: sans-serif;
	font-size: 16px;
	color: #1c5470;
	height: 100%;
	background: #ede6e6;
}

.wrapper {
	min-height: 100%;
	position: relative;
}

.logo {
	max-width: 50%;
}

.header {
	padding: 25px 0 0 0;
}

.content {
	padding-top: 55px;
	padding-bottom: 100px;
}

.subjects {
	list-style: none;
	text-transform: uppercase;
	padding: 0;
}

.subjects li {
	margin: 0 5px 8px 0;
}

.contact {
	margin-top: 40px;
	text-transform: uppercase;
}

.contact p a {
	display: block;
	padding-top: 5px;
	color: #1c5470;
	text-transform: lowercase;
}

.contact p a:hover {
	text-decoration: none;
}

.footer {
    width: 100%;
    height: 50px;
    position: absolute;
    bottom: 0;
    left: 0;
    text-align: right;
}

.footer p{
	font-size: 14px;
	padding-right: 5%;
	color: #000;
}

.footer p span{
	display: block;
	padding-top: 5px;
}

@media only screen and (min-width: 800px) {
	.subjects li {
		display: inline;
		line-height: 1.8em;
	}

	.subjects li:after {
		content: "|";
		display: inline-block;
		padding-left: 10px;
	}

	.subjects li:nth-child(3n):after {
		content: "";
		display: block;
	}

	.subjects li:last-child:after {
		display: none;
	}
}





