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

/*Strip the ul of padding and list styling*/
#navWrap ul {
    list-style-type:none;
    margin:0;
    padding:0;
    position: absolute;
	overflow: hidden;
}
/*Create a horizontal list with spacing*/
#navWrap li {
	display: inline-block;
	float: left;
	margin-right: 1px;

}
/*Style for menu links*/
#navWrap li a {
    display: block;
    min-width: 136px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #000;
/*    background: #2f3036;  */
	background: #eee; /* light gray */
    text-decoration: none;
}
/*Hover state for top level links*/
#navWrap li:hover a {
/*    background: #ea7f16;  */
	background: #eee; /* light gray */
}
/*Style for dropdown links*/
#navWrap li:hover ul a {
    background: #f3f3f3; /* light gray */
    color: #2f3036; /* med dark gray */
    height: 40px;
    line-height: 40px;
}
/*Hover state for dropdown links*/
#navWrap li:hover ul a:hover {
    background: #19c589; /* green */
    color: #fff;
}
/*Hide dropdown links until they are needed*/
#navWrap li ul {
    display: none;
}
/*Make dropdown links vertical*/
#navWrap li ul li {
    display: block;
    float: none;
}
/*Prevent text wrapping*/
#navWrap li ul li a {
    width: auto;
    min-width: 100px;
    padding: 0 20px;
}
/*Display the dropdown on hover*/
#navWrap ul li a:hover + .hidden, .hidden:hover {
    display: block;
}
/*Style 'show menu' label button and hide it by default*/
#navWrap .show-menu {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-decoration: none;
/*  5/18/24   color: #fff;  */
/*    background: #ea7f16; */
/*	5/18/24 background: #444;   */
	color: #c02828; /* red */
	background: #f3f3f3; /* light gray */
	text-align: center;
    padding: 10px 0;
    display: none;
}
/*Hide checkbox*/
#navWrap input[type=checkbox]{
    display: none;
}
/*Show menu when invisible checkbox is checked*/
#navWrap input[type=checkbox]:checked ~ #menu{
    display: block;
}
/*Responsive Styles*/
@media screen and (max-width : 760px){
    /*Make dropdown links appear inline*/
#navWrap ul {
	position: static;
    display: none;  
   }
    /*Create vertical spacing*/
#navWrap li {
    margin-bottom: 1px;
    }
    /*Make all menu links full width*/
#navWrap ul li, li a {
    width: 100%;
    }
    /*Display 'show menu' link*/
#navWrap .show-menu {
    display:block;
    }
}
