/* CSS Document */
#player {
margin: 0;
padding: 0;
font-family: sans;
font-size: 12px;
width: 210px;
}
#playlist {
border: solid 5px #555;
font-family: sans;
font-size: 12px;
background-color: #777;
list-style: none;
margin: 0px;
padding: 0px;
width: 200px;
}
#playlist li:nth-child(even) {
background-color: #888;
}
#playlist li:nth-child(odd) {
background-color: #777;
}
#signature {
border: solid 5px #555;
border-bottom-left-radius: 10px;
border-bottom-right-radius: 10px;
font-family: sans;
font-size: 12px;
background-color: #888;
color: white;
list-style: none;
margin: 0;
padding: 0;
width: 200px;
}
#playlist li a,
#playlist li a:visited,
#playlist li a:hover {
color: white;
padding-left: 2px;
padding-right: 2px;
text-decoration: none;
}

