.MenuLateral a.item:hover, .MenuLateral a.item:active, .MenuLateral a.item:focus{
  background-color: #0f69b4;
  color: white;
}
.MenuLateral a.subItem {
  color: #0f69b4;
  padding: 5px 5px 5px 35px;
}

.MenuLateral a.subItem:last-child {
  border-bottom: 1px solid #0f69b4;
}
.noMargingBottom{
	margin-bottom:0px; 
}


/*CSS PARA QUE EL CHECKBOX ACTUE COMO UN TOGGLE*/
.switch {   
    position : relative ;   
    display : inline-block;   
    width : 40px;   
    height : 20px;   
    background-color: #eee;   
    border-radius: 20px; }
    
.switch::after {  
    content: '';  
    position: absolute;  
    width: 18px;  height: 18px;  
    border-radius: 50%;  
    background-color: white;  
    top: 1px; 
    left: 1px;  
    transition: all 0.3s;}
    
.checkbox:checked + .switch::after {  
    left : 20px; }.checkbox:checked + .switch {  
    background-color: #61B329;}
