@charset "utf-8";
body  {
	background: #000000;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #ffffff;
}
.logo {
	padding: 10px;
}

a img {
	border: none; 
}

/*
 *  I am told this is bad for accessibility, eliminating use of the site by users of tab-based browsers.
 *  In all fairness I think this outline-on-focus behaviour was implemented without thinking how stupid
 *  it makes web pages look when they've got sparse colour on black backgrounds.  I don't see any way of
 *  pleasing everybody so hopefully the site strucure is simple enough that they will get where they want
 *  to go by trial and error (I know, I'm horrible...).  The proper solution is probably to add a second
 *  "rollover" image to be used when an image link is focused upon (via CSS a:focus property), which could
 *  be pursued if accessibility becomes an issue for this site.  rphair Tue Jun 16 00:23:47 GMTST 2009
 */
/* a
{
	outline: none;
} */
