#list  {
  width: auto;
  
}

#list  ul {
  list-style-type: square;
  margin: 0 0 0 20px;
  padding: 0;
}
 
 
#list  li {
  
  border-bottom: 1px solid #ccc;
  font-size:14px;
  
  width: auto;
  
}
 
#list  li:last-child {
  border: none;
}
 
#list  li a {
  text-decoration: none;
  color: #515151;
  display: block;
  width: auto;
  cursor: default;
 
  -webkit-transition: font-size 0.3s ease, background-color 0.3s ease;
  -moz-transition: font-size 0.3s ease, background-color 0.3s ease;
  -o-transition: font-size 0.3s ease, background-color 0.3s ease;
  -ms-transition: font-size 0.3s ease, background-color 0.3s ease;
  transition: font-size 0.3s ease, background-color 0.3s ease;
}
 
#list  li a:hover {
  
  background: #a4bee7;
   cursor: default;
}