/*開關按鈕*/
.Switch {
	margin-top: auto;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: auto;
	padding: 0;
}
.Switch li {
	clear: both;
	line-height: 44px;
	border-bottom: 1px solid #CCC;
	list-style: none;
}
.Switch input {
	display: none
}
.Switch label {
	width: 30px;
	background: #B2B2B2;
	height: 15px;
	border-radius: 14px;
	box-shadow: 0 1px 2px rgba(0,0,0,.1) inset;
	margin-bottom:0px;
}
.Switch label em {
	width: 20px;
	height: 20px;
	float: left;
	margin: -3px;
	border-radius: 13px;
	box-shadow: 0px 1px 1px rgba(0,0,0,.2);
	background: #ECECEC;
}
.Switch input:checked + label {
	background: rgba( 61,157,204, .67 )
}
.Switch input:checked + label em {
	float: right;
    background: rgba( 61,157,204, 1 )
}
.Switch input:disabled + label {
	opacity: 0.5
}