/*  ==========DUPLICATE ============== BEGIN NAVBAR .SM-BLUE   CSS  ===================================== */

.main-nav {
/*  background: #991133;
  background-image: -webkit-gradient(linear, to bottom, to top, color-stop(0%, #991111), color-stop(100%, 991112));
  background-image: -webkit-linear-gradient(to bottom, #991111, 991112);
  background-image: -moz-linear-gradient(to bottom, #991111, 991112);
  background-image: -o-linear-gradient(to bottom, #991111, 991112);
  background-image: linear-gradient(to bottom, #991111, 991112);
*/

background: transparent ;
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  -ms-border-radius: 1px;
  -o-border-radius: 1px;
  border-radius: 1px;
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.main-nav:after {              /* Q CHECKTHIS WHat are these font and content  ??? typos?  test  */
  clear: both;
  content: "\00a0";
  display: block;
  height: 0;
  font: 0px/0 serif;
  overflow: hidden;
}

.nav-brand {
  float: left;
  margin: 0;
}

.nav-brand a {
  display: block;
  padding: 4px 2px 4px 2px;
  color: TransParent;      /* IS THIS A MISTAKE ERRROR FIX CHECKTHIS */
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 22px;
  font-weight: normal;
  line-height: 29px;
  text-decoration: none;
}

#main-menu {
  clear: both;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  color: black ; 
}


#main-menu a {
  color: black ; 
}





/* @media (min-width: 768px) { */
@media (min-width: 672px) {
  #main-menu {
/*    float: right;
*/
    float: left;  /*  This moves menu to the left margin, original was on right */
    clear: none;
  }
}


/* Mobile menu top separator */

#main-menu:before {
  content: '';
  display: block;
  height: 1px;
  font: 1px/1px sans-serif;
  overflow: hidden;
  background: 991132;
}

/* @media (min-width: 768px) { */
@media (min-width: 672px) {
  #main-menu:before {
     display: none;  
  }
}


/* Mobile menu toggle button */

.main-menu-btn {
/*  float: right;
*/
  float: left;   /* hurrah, it moves to left of screen!  */
  margin-left: 0px;  /* original rffr was 10 or 20 */
  position: relative;
  display: inline-block;
  width: 40px;   /* originally 29px.  Wider allows word "MENU" to be visible, IF overflow is not hidden. */
  height: 29px;
  text-indent: 29px;
  white-space: nowrap;
  /* overflow: hidden; */
  cursor: pointer;
  content: 'MENU!' ;     /*  NOTICE this has exclamation point - is it active? Was it a test?  */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* MY ADDITION, DOESN'T WORK */
/* 
.main-menu-btn:after { 
   content: "" ;
}

*/

/* hamburger icon */

.main-menu-btn-icon,
.main-menu-btn-icon:before,
.main-menu-btn-icon:after {
  content: '';         /* NO EFFECT */
  position: absolute; 
  top: 50%;
/*  left: 2px;
*/  left: 2px;
  height: 2px;
  width: 24px;   /* originally 24 px;  */
  background: black;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}

.main-menu-btn-icon:before {
   content: 'MORE';  /* Was hidden by the width of .main-menu-btn. But it tilts 45 degrees. Move to a non-line group?  */
   color:#010101;   /* color added dec11 for patheader */
   position: absolute;
  left:40px; 
  font-size: 12px;
  top: -7px;
/*  left: 0;
*/
  left: 0;
}

.main-menu-btn-icon:after {
  content: '';  /* NO EFFECT */
  position: absolute;
  left:40px; 
  top: 7px;
/*  left: 0;
*/  left: 0;
}


/* x icon */

#main-menu-state:checked ~ .main-menu-btn .main-menu-btn-icon {
  height: 0;
  background: transparent;
  CONTENT: '' ;
  }

#main-menu-state:checked ~ .main-menu-btn .main-menu-btn-icon:before {
  top: 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  content: '' ;  /*  YAYYYY!  This makes the word "Menu" disappear!!!  */
}

#main-menu-state:checked ~ .main-menu-btn .main-menu-btn-icon:after {
  top: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}



/* hide menu state checkbox (keep it visible to screen readers) */

#main-menu-state {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}


/* hide the menu in mobile view */

#main-menu-state:not(:checked) ~ #main-menu {
  display: none;
}

#main-menu-state:checked ~ #main-menu {
  display: block;
  }

/* @media (min-width: 768px) { */
@media (min-width: 672px) {
  /* hide the button in desktop view */
  .main-menu-btn {
    position: absolute;
    top: -99999px;
  background:green ;
  }
  /* always show the menu in desktop view */
  #main-menu-state:not(:checked) ~ #main-menu {
    display: block;
    background:transparent;    /* This background color is visible only in desktop, IFF the hamburger menu is minimized and window then widened. */ 
	}
}


/* IGNORE: Unrelated generic demo styles */

/* BODY BACKGROUND CONTROLS SCROLLBAR COLOR. FOR BROWSWER DEFAULT GRAY ON LIGHT GRAY MAKE IT WHITE */ 
body {
  margin: 8px;
/*  background: #010101; */
  background: #FFF ;
  color: #aaa;
  font: 16px/1.5em 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.demo-text {
  margin: 3em 22px;
}

.demo-text p {
  margin-bottom: 1em;
}

.demo-text a {
  color: #999;
}

-->
       
</style>

