/* CSS Document */

ul {
    font-size: 12px;
    color: #000000;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 17px;
}

ul.list_two {
  list-style-type:none; /* remove the bullets */
  margin:0; /* 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:350px; /* fix the width of the list items which
               would default to 100% */
  padding-top: 34px;
}
ul.list_two a, ul.list_two a:visited, ul.list_two 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:350px; /*set the width to be the same as the ul width */
  text-indent:20px; /* move the link text 5px to the right */
  background-color: #ffffff; /* make the background color red */
  color:#000000; /* make the text color white */
  line-height: 23px;
}
    ul.list_two a:hover {
        text-decoration: none;
        display: block;
        /* change the background to blue on :hover */
        color: #000000;
    }
