/*this first part is to set the font style, color and size of your text, as well as the background color of the page */

body { background-color:#030000; }


body, td { font:13px Verdana, Geneva, Arial, Helvetica, sans-serif; color:#FFFFFF; } 



/*this changes the headings, you can alter the size font type, and the color of these */

h1 { font-family: Verdana, Arial, sans-serif; color: #800000}
h2 { font-family: Verdana, Arial, sans-serif; color: #800000}
h3 { font-family: Verdana, Arial, sans-serif; color: #696969}

/*This affects how your links look. At the moment, they show as blue, and underlined. They change to red text when the pointer passes over them */

a { font-family: Verdana, Arial, sans-serif;
font-size: 100%; color: #d40708; text-decoration: underline;
}

a:hover { font-family: Verdana, Arial, sans-serif;
font-size: 100%;
color: #d40708;
} 

