/*#5FA418*/

    .onoffswitch {position:relative;width:60px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;margin-right:10px;box-shadow: 0 0 3px #333;}
    .onoffswitch-checkbox {display:none;}
    .onoffswitch-label {
    display: block; overflow: hidden; cursor: pointer;
    border: 0px solid #999999; border-radius: 0px;
    }
    .onoffswitch-inner {
    display: block; width: 200%; margin-left: -100%;
    -moz-transition: margin 0.3s ease-in 0s; -webkit-transition: margin 0.3s ease-in 0s;
    -o-transition: margin 0.3s ease-in 0s; transition: margin 0.3s ease-in 0s;
    }
    .onoffswitch-inner > span {display:block;float:left;position: relative; width: 50%; height: 26px; padding: 0; line-height: 25px;
    font-size: 12px; color: white; font-family: Trebuchet, Arial, sans-serif; font-weight: bold;
    -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
    }
    .onoffswitch-inner .onoffswitch-active {
    padding-left: 14px;
    background-color: #fff; color: #FFFFFF;
    }
    .onoffswitch-inner .onoffswitch-inactive {
    padding-right: 14px;
    background-color: #fff; color: #FFFFFF;
    text-align: right;
    }
    .onoffswitch-switch {
	font-size:12px;
    display: block; width: 35px; margin: 0px; text-align: center;
    border: 0px solid #999999;border-radius: 0px;
    position: absolute; top: 0; bottom: 0;
    }
    .onoffswitch-active .onoffswitch-switch {background:#ac00d5;left:0;}
    .onoffswitch-inactive .onoffswitch-switch {background:#333;right:0;}
    .onoffswitch-active .onoffswitch-switch:before {
    content: " "; position: absolute; top: 0; left: 35px;
    border-style: solid; border-color: #ac00d5 transparent transparent #ac00d5; border-width: 12px 6px;
    }
    .onoffswitch-inactive .onoffswitch-switch:before {
    content: " "; position: absolute; top: 0; right: 35px;
    border-style: solid; border-color: transparent #333 #333 transparent; border-width: 13px 6px;
    }
    .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner {
    margin-left: 0;
    }
