/*!
 * SlickNav Responsive Mobile Menu v1.0.3
 * (c) 2015 Josh Cope
 * licensed under MIT
 */

/* The entire top menu bar */

.slicknav_menu { /* The entire top menu bar */
  position: fixed;
  top: 0;
  z-index: 3; /* 2 is the index for the '+' of the bellows */
  font-size: 16px;
  box-sizing: border-box;
  /* background: #4c4c4c;  */ /* Top menu bar background */
  padding: 5px;
  *zoom: 1; 
	width: 100%;
	background: url(/graphics/header_bgnd.png) no-repeat left top;
	background-size: 100% 50px;
}

.slicknav_menu * {
  box-sizing: border-box; 
}


/* Menu button */

.slicknav_btn { /* Menu button */
  position: relative;
  display: block;
  vertical-align: middle;
  float: right;
  padding: 0.438em 0.625em 0.438em 0.625em;
  line-height: 1.125em;
  cursor: pointer;
  margin: 3px 5px 11px; /* Indirectly, this sets the height of the top menu bar  */
  text-decoration: none;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75); /* <<< ??? */
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  background-color: #698E80; /* background of rounded rectange menu button  */
} 

.slicknav_btn .slicknav_icon-bar + .slicknav_icon-bar {
  margin-top: 0.188em; 
}

.slicknav_menu .slicknav_icon-bar { /* 3 horizontal bars in menu button */
  background-color: #F4F4F4;
  display: block;
  width: 1.3em;
  height: 0.25em;
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  border-radius: 1px;
  /* Menu bars shadow, for various browsers */
  -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25); 
  -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25); 
}

.slicknav_menu .slicknav_icon {
  float: left;
  margin: 0.188em 0 0 0.438em; 
}

.slicknav_menu .slicknav_no-text {
  margin: 0; 
}  

.slicknav_menu:before {
  content: " ";
  display: table; 
}
  
.slicknav_menu:after {
  content: " ";
  display: table;
  clear: both; 
}

.slicknav_menu .slicknav_menutxt { /* Menu name text */
  color: #fff; /* Menu name text */
  font-weight: bold;
  text-shadow: 0 1px 3px #000; /* Menu name text shadow */
  display: block;
  line-height: 1.188em;
  float: left; 
}
  

/* Menu items */

.slicknav_nav { /* Set of all menu items */
  clear: both;
  color: #698E80; /* Non-link menu item text */
  background: #F4F4F4;  /* Menu items background */
  margin: 0;
  padding: 0;
  border: 1px solid #698E80;
  font-size: 0.875em;
  list-style: none;
  overflow: hidden; 
  text-align: left;
}
  
.slicknav_nav .slicknav_arrow {  /* Triangle at the right end of a parent menu item */
  font-size: 0.8em;
  margin: 0 0 0 0.4em; 
}
  
.slicknav_nav .slicknav_item {
  cursor: pointer; 
}
  
.slicknav_nav .slicknav_item a {
  display: inline;
  padding: 0;
  margin: 0; 
}
 
.slicknav_nav .slicknav_row { /* Parent menu items */
  display: block;
  padding: 0px 10px 3px;
  margin: 2px 5px; 
}
 
.slicknav_nav a { /* Sub-menu item except non-link item */
  display: block;
  padding: 0px 10px 3px;
  margin: 2px 5px;
  text-decoration: none;
  color: #698E80; /* Menu item text */
} 
  
.slicknav_nav .slicknav_parent-link a { /* ??? */
  display: inline;
  padding: 0;
  margin: 0; 
}

.slicknav_nav .slicknav_row:hover { /* Hovered-on parent menu item */
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  background: #698E80; /* Hovered-on parent menu item background */
  color: #F4F4F4; /* Hovered-on parent menu item text  */
} 
 
.slicknav_nav a:hover {  /* Hovered-on menu item background, except for parent menus */
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  background: #698E80; /* Hovered-on menu item background, except for parent menus */
  color: #F4F4F4; /* Hovered-on menu item text, except for parent menus */
} 
  
.slicknav_nav .slicknav_txtnode { /* ??? */
  margin-left: 15px; 
}

/* Brand name */

.slicknav_brand { 
  color: #fff; /* Brand name */
  font-size: 18px;
  line-height: 30px;
  padding: 7px 12px;
  height: 44px;
  float: left; 
}

/* HTML Menu definition */

.slicknav_nav ul { /* Definition of menu items, list */
  display: block;
  list-style: none;
  overflow: hidden;
  padding: 0;
  margin: 0 0 0 20px; 
}
  
.slicknav_nav li { /* Definition of menu items, items */
  display: block; 
}

#menu { /* The plain HTML menu, which we don't want to see */
	display:none; 
}