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

.homel img {
 height: 25px;
 width: 25px;
}
#l1 { }
#l2 { 
 display: none;
}
#navLink.homel {
 width: 40px;
 margin: 0px;
 padding: 8px 0px 0px 0px;
}

.topnav {
 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 {
 float: left;
 display: block;
 color: #FFF;
 text-align: center;
 padding: 10px 7px;
 text-decoration: none;
 font-size: 17px;
 height: 37px;
}

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

/* Add an active class to highlight the current page */
.activeM {
 background-color: #FFF;
 color: #A00 !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: 1050px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
  .navLink2 {display: none;}
#l1 { 
 display: none;
}

#l2 { 
 #height:25px;
 width:120px;
 Xbackground:#FFF; 
 display: inline;
}

#navLink.homel {
 width: 110px;
}
.topnav a {
  Xborder-top: 1px outset #AAA;
 }
 
 .formfield {
  width: 90%;
 }
}

/* 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: 1050px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive a.icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}

/* 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;
}