/********** footer.css **********/

#footer {
	width: 100%;								/* Footer spans the full width of the container */
	height: auto;								/* Automatic height dependent on content */
	float: left;								/* Float left */
	padding-bottom: 1.5em;						/* Spacing between the end of the footer and end of page, with the BG colour */
}
#bottom-menu {
	text-align: center;							/* Central alignment for the menu */
	padding: 0.7em 0 0 0;						/* Top and bottom padding for bottom menu */
	background-color: #808080;					/* Gray colour */
}
#bottom-menu li {
	display: inline;							/* Display the menu items adjacent to each other */
	padding-right: 80px;						/* Apply some spacing between menu items */
}
#bottom-menu li a {
	color: white;								/* Dark gray colour */
	text-transform: uppercase;					/* Capitalise menu links */
	font-weight: bold;							/* Bold type */
	font-size: 0.9em;							/* Smaller font size */
	text-decoration: none;						/* No underline */
}
#bottom-menu li a:hover {
	color: white;								/* White colour on hover of menu items */
}
#footer a:hover {
	color: gray;								/* Gray colour */
}
#footer a {
	color: #333334;								/* Dark gray colour */
	font-weight: bold;							/* Bold type */
	text-decoration: underline;					/* Underlined */
}
#footer p {
	padding-left: 15%;
	padding-bottom: 0.7em;
}
