/* CSS Document */
/* Make Body darker shade than overall theme, and make font color white, no bold or italics, and font family Arial*/
Body {background-color:Black;
font-family: Arial; 
color: #FFFFFF;
font-weight: normal;}

/* Make Heading 1 a 23-25 pt font-size, and Heading 2 a 13-15 pt font-size */
h1 {Font:25pt Arial; Font-weight:bold; Line-height:30pt;}
h2 {font:15pt Arial; Font-weight:bold; line-height:20pt;}

/* Underline, and Highlight when cursor hover over text */
A {text-decoration:none;}
A:link { text-decoration:none; color:#999999 }
A:visited { text-decoration:none; color:#999999 }
A:hover { text-decoration: underline overline; color:#999999 }