/* NAVBAR
-------------------------------------------------- 
|   
|   The wrapper is the entire colum at the top 
|   - Set the background color here
|   - Set the height of the colum here (change .carousel margin top, so it machtes the height)  
|
|   The navbar is the div containing the content of the header   
|   - Set font size, color and active background here (li a)
|
| */

/* Special class on .container surrounding .navbar, used for positioning it into place. */
.navbar-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  height: 95px;
  background-color: #f4f4f4;
  color: #333;
-webkit-box-shadow: 4px 4px 19px -1px rgba(0,0,0,0.64);
-moz-box-shadow: 4px 4px 19px -1px rgba(0,0,0,0.64);
box-shadow: 4px 4px 19px -1px rgba(0,0,0,0.64);

  
}

.navbar {
  margin-top: 25px;
}

.navbar .navbar-brand {
  margin-top: -35px;
}

.navbar ul {
  margin-top: 0px;
}

.navbar li {
  margin-right: 5px;
}


.navbar-nav li a {
  font-size: 15px;
  color: #333;
  font-weight: 400;
} 

.navbar-nav li.active a, .navbar-nav li a:hover, .navbar-nav li a:focus   {
  color: #666;
  background-color: transparent;
} 



.navbar-header span {
  color: #333 !important; 
}

/* Collapsed navigation button */
.navbar-toggle, .navbar-toggle .icon-bar {
    border-color: #333;;
}

.nav .open > a, .nav .open > a:hover, .nav .open > a:focus {
    color: #ccc;
    background-color: transparent;
}

.nav .open > a {
  color: #ccc;
}

.navbar-nav > li > .dropdown-menu {
    border-radius: 2px;
    border-top-right-radius: 0;
    min-width: 200px;
}

.dropdown-menu li > a {
  color: #fff;
}

.dropdown-menu  li.active > a, 
.dropdown-menu  li.active > a:focus, 
.dropdown-menu  li.active > a:active, 
.dropdown-menu  li.active a, 
.dropdown-menu  li > a {

    background-color: #fff;
    border-bottom: none !important;
    color: #444;
}

.dropdown-menu  li > a:hover,
.dropdown-menu  li.active a:hover {
  background-color: #999 !important;
  color: #fff !important;
  margin-right: -5px;
}

.navbar-collapse {
  overflow: hidden; 
}







