/* CSS Document */


.header {
    width: 100%;
    height: 20px;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    background-color: #3f3f3f;
    -webkit-transition: height 0.3s;
    -moz-transition: height 0.3s;
    -ms-transition: height 0.3s;
    -o-transition: height 0.3s;
    transition: height 0.3s;
	
	
}

}
.header nav {
    display: inline=block;
    float: left;
	margin-left:10px;
}
.header nav a {
    line-height: 50px;
    margin-left: 20px;
    color: white;
    font-weight: 400;
    font-size: 14px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
	font-family: "Source Sans Pro", Helvetica, sans-serif;
		
		
		
}
.header nav a:hover {
    color: #ed7f0f;
}
.header.smaller {
    height: 75px;
}

}
.header.smaller nav a {
    line-height: 75px;
}

@media all and (max-width: 660px) {

    }
    .header nav {
        display: block;
        float: left;
        height: 50px;
		line-height:50px;
        text-align: center;
        margin: 0 auto;
    }
    .header nav a {
        line-height: 50px;
        margin: 0 10px;
    }
    .header.smaller {
        height: 60px;
    }

    }
    .header.smaller nav {
        height: 35px;
		line-height:35px;
    }
    .header.smaller nav a {
        line-height: 35px;
    }
}