/* Style the links inside the pill navigation menu */
.pill-nav a {
  display: inline-block;
  color: #3366ff;
  text-align: center;
  padding: 10pt;
  text-decoration: none;
  font-family: Calibri,'Segoe UI',sans-serif;
  font-size: 11pt;
  background-color: transparent;
  margin:1pt;
  border-style: solid;
  border-width: thin;
  border-color: #9DD4DD;
  border-radius: 23px 23px 23px 23px;
  -moz-border-radius: 23px 23px 23px 23px;
  -webkit-border-radius: 23px 23px 23px 23px;
  border: 1pt;
}

/* Change the color of links on mouse-over */
.pill-nav a:hover {
  background-color: #9DD4DD;
  color: black;
}

/* Add a color to the active/current link */
.pill-nav a.active {
  background-color: dodgerblue;
  color: white;
}