/* Header*/
header {
    width: 100%;
    height: auto;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    background-color: #fff;
    -webkit-transition: height 0.3s;
    -moz-transition: height 0.3s;
    -ms-transition: height 0.3s;
    -o-transition: height 0.3s;
    transition: height 0.3s;
}
/* Container and Divs */
#logo{
    width: 50%;
    text-align: left;
    margin-bottom: 5px;
}
#nav_div{
    width: 100%;
    height: auto;
    background-color: #000;

}
/* Header Navigation and Links (only NAV) */
nav a:link {
    text-transform: uppercase;
    font-family : Verdana, Geneva, Arial, Helvetica, sans-serif;
    line-height: 30px;
    color: #fff;
    font-weight: 200;
    font-size: 15px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    text-decoration: none;
}
nav a:visited{
    color: white;
}
nav a:hover {
    color: #3f87c2;
    text-decoration: none;
}
/* Clearfix Hack */
.clearfix:before,
.clearfix:after {
    content: "";
    display: table;
}
.clearfix:after {
    clear: both;
}
.clearfix {
    *zoom: 1;
}

/*Hidden Menusymbol*/
nav a#pull {
    display: none;
} 

nav {
    border-bottom: 0;
}
nav ul {
    display: none;
    height: auto;
    list-style: none;
    margin: 0;
    padding: 0;
}
nav a#pull {
    display: inline-block;
    width: 100%;
}
nav a#pull:after {
    content:"";
    position: absolute;
}
nav li {
    width: 100%;
}




