
/* define a fixed width for the entire menu */
.navigation {
  width: 300px;
}

/* reset our lists to remove bullet points and padding */
.mainmenu, .submenus {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* make ALL links (main and submenus) have padding and background color */
.mainmenu a {
  display: block;
  background-color: #007DB8;
  text-decoration: none;
  padding: 10px;
  color: #000;
  
}

/* add hover behaviour */
.mainmenu a:hover {
    background-color: #007DB8;
}


/* when hovering over a .mainmenu item,
  display the submenus inside it.
  we're changing the submenus's max-height from 0 to 200px;
*/

.mainmenu li:hover .submenus {
  display: block;
  max-height: 200px;
}

/*
  we now overwrite the background-color for .submenus links only.
  CSS reads down the page, so code at the bottom will overwrite the code at the top.
*/

.submenus a {
  background-color: #CCC;
  color:black;
  font-style: italic;
}

/* hover behaviour for links inside .submenus */
.submenus a:hover {
  background-color: #666;
}
.mainmenu li a {
    border-bottom:1px solid #666666;
}
.submenus li a {
    border-bottom:1px solid #666666;
}
a.actives {
  color: red;
  
}
