/* ------------------    Declarations for footer section      ------------------ */

footer {
	width: auto;
	color: red;
	padding-top: 20px;
	padding-bottom: 20px;
	text-align: center;
	border-top: 3px solid #135;
	font-size: 80%;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;

	-webkit-flex-flow: row wrap;
	justify-content: space-around;
}

#footer-navigation {
	width: 100%;
	margin: 0;
	margin-bottom: 20px;
	padding: 0;
	text-align: left;
	list-style: none;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;

	-webkit-flex-flow: row wrap;
	justify-content: space-around;
}
#footer-navigation li {
	float: left;
	padding-right: 15px;
	margin: 0;
}
#footer-navigation a {
	color: #555;
	font-weight: bold;
	text-decoration: none;
}
#footer-navigation a:hover {
	color: #135;
}

footer p {
	width: 100%;
	margin: 0;
	font-weight: bold;
	text-align: center;
	color: #135;
}

@media only screen and (max-width: 620px) {
#footer-navigation {
	margin-left: 5px;
}
}
