﻿/* Styles for screen > 500 */
nav {
    border-style: solid none solid none;    
    width: 100%;
    font-size: 1em;
    font-family: Arial, Helvetica, sans-serif;
    color: #444444;
    position: relative;
    border: 0px none #ffffff;

}

    nav ul {
        padding: 0;
        margin: 0 auto;
        width: 100%;

    }

    nav li {
        display: inline;
        
    }

    nav a:link, nav a:visited {
        color: #444444;
        font-weight: bold;
        display: inline-block;
        text-align: center;
        text-decoration: none;
        
    }

    nav li a {
        box-sizing: border-box;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        padding-left: 15px;
        padding-right: 15px;
    }

    nav li:last-child a {
        border-right: 0;
    }

    nav a:hover, nav a:active {
        font-weight: bold;
    }

    nav a#pull {
        display: none;
    }


/* Styles for screen <= 500 */
@media only screen and (max-width : 500px) {

    nav {
        height: auto;
        background-color: #e8e8e8;
    }


        nav a:link, nav a:visited {
            line-height: 40px;
        }

        nav ul {
            width: 100%;
            display: none;
            height: auto;
        }

        nav li {
            width: 100%;
            float: none;
            position: relative;
        }

            nav li a {
            }

        nav a {
            text-align: left;
            width: 100%;
            text-indent: 25px;
        }


            nav a#pull {
                display: block;
                width: 100%;
                position: relative;
            }

                nav a#pull:after {
                    content: "";
                    background: url('../appimages/nav-icon.png') no-repeat;
                    width: 30px;
                    height: 30px;
                    display: inline-block;
                    position: absolute;
                    right: 15px;
                    top: 10px;
                }
}