#nav-bar {
  width: 100%;
  height: 56px;
  background: transparent;
  border-top: 5px solid #283B63;
  position: relative;
  z-index: 2000;
}
#nav-bar ul {
	float: right;
}
#nav-bar ul li {
	float: right;
}
#nav-bar ul li a {
  padding: 12px 18px;
  display: inline-block;
  color: white;
  margin-right: 10px;
  -webkit-border-radius: 0 0 4px 4px;
  -moz-border-radius: 0 0 4px 4px;
  border-radius: 0 0 4px 4px;
  font-size: 18px;
  border-bottom: 1px solid #283B63;
  -webkit-box-shadow: inset 0 -1px 0 1px rgba(255, 255, 255, 0.32);
  -moz-box-shadow: inset 0 -1px 0 1px rgba(255, 255, 255, 0.32);
  box-shadow: inset 0 -1px 0 1px rgba(255, 255, 255, 0.32);
  -webkit-transition: all 250ms ease;
  -moz-transition: all 250ms ease;
  -o-transition: all 250ms ease;
  transition: all 250ms ease;
  background: #283B63;
}
#nav-bar ul li a:hover, a.active {
  color: #f1f1f1 !important;
  text-shadow: 0 0 2px #000 !important;
  -webkit-transition: all 250ms ease;
  -moz-transition: all 250ms ease;
  -o-transition: all 250ms ease;
  transition: all 250ms ease;
}