/* desktop hover to display*/
.dropdown:hover > .dropdown-menu{
	display: block;
}
/* mobile fix float issue*/
@media only screen and (max-width:767px){
	.dropdown:hover > .dropdown-menu{
		float: none;
	}
}