@charset "utf-8";
/* CSS Document */
// There is no required CSS for this plugin to work properly
// but here is what is being used to style this demo
.horizontal-nav {
  height:45px;
  background: #ee284b;
  border-radius: 9px;
}
.horizontal-nav ul {
  background: #ee284b;
  float: left;
  text-align: center;
  border-radius: 6px;
}
.horizontal-nav ul li {
  list-style:none;
  float: left;
}
.horizontal-nav ul li a {
  display: block;
  padding: 15px 15px;
  font-family: 'Noto Sans TC', sans-serif;
  font-weight:700;
  font-size:24px;
  color: #fff;
  text-decoration:none;
  border-top: 1px solid rgba(255,255,255, 0.25);
  border-left: 2px solid rgba(255,255,255, 0.25);
}
.horizontal-nav ul li a:hover {
  background: #b31f39;
}
