/*Used to detect the user's screen width 
and ajust if the dropdown menu in the nav 
will dropdown when click*/

@media (min-width: 768px) {
	ul.nav li.dropdown:hover ul.dropdown-menu {
		display: block;
	}
}