#music {
    background: #bd87eb;
    background: -moz-linear-gradient(top,  #bd87eb 0%, #b57ae8 40%, #ab62ea 100%);
    background: -webkit-linear-gradient(top,  #bd87eb 0%,#b57ae8 40%,#ab62ea 100%);
    background: linear-gradient(to bottom,  #bd87eb 0%,#b57ae8 40%,#ab62ea 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#bd87eb', endColorstr='#ab62ea',GradientType=0 );

    font-size: 1em;
    letter-spacing: 0.1em;
    padding: 10px 0;
    margin: 10px auto;
    color: #333;
    border-radius: 5px;
    width: 100px;
    height: 130px;
    position: sticky;
    top: 50px;
}
#screen {
    font-size: 12px;
    height: 60px;
    margin: 0 5px;
    padding: 3px;
    background: white;
    overflow: hidden;
}
#screen p {
    margin: 5px 0;
    padding: 0;
}
#songtitle {
    font-weight: bold;
    overflow: hidden;
    white-space: nowrap;
}

#songartist {
  text-align: center;
}
#mucntrls {
    margin-top: 20px;
    text-align: center;
}
#mucntrls img {
    display: inline-block;
    width: 20px;
    height: 20px;
}
#play, #pause, #prev, #next {
    text-align: center;
}
#prev, #next {
    letter-spacing: -2px;
}
#play {
    display: none;
}
#play:hover, #pause:hover, #prev:hover, #next:hover {
    cursor: pointer;
}

#playlist {
    width: 100%;
	padding: 25px;
    font-size: 0.7em;
}
#songList {
    text-align: center;
}
#playlist ul li {
    list-style-type: none;
    background: url(../img/note.gif) left no-repeat;
    padding-left: 15px;
    margin: 5px auto;
}

#playlist ul li:hover {
    background-color: #ffccff;
}
