<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.switch-button-label {
    float: left;

    font-size: 10pt;
    cursor: pointer;
	
	color		: #333;
}

.switch-button-label.off {
	/* color: #adadad;			gray */
	opacity		: 0.7;		/* This just makes it a bit "lighter" than whatever is set in switch-button-label above */
}

.switch-button-label.on {
    /* color: #0088CC;			grayish-blue */
}

.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: #FAFAFA;
    border: 1px solid #aaa;

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

.switch-wrapper {
	display: inline-block;
	position: relative;
	top: 3px;
}
</pre></body></html>