/* make text colours black
   this should outweight everything */
body, a,
#container #header *,
#container #main #subnav *,
#container #main #content *,
#container #main #buttons *,
#container #main #more_info *,
#container #main #stay_updated *,
#container #footer * {
	color: #000000;
}


/* not sure if this affects anything */
.hidden {
	display: none;
}


/* the centering confuses the shrink-to-fit in netscape 7.1 and below */
#container {
	margin: 0;
}


/* stop float drop in mozilla and ie/win
   we can also fix this (in mozilla) with #container { width: auto; }
   but this causes safari to set the #container width to the width of #content
   causing #buttons, #more_info and #stay_updated to wrap below
   sigh */
#stay_updated {
	margin-right: -1px;
}
.home #stay_updated {
	margin-right: -2px;
}


/* replace our background image blue dots with built-in bullets that the browser can print */
#main ul.disc {
	padding-left: 14px;
	list-style-type: disc;
}
#main ul.disc li {
	padding-left: 0;
	background-image: none;
}

