.switch-button-label {
    float: left;
    cursor: pointer;
}

.switch-button-label.off {
    color: #f0f0f0;
}

.switch-button-label.on {
    color: #f0f0f0;
}

.switch-button-background {
    float: left;
    position: relative;

    background: #ccc;
    border: 1px solid #aaa;

    margin: 5px 10px;

    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;

    cursor: pointer;
}
.switch-button-background.checked {
    background: #2fff17;
}

.switch-button-button {
    position: absolute;

    left: -1px;
    top : -1px;

    background: #FAFAFA;
    border: 1px solid #aaa;

    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}
