@charset "utf-8";
/* CSS Document */

.mobile-menu {
  position: absolute;
  top: 13px;
  right: 5%;
  display: block;
  width: 35px;
  height: 30px;
  cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' version='1.1' x='0px' y='0px' width='30px' height='30px' viewBox='0 0 30 30' enable-background='new 0 0 30 30' xml:space='preserve'><rect width='30' height='6'/><rect y='24' width='30' height='6'/><rect y='12' width='30' height='6'/></svg>");
  background-size: contain;
}


div.wrapper.overlay {
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
  z-index: 1;		/* Default z-index puts it behind header.banner */
  background-color: transparent;
  transition: background-color 0.1s ease;
  transition-delay: 0.4s;
}

div.wrapper {
  margin-left: 0px;		/* All wrappers (except nav) normally up against left edge of page */
  transition: margin-left 0.4s ease;
}
body.menu-out div.wrapper {
  margin-left: -270px;	/* Move all wrappers (except nav) so they appear to slide of the page */
}

body.menu-out nav#func {
  /*display: none;*/
}

div.wrapper.nav {
  position: absolute;		/* Take out of main flow, as it will be appearing over on right */
  overflow: hidden;			/* Width 0 isn't enough to make this vanish */
  right: 0;
  top: 0;
  width: 0;
  transition: width 0.4s ease;
}

nav.primary ul {
  display: block;		/* Always display them, because their containers can't be seen */
}

body.menu-out div.wrapper.nav,
body.menu-out div.wrapper.search {
  margin-left: 0;
  display: block;
  width: 270px;
}
div.wrapper.nav ul {
  width: 270px;
  overflow-x: hidden;		/* This makes it appear to slide from right, instead of just getting wider */
}
body.menu-out div.wrapper.nav nav {
}


ul#nav {
  margin: 0;
  padding: 20px 0 10px 20px;
  background: #efefef;
}
ul#nav li {
  list-style: none;
  text-align: left;
  padding: 10px 0;
}
ul#nav li a {
  font-size: 18px;
  color: black;
  text-decoration: none;
}