/* set the background-color to red */
.navbar-inner {
  /* remove the gradient */
  background-image: none;
  /* set font color to white */
  color: white;
  font-family: 'Open Sans', sans-serif;

  text-transform: uppercase; 
  font-size: em(14px); 
  font-weight:600;
  border: 0px
}

.navbar-inverse .navbar-inner {
  background: #0080FE;
}

/* menu items */

/* set the background of the menu items to pink and default color to white */
.navbar .nav > li > a {
  background-color: #0080FE;
  color: white;
}

.navbar .nav > li {
  background-color: #0080FE;
  height: 34px;
}

/* set hover and focus to lightblue */
.navbar .nav > li > a:focus,
.navbar .nav > li > a:hover {
  background-color: white;
  color: #0056A9;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  border-radius: 40px;
  
}

/* set active item to darkgreen */
.navbar .nav > .active > a,
.navbar .nav > .active > a:hover,
.navbar .nav > .active > a:focus {
  background-color: #0056A9;
  color: white;
}

/* set font color and background of the project name (brand) */
.navbar .brand {
  background-color: #0056A9;
  color: white;
}

.navbar .nav {
  margin: 15px 10px 0 50px;
}

.nav-collapse {
  height: 74px;
}

body{
    background: #fafafa; color: #000; font-family: 'Open Sans', sans-serif; font-size: 14px; font-weight: 400;
}
