<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* 
general notes for future editors, i.e. not only for the css page:
please use em for fonts; em multiplies your base font, i.e. 2em * 10px = 20px, and therefore it is easy to change the entire font size of the site relatively in printer and mobile modes (if we choose to implement them in the future.)
the images are automatically set to have no border. i have no idea why an image would want a border so please don't remove that. also don't include random style="" things on the tags unless it's a &lt;span&gt; tag.
make sure alt attributes are assigned to all images! if they break, it's nice to know what they are. plus it's xhtml standard :Db

*/

body{
	background-color:#000000;
	color:#ffffff;
}

img{
	border:0;
}

div{
	margin:0;
	padding:0;
}

input{
	color: #ffffff;
	background: #000000;
	border: 1px inset #ff0000;
}

strong,b{
	color: #ff0000;
}

.link{
	color: #ff0000;
	}

h1,h2,h3,h4,h5{
color: #ff0000;
}

a  {
	font-family: Arial; 
	text-decoration: none; 
	color:#FFFFFF; 
	font-weight: bold 
	}
	
a:hover { 
	font-family:Arial; 
	text-decoration: none; 
	color:#FF0000; 
	font-weight: bold 
	}</pre></body></html>