/* Footer Block */
#footer {
	position: relative;
	z-index: 1;
	clear: left;
	height: 60px;
	width: 100%;
	background-color: #262626;
	font-family: 'Roboto', sans-serif;
}

/* Footer Info */
.footer-info {
	position: absolute;
	top: 10px;
	width: 100%;
	text-align: center;
	color: #a9a9a9;
}

/* Footer Links */
.footer-info a {
    color: #a9a9a9;
    text-decoration: none;
}

/* Change color of links on hover */
.footer-info a:hover {
	color: #ffffff;
}


/* Unique styles for screen resolution of 1024px and below */
@media screen and (max-width: 1024px) {
	#footer {
		clear: right;
	}
}