Cascading Style Sheets

This is the basic form I use for my style sheets. A style sheet is an easy way to customize colors for your layout.

<style type="text/css">
<!--
A:link
{text-decoration: none; color:COLOR;}
A:visited
{text-decoration: none; color:COLOR;}
A:visited
{text-decoration: none; color:COLOR;}
A:active
{text-decoration: none; color:COLOR;}
A:hover
{text-decoration: none; color:COLOR; border:1 solid; border-color:COLOR; cursor:CURSOR}

body
{background-color:COLOR;
font-family:FONT;
color:COLOR;
font-weight:normal;
font-size:8pt;
line-height:9pt;

scrollbar-3dlight-color:COLOR;
scrollbar-arrow-color:COLOR;
scrollbar-base-color:COLOR;
scrollbar-darkshadow-color:COLOR;
scrollbar-face-color:COLOR;
scrollbar-highlight-color:COLOR;
scrollbar-shadow-color:COLOR;
scrollbar-track-color:COLOR; }

b
{color:COLOR; font-size: 8pt; font-family:FONT;}

td
{font-family:FONT;
color:COLOR;
font-weight:normal;
font-size:8pt;
line-height:9pt}

p.head
{font-family:FONT;
color:COLOR;
font-weight:normal;
font-size:8pt;
letter-spacing: 5px;
text-align:left}

input, textarea
{background:COLOR;
border: 1 solid COLOR;
font-family:FONT;
text-align: left;
color:COLOR;
font-weight:normal;
font-size:8pt;
filter: alpha(opacity=100)}
--></style>

All you need to do is copy and paste that and place it in between your HEAD tags. Also, replace COLOR with a hex code, and play around with the numbers if you want as well!