/* Default CSS */
/* Generated by the CoffeeCup HTML Editor - www.coffeecup.com */

/* GIVE UL CLASS OF menu-list AND ID myTopnav. STYLE CLASS AS DISPLAY=BLOCK and width=100% */
/* GIVE LI ELEMENTS CLASS OF menu-list-item. STYLE AS DISPLAY = INLINE-BLOCK*/
/* GIVE LI ELEMENTS PADDING AND BORDER */
/* GIVE LI ELEMENTS A LINK (3 AS DEFAULT) AND STYLE NORMAL AND HOVER STATE IN RSD GIVING CLASS menu-link */
/* GIVE LAST LI ELEMENT ADDITIONAL CLASS OF icon AND NO LINK OR TEXT */
/* DON'T FORGET TO ADD SCRIPT TO BOTTOM OF PAGE - FOOTER SECTION INB RSD */

body {  }

/* SET MENU UL STYLES */

.menu-list {

text-align:center; }

ul.menu-list li.icon {display: none;}

/* SET MENU MEDIA QUERIES */
/* When the screen is less than 680 pixels wide, hide all list items, except for the first one ("Home"). Show the list item that contains the link to open and close the topnav (li.icon) */
@media screen and (max-width:725px) {
  /*ul.menu-list li:not(:first-child) {display: none;}*/
  ul.menu-list li.icon {
    float: right;
    display: inline-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 */
@media screen and (max-width:725px) {
  ul.menu-list.responsive {position: relative;}
  ul.menu-list.responsive li.icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  ul.menu-list.responsive li {
    float: none;
    display: inline;
  }
  ul.menu-list.responsive li a {
    display: block;
    text-align: left;
  }
  
  li.menu-list-item{
  /*border-right:none;*/
  margin:0 !important;
  padding:0 !important;
  font-size:12px; }
  
  .menu-list{text-align:left; }
  
  li.menu-list-item.icon a:link{color:#1e1e1e !important;}
}