﻿
@media screen and (min-width:240px) {
    .top-divider {
        margin-top: 0;
    }

    .img-left {
        float: left;
        margin-right: 25px;
    }

    .navbar {
        border-radius: 0;
    }

    .navbar-header {
        display: none;
    }

    .navbar {
        min-height: 0;
    }

    .navbar-default {
        border: none;
        background: #fff;
        background: rgba(255,255,255,0.9);
    }

    .nav>li>a {
        padding: 16px;
    }

    .navbar-nav>li>a {
        line-height: normal;
    }

    .navbar-nav {
        display: table;
        float: none;
        margin: 0 auto;
        table-layout: fixed;
        font-size: 1.25em;
    }
}

 /*Mobile Devices*/
@media only screen and (min-width: 200px) and (max-width: 790px) {
    nav {
        text-align: center;
        background: #efefef;
    }
    nav ul {
        margin: 0;
        padding: 1em;
        list-style-type: none;
    }

    nav ul li {
        display: inline;
        margin-left: 0em;
    }

    nav ul li:first-child {
        margin-left: 0;
    }

    nav ul li ul {
        display: none;
    }
}
/*Other Devices*/
@media only screen and (min-width:791px) {
    .navbar-default {
        font-weight: 800;
        letter-spacing: 1px;
        margin:0px;
    }

    nav ul {
        padding: 0;
        margin: 0;
        float: left;
    }

    nav ul li {
        float: left;
        display: inline;
        position: relative;
        padding:5px;
        list-style: none;
        /*first level width*/
        min-width:80px;
    }

    nav ul ul {
        position: absolute;
        left: 0;
        top: 100%;
        display: none;z-index:100;
    }

    nav ul ul ul {
        left: 100%;
        top: 0;
    }

    nav ul li:hover > ul {
        display: block;
    }

    nav ul li ul li {
        /*sub level width*/
        min-width:230px;
     }

    
@import url(http://fonts.googleapis.com/css?family=Open+Sans:700);
    .menu-row {
        background-color:#000;
       
     }
    
    .cssmenu {
         /*main menu back ground color*/
          background-color:transparent;
          width: auto;
     }

     .cssmenu li li a {
         /*Sub menu back ground color*/
        background:#000;
        color:#ffffff;
      }
     
     .cssmenu ul:after {
        content: " ";
        display: block;
        font-size: 0;
        height: 0;
        clear: both;
        visibility: hidden;
     }

    .cssmenu ul li {
      display: inline-block;
      padding: 0;
      margin: 0;
    }
   
    .cssmenu.align-right ul li {
      float: right;
    }
    .cssmenu.align-center ul {
      text-align: center;
    }

    .cssmenu ul li a {
        /*link color*/
        color:#ffffff;
      text-decoration: none;
      display: block;
      padding: 15px 25px;
      font-family: 'Open Sans', sans-serif;
      font-weight: 700;
      text-transform: uppercase;
      font-size: 14px;
      position: relative;
      -webkit-transition: color .25s;
      -moz-transition: color .25s;
      -ms-transition: color .25s;
      -o-transition: color .25s;
      transition: color .25s;
    }
    .cssmenu ul li a:hover {
         /*link hover color*/
      color: #e9e9e9;
    }
 
    .cssmenu ul li a:hover:before {
      width: 100%;
    }

    .cssmenu ul li a:before {
      color:#fff;
      content: "";
      display: block;
      position: absolute;
      left: 0;
      bottom: 0;
      height: 3px;
      width: 0;
      background-color: transparent;
      -webkit-transition: width .25s;
      -moz-transition: width .25s;
      -ms-transition: width .25s;
      -o-transition: width .25s;
      transition: width .25s;
    }
    .cssmenu ul li.last > a:after,
    .cssmenu ul li:last-child > a:after {
    }
    .cssmenu ul li.active a {
  
    }
    .cssmenu ul li.active a:before {
      width: 100%;
    }
    .cssmenu.align-right li.last > a:after,
    .cssmenu.align-right li:last-child > a:after {
    }
    .cssmenu.align-right li:first-child a:after {
    }
    /* set up the right arrows first second level onward*/
    .cssmenu li li > a:after { float:right; content: '\25BA'; }

   /*clear the content if a is only child*/
    .cssmenu li > a:only-child:after {content: ''; }
}


