/*Modify BootStrap container to remove space above footer.*/
.container:before{content:none;}

/*Shrink the font size in the drop downs to match the main menu*/
.dropdown-menu{font-size:inherit;}

/*Get rid of the space betwen the sidebar menu and the main menu*/
.navbar{
	margin-bottom:0px !Important;
	border-style:none;
	border-radius: 0;
}

/*Menu bar style for larger screens - These styles affect the hamburger menu*/
@media (min-width: 768px)
{
/*These cause problems with the hamburger menu*/
ul.nav.navbar-nav li:last-child {height:auto;}/*Horrid green navbar block*/
ul.nav.navbar-nav li {height:auto;vertical-align:middle;}/*Normal navbar block*/
#mainnavbar{min-height:35px;}/*Overall navbar height override 50px min-height in BootStrap*/
/*ul.nav.navbar-nav li a{margin-top:-5px;height:20px;}*//*Set height and center href using -margin*/
#mainnavbar li a {padding-top:10px;padding-bottom:5px;} /*Override bootstrap anchor padding to keep it from making the main navbat too tall*/

}


/* X-Small to Small devices (phones, 0 to 768px) */
@media  (min-width: 320px) and (max-width: 768px) 
{

/*Remove the decoration from the dropdown menu*/
.dropdown-menu {
 border:0px;
 border-radius:0px;
}

.navbar-nav a{font-size: 95%;width:100%;}
.dropdown-menu a{font-size: 80%;}

.navbar-nav li a{padding:9px;}
.nav>li>a {
    padding: 9px!important;
  }

/*hide the login link in the header for really small screens*/
.loginLogout{visibility:hidden;}
  
}


