
/* Remove the navbar's default margin-bottom and rounded borders */ 
.navbar {
	margin-bottom: 0;
	border-radius: 0;
}
    
/* Add a gray background color and some padding to the footer */
footer {
	background-color: #f2f2f2;
	padding: 25px;
}


/*==== To Multiple Dropdown ==========*/
.open > .dropdown-menu {
    display: block;
	/*opacity: 1 !important; filter: alpha(opacity=100) !important;*/
    /*-webkit-transition:opacity 0.3s;-o-transition:opacity 0.3s;transition:opacity 0.3s;*/
	-webkit-animation:_fadeInDown 0.4s;-o-animation:_fadeInDown 0.4s;animation:_fadeInDown 0.4s;
}
.dropdown-submenu {
    position: relative;
}
.dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -6px;
}