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



*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
font-size: 100%; 
}


.wrapper {
  width: 94%;
  max-width: 1140px;
  margin: 0 auto;
}
.wrapper-small { 
	max-width: 728px; 
}

.wrapper-flush { width: 100%; }

/**
 * Navigation
 */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10020;
 background-color: #e4e2ce; 

}

/** 
* Nav container 
* 1. Ensure this slides in below parent
* 2. Hide by default
* 3. Smoother scrolling experience on iOS
*/

.nav-container {
  position: fixed;
  top: 60px; /* 1 */
  left: 0;
  z-index: 9999;
  overflow-y: auto;
  visibility: hidden; /* 2 */
  width: 100%;
  height: 100%;
  min-height: 100%;
  margin: 0;
  padding: 0;
  -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%); /* 2 */
	
	
	 background-color: #a2a88a; 
	
	
  -webkit-overflow-scrolling: touch; /* 3 */
}

/* 1. Show when `.is-visible` class is added */

.nav-container.is-visible {
  visibility: visible; /* 1 */
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0); /* 1 */
}

/* Nav toggle */

.nav-toggle {
  line-height: 1;
  display: inline-block;
  padding: 1.25rem 1rem;
  border: 0;
 /* background-color: #ff621a;*/
	 background-color: #a2a88a; 
}

/* Nav toggle icon */

.nav-toggle .icon-menu {
  position: relative;
  display: inline-block;
  width: 28px;
  height: 20px;
  vertical-align: middle;
  fill: none;
}

/* Nav toggle icon lines */

.icon-menu .line {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 4px;
  -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  -webkit-transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1.000);
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1.000);
  background-color: #fff;
}

/* Nav toggle icon line 1 */
.icon-menu .line-1 { top: 0; }

/* When active, rotate line 1 to be lefthand part of X */
.is-active .icon-menu .line-1 {
  -webkit-transform: translateY(8px) translateX(0) rotate(45deg);
  -ms-transform: translateY(8px) translateX(0) rotate(45deg);
  transform: translateY(8px) translateX(0) rotate(45deg);
}

/* Nav toggle icon line 2 */
.icon-menu .line-2 {
  top: 50%;
  margin-top: -2px;
}

/* When active, hide line 2 */
.is-active .icon-menu .line-2 { opacity: 0; }

/* Nav toggle icon line 3 */
.icon-menu .line-3 { bottom: 0; }

/* When active, rotate line 3 to be righthand part of X */
.is-active .icon-menu .line-3 {
  -webkit-transform: translateY(-8px) translateX(0) rotate(-45deg);
  -ms-transform: translateY(-8px) translateX(0) rotate(-45deg);
  transform: translateY(-8px) translateX(0) rotate(-45deg);
}

/* Remove default list styles for menus */
.menu {
	list-style: none;
	margin: 0;
	padding: 0;
	padding-top: 0px;
}

/** 
* 1. Give menu a lighter background than its container 
* 2. Prevent menu text from being accidentally highlighted
*/

.nav-menu {
	font-family: 'Darwin', Verdana, Geneva, sans-serif;
	font-weight: normal;
	font-size: 1.7em;
	text-decoration: none;
	line-height: 1em;
	letter-spacing: 0.03em;
	text-indent: 45px;
  /*background-color: #fa6038; 
	 background-color: #ff621a; */
	 background-color: #a2a88a; 
	
 -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;        
}

/* Give menu items a top border */

.nav-menu .menu-item { border-top: 1px solid #deded3; }

/* Give last menu item a bottom border */

.nav-menu > .menu-item:last-child { border-bottom: 1px solid #deded3;  padding-bottom: 50px; }

/* Darker background color on hover, and when toggled */

.nav-menu > .menu-item:hover,
.nav-menu > .menu-item.is-active { 
	/*background-color:#e24736;*/ 
	 background-color: #979778; 
}


/* 1. Menu links are block level, by default */

.nav-menu .menu-link {
  display: block; /* 1 */
  text-decoration: none;
  color: #e9e9e2;
  padding: 1.35rem 1rem 1.35rem 1.5rem;
  }
.nav-menu .menu-link22 { 
  display: block; 

	 color: #3e1313;
   text-decoration:none;
  padding: 1.35rem 1rem 1.35rem 1.8rem;
  }
/* 1. Menu items with dropdowns appear clickable */

.has-dropdown {
  position: relative;
  cursor: pointer; /* 1 */

}

/* 1. Parent menu links inlined so you can toggle the dropdown */

.has-dropdown > .menu-link { 
	display: inline-block;
	text-indent: 0px; /*fixes overall indent .......JIM.....................................*/
}

/* 1. Add an icon to menu items that have sub menus */

.has-dropdown:after {
  font-size: 32px;
  position: absolute;
  top: 7px; /* plus /minus indicator values...........JIM...........................*/
  right: 1rem;
  bottom: 0;
  content: "+"; /* 1 */
  color: #deded3;
}

/* 1. Switch icon to n-dash when toggled */

.has-dropdown.is-active:after { content: "\2013"; /* 1 */ }

/**
 * Dropdowns
 * 1. Hide dropdowns by default
 */

.nav-dropdown {
  display: none; /* 1 */
  background-color: rgba(20, 20, 16, 0.7);
  text-indent: 50px; /* values...........JIM.........................................................*/
}

/* 1. Show dropdown when toggled */

.has-dropdown.is-active > .nav-dropdown { display: block; /* 1 */ }

/* 2nd level dropdown */

.nav-dropdown .nav-dropdown { background-color: #a34c43; }

.nav-dropdown .menu-item { border-color: #a34c43; }

.nav-dropdown .nav-dropdown .menu-item {
  background-color: #a0a083;
  border-color: #deded3;
}

/* Main content area */

.content { margin-top: 60px; }

.content .wrapper { 
padding: 1rem 0; 
}


 @media (min-height: 450px) { 
	 
.menu {
	padding-top: 50px;
}
}






 @media (min-width: 736px) { 
	 
.menu {
	padding-top: 0px;
}
	 
	 
.nav { 
 /*background-color: #ff621a; */
	 background-color: #a2a88a; 

	  z-index: 9999999;
}

.nav,
 .nav-container,
 .nav-container.is-visible {
  position: static;
  top: auto;
  left: auto;
 z-index: auto;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

.nav-container,
 .nav-container.is-visible {
  visibility: visible;
  height: 46px;
  min-height: 0;
  overflow-y: visible;
}

.nav-toggle { display: none; }

/* 1. Display menu items inline */

.nav-menu > .menu-item,
 .nav-menu > .menu-item.is-active {
  display: inline-block; /* 1 */
  background-color: transparent;
  border: 0;

     border-width: 0px 1px 0px 0px;
  border-style: solid;
  border-color: #e9e9e2; /* ADDS BORDER TO MENU TABS.............................................v...JIM.......*/
}

	 
/* Remove bottom border on last child */

.nav-menu > .menu-item:last-child { border: 0; padding-bottom: 0px; }

.nav-menu .menu-item {
  -webkit-transition: background-color 0.15s ease-in-out,  color 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out,  color 0.15s ease-in-out;
}

/* Remove +/- icons */

/*.has-dropdown:after { content: "" !important; }*/



.nav-menu > .has-dropdown:after {
  position: absolute;
  top: 50%;
  right: 1rem;
  width: 0;
  height: 0;
  margin-top: -2px;
  margin-left: -4px;
  content: "";
  border-width: 5px 5px 0 5px;
  border-style: solid;
  border-color: #deded3 transparent transparent transparent;
}
.nav-menu .menu-link {
  display: block; /* 1 */
  text-decoration: none;
 color: #272919;
  padding: 0.95rem 1rem 0.95rem 0.95rem;
  }

.nav-menu .menu-link22 { /* JIM added this recently to add active state to menu pages ...........................*/
  display: block; /* 1 */
	color: #fff;
  text-decoration:none;
  padding: 0.95rem 1rem  0.95rem 1rem;
  }

.nav-menu {
	font-size: 1.1em;
	line-height: 0.9em;
	letter-spacing: 0.03em;
	text-indent: 0px;
	padding-left: 37px;
}



}/*min width 768*/



	 
	 
	 