/* CSS Document */

#secmenu {
	margin-bottom: 12px;
}
#secmenu nav {
}
#secmenu ul {
  overflow: auto;
  list-style-type: none;
}

#secmenu li {
  height: 20px;
  float: left;
  margin-right: 0px;
  border-right: 1px solid #aaa;
  padding: 6px 20px;
}

#secmenu li:last-child {
  border-right: none;
}

#secmenu li a {
  text-decoration: none;
  color: #ccc;
  font-size: 1.0em;
  text-transform: uppercase;

  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

#secmenu li a:hover {
  color: #777;
}

#secmenu li.active a {
  font-weight: bold;
  color: #333;
}
