.switch {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 60px;
    height: 22px;
    padding: 3px;
    margin: 0 10px 10px 0;
    background: linear-gradient(to bottom, #eeeeee, #FFFFFF 25px);
    background-image: linear-gradient(rgb(238, 238, 238), rgb(255, 255, 255) 25px);
	background-image: -webkit-linear-gradient(top, #eeeeee, #FFFFFF 25px); border-radius: 18px;
	box-shadow: inset 0 -1px white, inset 0 1px 1px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    z-index:10;
}

.switch-input:checked ~ .switch-label {
    background: #76a841;
	box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15), inset 0 0 3px rgba(0, 0, 0, 0.2);
}
.switch-label, .switch-handle {
    transition: All 0.3s ease;
    -webkit-transition: All 0.3s ease;
    -moz-transition: All 0.3s ease;
    -o-transition: All 0.3s ease;
}
.switch-label {
    position: relative;
    display: block;
    height: inherit;
    font-size: 10px;
    text-transform: uppercase;
    background: #eceeef;
    border-radius: inherit;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.12), inset 0 0 2px rgba(0, 0, 0, 0.15);
}
.switch-label.crm {
	background: rgb(133, 255, 4);
}
.switch {
    cursor: pointer;
	margin-top: 5px;
	margin-bottom: -5px;    
}
.switch-input:checked ~ .switch-handle {
    left: 42px;
    box-shadow: -1px 1px 5px 
    rgba(0, 0, 0, 0.2);
}
.switch-handle {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 20px;
    height: 20px;
    background: linear-gradient(to bottom, #FFFFFF 40%, #f0f0f0);
    background-image: linear-gradient(rgb(255, 255, 255) 40%, rgb(240, 240, 240));
    background-image: -webkit-linear-gradient(top, #FFFFFF 40%, #f0f0f0);
    border-radius: 100%;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
}
.switch-input {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}
#sortable li {
	height: 30px;
	line-height: 30px;
	border: 1px solid #DDD;
	width: 360px;
	background: #FFF;
	font-weight: bold;
	display: block;
	position: relative;	
}
#sortable li:hover {
	cursor: grabbing;	
}
#sortable li a {
	color: #888;
	text-decoration: none;	
	display: inline-block;
	position: absolute;
	margin-left: 10px;
	line-height: 1.5em;
}
.drag-icon {
	display: inline-block;
	width: 30px;
	height: 30px;
	overflow: hidden;
	background: url(images/drag-drop.png) 31px 0px;	
}
.spinner-icon {
	float: right;
	display: inline-block;
	width: 30px;
	height: 30px;
	overflow: hidden;
	margin-right: -5px;
	background: url(images/spinner.gif) 0px 5px no-repeat;	
	display: none;
}
.drag-icon:hover {
	background: url(images/drag-drop.png) 0px 0px;	
	cursor: grabbing;
}