/* Header */
header {
    width: 100%;
    height: 150px;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    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 */
.container{
    width: 880px;
}
#logo{
    width: 100%;
    text-align: left;
    margin-bottom: 10px;

}
#nav_div{
    width: 100%;
    background-color: #000;
}
/* Header Nav and Links in NAV */
header nav {
    display: inline-block;
    width: 880px;    
    position: relative;
}
header nav a:link {
    text-transform: uppercase;
    font-family : Verdana, Geneva, Arial, Helvetica, sans-serif;
    line-height: 40px;
    margin-left: 20px;
    color: #fff;
    float: right;
    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;
}
header nav a:visited{
    color: white;
}
header nav a:hover {
    color: #3f87c2;
    text-decoration: none;
}
/*Smaller Header*/
header.smaller {
    height: 50px;
    border-bottom: 10px #000 solid;
}
header.smaller #logo {
    width: 150px;
    height: 75px;
    line-height: 75px;
    font-size: 30px;
    float: left;
}
header.smaller nav a {
    background-color: #fff;
    line-height: 30px;
    padding-right: 1px;
    padding-left: 1px;
    color: #000;
    font-weight: bold;
}
header.smaller nav a:visited {
    color: black;
}
header.smaller nav a:hover {
    color: #3f87c2;
    text-decoration: none;
}
header.smaller nav {
    width: 730px;
    float: bottom;
}
header.smaller #nav_div {
    width: 730px;
    float: left;
    height: 30px;
    background: #fff;
    margin-top: 20px;

}
/* Nav List */
nav ul {
    padding: 0;
    margin: 0 auto;
    float: right;
}
nav li {
    display: inline;
    float: left;

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

