@charset "UTF-8";
/* CSS Document */

#footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 20px 0 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	color: white;
	text-align: center;
	font-size: 80%;
}
#footer a {
	color: white;
	text-transform: uppercase;
	text-decoration: none;
}
#footer a:focus {
	outline: dotted 1px white;
}
#footer a:hover  {
	text-decoration: underline;
}

