div.tog {
	border-radius:20px;
	display:block;
	box-shadow:inset 0 0 2px rgba(0,0,0,.6);
margin:1em auto;
	height:20px;
	width:50px;
	position:relative;
	cursor:pointer;
	font:11px/11px arial;
	background:#bbb;
	-webkit-transition: all .2s ease;-moz-transition: all .2s ease;-o-transition: all .2s ease;transition: all .2s ease;
}
div.tog:after {
	content:'';
	box-shadow: 0px 2px 2px rgba(0,0,0,.6);
	border-radius:20px;
	display:block;
	height:14px;
	width:14px;
	background:#fff;
	position:absolute;
	top:3px;
	left:4px;
	-webkit-transition: all .2s ease;-moz-transition: all .2s ease;-o-transition: all .2s ease;transition: all .2s ease;
}
div.tog:before {
	content:'OFF';
	position:absolute;
	right:8px;
	top:4px;
	color:#fff;
}
div.tog:hover:after {
	left:4px;
}
div.tog.on:before {
	content:'ON';
	right:25px;
}
/* przeniesione do theme.css
div.tog.on {
	background:#993d6b;
}  */
div.tog.on:after {
	left:32px;
}
div.tog.on:hover:after {
	left:32px;
}