a img {  border: none; }
.playlist li {
    float: left;
    width: 95px;
    height: 95px;
    position: relative;
    margin-right: 10px;
}
.playlist li a {
    text-decoration: none;
}
.playlist li img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
    width: 77px;
    height: 77px;
    -moz-border-radius: 60px;
    -webkit-border-radius: 60px;
    -o-border-radius: 60px;
    -ms-border-radius: 60px;
    -khtml-border-radius: 60px;
    border-radius: 60px;
}
.playlist li .disc {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    background: url('img/cd.png') no-repeat;
}
.playlist li .info {
    background: #181818;
    display: block;
    position: absolute;
    top: -10px;
    left: -10px;
    width: 110px;
    height: 100px;
    padding-left: 100px;
    z-index: 2;
    display: none;
    overflow: hidden;
    -moz-border-radius: 60px;
    -webkit-border-radius: 60px;
    -o-border-radius: 60px;
    -ms-border-radius: 60px;
    -khtml-border-radius: 60px;
    border-radius: 60px;
}
.playlist li .info span {
    display: block;
    width: 600px;
}
.playlist li .info .artist {
    color: #FFF;
    margin-top: 30px;
}
.playlist li .info .name {
    color: #6d6d6d;
    font-size: 0.9em;
}
.playlist li:hover .info {
    display: block;
    z-index: 12;
}
.playlist li:hover .disc {
    z-index: 20;
}
.playlist li:hover img {
    z-index: 15;
}