.switch {
	position: relative;
	display: inline-block;
	width: 60px;
	height: 18px;
	cursor: pointer;
  background-color: #CCC;
  border-radius:4px;
  border:inset 1px #000;

}

.switch .ss-on {
	position: absolute;
	display: block;
	width: 60px;
	height: 18px;
  background-color: rgba(0,150,0,0.8);
  box-shadow:inset 0px 0px 6px #666;
  border-radius:4px;
}

.switch .ss-slider {
	position: absolute;
  top: -3px;
	left: 0px;
	width: 30px;
	height: 20px;
	margin: 0 1px;
	/*background: url(../images/switch.png) -60px 0 no-repeat;*/
  background-color: #000;
  background-color: rgba(0,0,0,0.8);
  border-radius:2px;
  border:2px solid #AAA;
}