/*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:#e6eee4;
font-family: Arial, Verdana, sans-serif;
font-size: 93%;
color: #000;
margin:auto;
padding:0;
text-align:left;
}

/*this changes the headings, you can alter the size font type, and the color of these */

h1 { font-family: 'Trebuchet MS', Helvetica, sans-serif; font-size: 160%; color: #426F11; text-align:center;}
h2 { font-family: 'Trebuchet MS', Helvetica, sans-serif; font-size: 135%; color: #8cad43; text-align:center;}
h3 { font-family: 'Trebuchet MS', Helvetica, sans-serif; font-size: 115%; color: #8cad43; text-align:center;}

/*This affects how your links look. At the moment, they show as blue, and underlined. They change to white text with a blue background color when the pointer passes over them */

a { font-family: Arial, Verdana, sans-serif;
font-size: 100%; color: #60803D; text-decoration: underline;
}
a:visited { color: #8cad43; text-decoration: underline } 
a:hover { font-family: Arial, Verdana, sans-serif;
font-size: 100%;
background-color: #60803D;
color: #fff;
}

