.start-button {
	cursor: default;
}

.stop-button {
	cursor: default;
}

.simple-player-container {
    float: left;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
.simple-player-container > div > ul {
    margin: 0;
    padding-left: 0;
}
.simpleplayer-play-control {
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    background-color: transparent;
    background-image: url('../play.png');
    background-repeat: no-repeat no-repeat;
    background-size: 16px 16px;
    background-position: 6px 4px;
    display: block;
    cursor: pointer;
    width: 24px;
    height: 24px;
}
.simpleplayer-play-control:hover {
    background-color: #a0a0a0;
    box-shadow: 0px 0px 2px #CCC;
}
.simpleplayer-pause-control {
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    background-color: transparent;
    background-image: url('../pause.png');
    background-repeat: no-repeat no-repeat;
    background-size: 16px 16px;
    background-position: 4px 4px;
    display: block;
    cursor: pointer;
    width: 24px;
    height: 24px;
}
.simpleplayer-pause-control:hover {
    background-color: #a0a0a0;
    box-shadow: 0px 0px 2px #CCC;
}
.simpleplayer-stop-control {
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    background-color: transparent;
    background-image: url('../stop.png');
    background-repeat: no-repeat no-repeat;
    background-size: 16px 16px;
    background-position: 4px 4px;
    display: block;
    cursor: pointer;
    width: 24px;
    height: 24px;
}
.simpleplayer-stop-control:hover {
    background-color: #a0a0a0;
    box-shadow: 0px 0px 2px #CCC;
}
.simpleplayer-stopped-control {
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    background-color: transparent;
    background-image: url('../stopped.png');
    background-repeat: no-repeat no-repeat;
    background-size: 16px 16px;
    background-position: 4px 4px;
    display: block;
    cursor: default;
    width: 24px;
    height: 24px;
}
