@charset "UTF-8";
/* CSS Document */

@import "compass/css3";


#listy ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

#listy li {
  font:  Helvetica, Verdana, sans-serif;
  padding-bottom:15px;
  border-bottom: 1px solid #ccc;
}

#listy li:last-child {
  border: none;
}

#listy li a {
  text-decoration: none;
    background: #36C;
border-radius: 3px;
color:#fff;
padding:5px;
  -webkit-transition: font-size 0.3s ease, background-color 0.3s ease, box-shadow 0.1s ease;
  -moz-transition: font-size 0.3s ease, background-color 0.3s ease, box-shadow 0.1s ease;
  -o-transition: font-size 0.3s ease, background-color 0.3s ease, box-shadow 0.1s ease;
  -ms-transition: font-size 0.3s ease, background-color 0.3s ease, box-shadow 0.1s ease;
  transition: font-size 0.3s ease, background-color 0.3s ease, box-shadow 0.1s ease;
  	
  display: block;
  width: ;
}

#listy li a:hover {
  font-size: 130%;
  background: #69F;
border-radius: 3px;
color:#fff;
padding:5px;
-webkit-box-shadow: 0px 5px 12px 1px rgba(200,200,200,1);
	-moz-box-shadow: 0px 5px 12px 1px rgba(200,200,200,1);
	box-shadow: 0px 5px 12px 1px rgba(200,200,200,1);
}
