/* Clearfix */
.clearfix:before, .clearfix:after {
    content: " ";
    display: table;
    outline: 0;
}

.clearfix:after {
    clear: both;
}

.clearfix {
    *zoom: 1;
}

.left10Space{
    margin-left:10px;
}

/* Basic Styles */
nav {
    height: 40px;
    width: 100%;
    overflow: hidden;
    position: fixed;
    z-index: 999;

    height: auto;
    border-bottom: 0;
    outline: 0;

}
nav ul {
    padding: 0;
    margin: 0 auto;
    height: 40px;
    display: none;

    width: 100%;
    display: none;
    height: auto;
    background-color: black;


}
nav li {
    display: inline;
    float: left;
    position: relative;

}
nav a {
    color: #fff;
    display: inline-block;
    padding-left: 5px;
    padding-right: 10px;
    text-align: left;
    text-decoration: none;
    line-height: 40px;
    border:0px solid red;
}

a, a:hover, a:active, a:focus {
    outline: 0;
}

nav li:last-child a {
    border-right: 0;

}
nav a:hover, nav a:active {
    /*background-color: #444;*/
    color:#4aa0d7;

}
nav a#pull {
    display: block;
    width: 100%;
    position: relative;
    outline: 0;
}
nav a#pull:after {
    content:"";
    background: url('../../images/public/nav-icon.png') no-repeat;
    width: 30px;
    height: 40px;
    display: inline-block;
    position: absolute;
    right: 15px;
    top: 20px;

    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

/*Styles for screen 600px and lower*/
@media only screen and (max-width : 700px) {
    nav {
        height: auto;
        border-bottom: 0;
    }
    nav ul {
        width: 100%;
        display: none;
        height: auto;
        background-color: black;
    }
    nav a#pull {
        display: block;
        width: 100%;
        position: relative;
    }
    nav a#pull:after {
        content:"";
        background: url('../../images/public/nav-icon.png') no-repeat;
        width: 30px;
        display: inline-block;
        position: absolute;
        right: 15px;
    }

    nav li {
        display: block;
        float: none;
    }

    nav a {
        text-align: left;
        width: 100%;
        text-indent: 25px;
    }
}

/*Smartphone*/
@media only screen and (max-width : 320px) {
}