﻿/* ===========================================
   ===== Master Page Top Navigation ===== 
   =========================================== */
#menuitems a:link, #menuitems a:visited, #menuitems span {
    color: #fff;
    text-decoration: none;
    font-weight: normal;
    font-family: 'Arial', sans-serif;
    font-size: 13px;
}

    #menuitems a:link:hover, #menuitems a:visited:hover {
        background: #cfc0a7;
        color: black;
    }

/* =========== Medium Screens Ipad================ */
@media only screen and (min-width : 721px) and (max-width : 850px) {

   #menuitems a:link, #menuitems a:visited, #menuitems span {
    font-size: 11px;
    }
}


@media only screen and (min-width : 721px) {
    #mobMenu {
        display: none;
    }

    #topMenu, #menuitems {
        border: 0;
        display:inline-block;
        padding: 0;
        margin: 0;
        height: 32px;
        background: linear-gradient(#334b8b 0%, #1f3776 100%);
    }

    #menuitems a:link, #menuitems a:visited {
        color: #fff;
        display: inline-block;
        height: 20px;
        padding: 9px 10px 6px 10px;
        text-decoration: none;
        position: relative;
        box-shadow: inset 1px 1px 0 rgba(255, 255, 255, 0.2);
        background: linear-gradient(#334b8b 0%, #1f3776 100%);
    }

    #menuitems ul {
        height: 35px;
        margin: 0;
        padding: 0;
    }

    #menuitems li {
        float: left;
        display: inline;
    }

        #menuitems li.active {
            background-color: red !important;
        }

    #menuitems ul li.mobile { /*overwritten for small screen */
        display: none;
    }

    .pull-right {
        float: right !important;
    }

    #menu li.pull-right {
        float: right;
        font-weight: bold;
        color: #2e9fff;
    }
}

@media only screen and (min-width : 150px) and (max-width : 720px) {
    /* the mobile menu with hamburger*/
    #mobMenu {
        list-style-type: none;
        padding: 0;
        margin: 0;
        background-color: grey;
    }


 #mobMenu > ul > li {
    border-bottom:1px black ridge;
   /* -moz-box-shadow: 0 0 0 transparent;
    -webkit-box-shadow: 0 0 0 transparent;
    box-shadow: 2px 2px 3px #cccddd;*/
    display: block;
    float: none;
    padding:6px;
  }

    #mobMenu ul li.mobile {
        display: block;
    }

#mobMenu > ul > li.mobile {
  border-right: 0 none;
  -moz-box-shadow: 0 0 0 transparent;
  -webkit-box-shadow: 0 0 0 transparent;
  box-shadow: 0 0 0 transparent;
}


 #mobMenu > ul > li.mobile i {
    float: right;
    font-style: normal;
  }

    .m-icon {
        float: right;
        font-style: normal;
        padding-right: 10px;
    }

    #mobMenu a:link, #mobMenu a:visited {
        color: #ffffff;
        display: block;
        height: 20px;
        padding: 9px 10px 6px 10px;
        text-decoration: none;
        position: relative;
        box-shadow: inset 1px 1px 0 rgba(255, 255, 255, 0.2);
        background-color: grey;
    }

    #menuitems {
        list-style-type: none;
        padding: 0;
        margin: 0;
        position:relative; /* Required for z-Index to work with JQuery in WebKit  */
        z-index: 1000; /* This is used by JQuery (menu_JQuery) to hide the menu in small Screens  */
    }

    #menuitems a:link, #menuitems a:visited {
        list-style-type: none;
        color: #fff;
        display: block;
        height: 20px;
        padding: 9px 10px 6px 10px;
        text-decoration: none;
        position: relative;
        box-shadow: inset 1px 1px 0 rgba(255, 255, 255, 0.2);
        background: linear-gradient(#334b8b 0%, #1f3776 100%);
    }
}
