/*

For an excellent CSS reference please see:
http://www.htmlhelp.com/reference/css/properties.html

So, here is a break down of the different properties in the "body" tag.

margin : controls the amount of space giving to all object in the browser window. With it set to 0, there should be no space between images and the frame of the browser

background : controls what the background of the page looks like. You can include images here, as well as colour information. eg: a page with a image and a bg color defined:

body{
	background: url(../backgrounds/pawn.png) #f0f8ff;
}

font-family: a list of font 'types', from specific to general. serif, sans-serif are defaults...

font-size: can be specified in a number of measurements. I suggest 'px' (pixel) mesaurements for cross-platform reasons - fonts seem to match better when defined this way.

color: a hex value that defines the color of the text.

*/
body{
	margin:0;
	background:#000000;
	font-family:verdana, sans-serif;
	font-size:10px;
	color:#DCDCDC;
	background-color: #000000;
}

/*
vertical-align: this makes it so that all TD cells are vertically aligned. (this should really be in the TR listing... it might still work tho :)
*/
td{
	font-family:verdana, sans-serif;
	font-size:10px;
	vertical-align:top;
	color:#CCCCCC;
	
}
/*
text-decoration:  underline || overline || line-through || blink 
! NOTE ! - do NOT use blink! Gods, its soooooo baddddd.

here are the different A tag references:
A:link, A:visited, A:active

so if you want different colors for visited links, you'd have:

a:visited{
	color:#663399;
}

*/
a{
	color:#FF0000;
	text-decoration:none;
}
a:hover{
	text-decoration:underline;
}
a:visited{
	color:#FF0000;
}
/*

test-transform:  capitalize | uppercase | lowercase;

*/
h3 {
	text-transform: uppercase;
	font-size: 14px;
}
h4 {
	text-transform: uppercase;
	font-size: 10px;
}