.onoffswitch {
	position: relative; width: 35px;
	-webkit-user-select:none; -moz-user-select:none; -ms-user-select: none;
	vertical-align: middle;
}
.onoffswitch-checkbox {
	display: none;
}
.onoffswitch-label {
	display: block; overflow: hidden; cursor: pointer;
	border: 2px solid #8c8c8c; border-radius: 30px;
}
.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:before, .onoffswitch-inner:after {
	display: block; float: left; width: 50%; height: 12px; padding: 0; line-height: 12px;
	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:before {
	content: "";
	padding-left: 10px;
	background-color: #0077C0; color: #FFFFFF;
}
.onoffswitch-inner:after {
	content: "";
	padding-right: 10px;
	background-color: #F4F4F4; color: #8c8c8c;
	text-align: right;
}
.onoffswitch-inner-colored:before {
	content: "";
	padding-left: 10px;
	background-color: green; 
	color: #FFFFFF;
}
.onoffswitch-inner-colored:after {
	content: "";
	padding-right: 10px;
	background-color: red; 
	color: #8c8c8c;
	text-align: right;
}
.onoffswitch-switch {
	display: block; width: 10px; margin: 1px;
	background: #FFFFFF;
	border: 2px solid #8c8c8c; border-radius: 30px;
	position: absolute; top: 0; bottom: 0; right: 19px;
	-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; 
}
.onoffswitch-label .onoffswitch-inner-medium {
	margin-left: -14px !important;
}
.onoffswitch-label .onoffswitch-switch-medium {
	right: 11px !important;
}
.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner {
	margin-left: 0;
}
.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch {
	right: 0px; 
}
