/* CSS Document */
body {
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
color: #999999;
margin: 0px;
}
ul {
float: left;
/*this part will stop it moving when the page scrolls so you may not want to include it*/
position: fixed;
margin-left: 20px;
}
li {
width: 150px;
height: 15px;
margin-top: 3px;
border-style: solid;
border-width: 1px;
border-color: #64acd8;
font-weight: bold;
font-size: 120%;
background-color: #ffffff;
list-style: none;
padding: 3px;
}
li:hover {
background-color: #faffd8;
border-color: #004f7b;
}
a:link {
text-decoration: none;
color: #999999;
}
a:hover {
text-decoration: none;
color: #333333;
}
a:visited {
text-decoration: none;
color: #999999;
}
a:active {
text-decoration: none;
color: #FF0000;
}