ul.menu1 {
  list-style-type:none; /* remove the bullets */
  margin:1px; /* remove the automatic margin that some 
               browsers use for the text-indent. */
  padding:0; /* remove the automatic padding that other
               browsers use for the text-indent. */
  width:180px; /* fix the width of the list items which
               would default to 100% */
  background:#FFFFFF; /* make the background color blanco */
  color:#666666; /* make the text color gris */
  font-family:Verdana; font-size:9pt
  }
ul.menu1 a {
  text-decoration:none; /* remove the default underline from
                           the links */
  display:block; /* make each link into a block so that
                    hovering over any area of the link 
                    will cause a change of background color */
  width:180px; /*set the width to be the same as the ul width */
  text-indent:10px; /* move the link text 5px to the right */
  color:#666666; /* make the text color white */
  background: url('../img/dot.gif') no-repeat left;
  font-family:Verdana; font-size:9pt
  }
  
ul.menu1 a:visited, ul.menu1 a:active {
  text-decoration:none; /* remove the default underline from
                           the links */
  display:block; /* make each link into a block so that
                    hovering over any area of the link 
                    will cause a change of background color */
  width:180px; /*set the width to be the same as the ul width */
  text-indent:10px; /* move the link text 5px to the right */
  color:#666666; /* make the text color gris */
  font-family:Verdana; font-size:9pt
  }
.menu1 a:hover {
  background-color:#FFCCCC; }
