.x-treelist-nav .x-treelist-item-text {
    line-height: 41px !important;
}

.delTR
{
    background-color:red !important;
    color: white;
}	  

.removeTR
{
   background-color:red !important;
   color: white;
   -webkit-animation: removeTR-animation .6s cubic-bezier(.65,-0.02,.72,.29);
   -o-animation: removeTR-animation .6s cubic-bezier(.65,-0.02,.72,.29);
   animation: removeTR-animation .6s cubic-bezier(.65,-0.02,.72,.29)
}

@keyframes removeTR-animation 
{	
     0% {
	  opacity: 1;
	  -webkit-transform: translateX(0);
	  -ms-transform: translateX(0);
	  -o-transform: translateX(0);
	  transform: translateX(0)
        }

    30% {
	  opacity: 1;
	  -webkit-transform: translateX(50px);
	  -ms-transform: translateX(50px);
	  -o-transform: translateX(50px);
	  transform: translateX(50px)
        }

    80% {
	  opacity: 1;
	  -webkit-transform: translateX(-800px);
	  -ms-transform: translateX(-800px);
	  -o-transform: translateX(-800px);
	  transform: translateX(-800px)
        }

   100% {
	  opacity: 0;
	  -webkit-transform: translateX(-800px);
	  -ms-transform: translateX(-800px);
	  -o-transform: translateX(-800px);
	  transform: translateX(-800px)
        }
}

.float-help{
	position:fixed;
	width:40px;
	height:40px;
	bottom:30px;
	right:30px;
	background-color:#3366cc;
	color:#FFF;
	border-radius:40px;
	text-align:center;
	box-shadow: 2px 2px 3px #999;
        font-size:22px;
        cursor:pointer; 
}

.float-help-pos{
	margin-top:10px;
}


.mySwitch {
	position: relative;
	display: inline-block;
	width: 40px;
	height: 20px;
}

.mySwitch input { 
	opacity: 0;
	width: 0;
	height: 0;
}

.mySlider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ccc;
	-webkit-transition: .4s;
	transition: .4s;
}

.mySlider:before {
	position: absolute;
	content: "";
	height: 16px;
	width: 16px;
        top: 2px;
	left: 4px;
	bottom: 4px;
	background-color: white;
	-webkit-transition: .4s;
	transition: .4s;
}

input:checked + .mySlider {
	background-color: #000;
}

input:focus + .mySlider {
	box-shadow: 0 0 1px #000;
}

input:checked + .mySlider:before {
	-webkit-transform: translateX(18px);
	-ms-transform: translateX(18px);
	transform: translateX(18px);
}

.mySlider.round {
	border-radius: 34px;
}

.mySlider.round:before {
	border-radius: 50%;
}
