@charset "utf-8";
/* CSS Document */

#footer {
	padding: 10px 0 0 0;
	height: 66px;
	background-image: url(images/footer_background.jpg);
	background-repeat:repeat-x;
}
#footer p {
	font-size:15px;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	text-align:center;
	color:#cfcfcf;
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0 0 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
#footer a {	
	color:#cfcfcf;	
	text-decoration: none;
}
#footer a:hover {
	color:#cfcfcf;	
	text-decoration:underline;
}