.onoffswitch {
    position: relative;
	width: 90px;
    -webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.onoffswitch-checkbox {
    display: none;
}
.onoffswitch-label {
    border: 1px solid #ABADB3;
	border-radius: 0px;
	cursor: pointer;
    display: block;
	overflow: hidden;
}
.onoffswitch-inner {
	margin-left: -100%;
    width: 200%;
    -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:before, .onoffswitch-inner:after {
	color: white;
    float: left;
	font-family: Trebuchet, Arial, sans-serif;
    font-size: 16px;
	font-weight: bold;
	height: 30px;
	line-height: 30px;
	padding: 0;
	width: 50%;
    -moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.onoffswitch-inner:before {
    background-color: #6194FD;
	color: #FFFFFF;
    content: "ON";
    padding-left: 10px;
}
.onoffswitch-inner:after {
    background-color: #F8F8F8;
	color: #666666;
    content: "OFF";
    padding-right: 10px;
    text-align: right;
}
.onoffswitch-switch {
    background: #FFFFFF;
    border: 1px solid #ABADB3;
	border-radius: 0px;
	bottom: 0;
	margin: 0px;
    position: absolute;
	right: 53px;
	top: 0;
	width: 35px;
    -moz-transition: all 0.3s ease-in 0s;
	-webkit-transition: all 0.3s ease-in 0s;
    -o-transition: all 0.3s ease-in 0s;
	transition: all 0.3s ease-in 0s; 
    background-image: -moz-linear-gradient(center top, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0) 100%);
    background-image: -webkit-linear-gradient(center top, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0) 100%);
    background-image: -o-linear-gradient(center top, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0) 100%);
    background-image: linear-gradient(center top, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0) 100%);
}
.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner {
    margin-left: 0;
}
.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch {
    right: 0px; 
}