@import url(https://fonts.googleapis.com/css?family=Montserrat);
* {
  margin: 0;
  padding: 0;
}
#Home {
  width: 5%;
  border-right: 2px solid rgb(223, 234, 208);
}
.menubar {
  background: #30658F;
  height: 35px;
}
.nav {
  height: 35px;
  display: inline-block;
  background-color: #2C668C;
  width: 98%;
}
.nav li {
  float: left;
  list-style-type: none;
  position: relative;
  width: 13.75%;
}
.nav li a {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 1vw;
  color: white;
  display: block;
  height: 35px;
  padding: 5px 0px;
  text-decoration: none;
  border-left: 2px solid rgb(223, 234, 208);
  font-family: "Open Sans", Arial, sans-serif;
  /* text-shadow: 0 0 1px rgba(255, 255, 255, 0.5); */
}
.nav li a:hover {
  background-color: #1B9D75;
}
.nav li:last-child {
  border-right: 2px solid rgb(223, 234, 208);
}
#settings a {
  padding: 18px;
  height: 12px;
  font-size: 10px;
  line-height: 24px;
  border-left: 2px solid rgb(223, 234, 208);
}
#search {
  width: 25%;
  margin: 4px;
}
#search_text {
  width: 84.5%;
  padding: 0px 5px;
  font-size: 1em;
  font-family: sans-serif;
  border: 0 none;
  height: 26px;
  margin-right: 0;
  color: #333;
  outline: none;
  background: rgb(223, 234, 208);
  float: left;
  box-sizing: border-box;
  transition: all 0.15s;
}
#search_text:focus {
  background: rgb(255, 255, 255);
}
#search_button {
  border: 0 none;
  background: #1B9D75 url(../img/search.png) center no-repeat;
  width: 15.5%;
  float: left;
  text-align: center;
  height: 26px;
  cursor: pointer;
}
::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #333;
}
:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #333;
}
::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #333;
}
:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #333;
}
#options_menu a {
  border-left: 2px solid rgb(223, 234, 208);
}
#options_menu>a {
  background-image: url(../img/triangle.png);
  background-position: 85% center;
  background-repeat: no-repeat;
  padding-right: 0px;
}
.subnav {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  width: 100%;
  height: auto;
  opacity: 1;
  transition: all 0.1s;
  background: #2C668C;
  z-index: 10;
  border-left: none;
}
.active {
  background: #1B9D75;
}
.subnav li {
  float: none;
  width: 100%;
}
.subnav li a {
  border-bottom: 2px solid rgb(223, 234, 208);
  width: 100%;
}
.no-touch .nav>li:hover>.subnav {
  display: block;
}
.show-dropdown>.subnav{
	display: block;
}
