.switch-button-label {
    float: left;
    font-size: 12px;
    cursor: pointer;
    font-weight: bold;
    line-height: 22px;
}

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

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

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

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

    margin: 1px 10px;

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

    cursor: pointer;
}

.switch-button-button {
    position: absolute;

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

    background-image: -webkit-linear-gradient(top, #757B81 0%, #303335 100%); 
	background-image: -moz-linear-gradient(top, #757B81 0%, #303335 100%); 
	background-image: -o-linear-gradient(top, #757B81 0%, #303335 100%); 
	background-image: -ms-linear-gradient(top, #757B81 0%, #303335 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#757B81, endColorstr=#303335);
    border: 1px solid #aaa;

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