/* Add a black background color to the top navigation */
#NavBarR {
 background-color: #369;
 display: block;
 margin-bottom: 60px;
 position:absolute;
 height: 50px;
 width: 100%;
 z-index:4;
}

#l2 { 
 display: none;
}

.topnav {
 background-color: #369;
 box-shadow: 0px 2px 3px rgba(0, 0, 0, .2); 
 clear: both;
 overflow: hidden;
 margin: 0px auto;
 width: 100%;
}

/* Style the links inside the navigation bar */
.topnav a, .topnav a #navLink, .topnav a #navLinkI {
 float: left;
 display: block;
 color: #FFF;
 text-align: center;
 padding: 14px 12px;
 text-decoration: none;
 font-size: 17px;
 height: 50px;
}

#navLinkI {
 padding: 5px;
 height: 50px;
}

#navLinkI img {
 height: 40px;
 margin: 0px;
}


/* Change the color of links on hover */
.topnav a:hover {
 background-color: #EEF;
 color: #369 !important;
}

/* Add an active class to highlight the current page */
.activeM {
 background-color: #FFF;
 color: #369 !important;
}

/* Hide the link that should open and close the topnav on small screens */
.topnav .icon {
    display: none;
}

/* When the screen is less than 600 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) */
@media screen and (max-width: 950px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
}

/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
@media screen and (max-width: 980px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive a.icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
	
  #l1, #headr { 
   Xdisplay: none;
  }
  
  #l2 { 
   height:24px;
   width:200px;
   margin: 0px 0px 0px 0px;
   display: inline;
  }
  
  .topnav a:hover { 
     background-color: #369;
  }
}

/* The sticky class is added to the navbar with JS when it reaches its scroll position */
.sticky {
  position: fixed;
  top: 0;
  width: 100%
  z-index: 100;
}

/* Add some top padding to the page content to prevent sudden quick movement (as the navigation bar gets a new position at the top of the page (position:fixed and top:0) */
.sticky + .content {
  padding-top: 60px;
}