/* CSS Document     CSS from tutorials of www.alsacreations.com/articles  */

.menu li {
float: left;
list-style-type: none;
list-style-image: none;
}

.menu a {
margin: 5px 1px; 
width: 85px;
height: 16px;
display: block;
text-align: center;
border: 1px solid gray;
text-decoration: none;
color: blue;
background: yellow;
}

.menu ul li  {
  list-style-type: none;
  list-style-image: none;
}

.menu a:visited {
text-decoration:none;
color: blue;
}

.menu a:hover {
background: blue;
color: yellow;
border: 1px solid gray; 
}

