@charset "utf-8";
* {
    margin: 0;
    padding: 0;
}
.header {
    height: 56px;
    width: 100%;
    box-shadow: 0 0 10px #dddddd;
    background-color: whitesmoke;
    position: fixed;
    top: 0;
}
.header-left{
    float: left;    
}
.header-right{
    float: right;
}
.clear{
    clear: both;
}
.header-logo{
    height: 54px;
    margin-top: 1px;
}
.hamburger {
	height: 56px;
}
#nav {
    padding: 24px 24px 0 24px;
    background: #ffe0b6;
    color: #000000;
	position: fixed;
	right: -320px;
	top: 0;
	width: 270px;
	height: 100%;
}
#nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
#nav li a {
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid #FFFFFF;
    text-decoration: none;
    color: #000000;
}
#nav li a:hover {
    background: #FFFFFF;
}
.show {
	transform: translate3d(-300px, 0, 0);
}
#wrapper, #nav {
	transition: transform 0.3s;
}
.container{
    max-width: 980px;
    padding: 0 30px;
    margin-left: auto;
    margin-right: auto;
}
.footer{
    height: 120px;
    background-color: #2f3a44;
    color: #e8e8e8;
    padding-top: 20px;
}
.footer-left{
    float: left;
}
.footer-right{
    float: right;
    padding-top: 50px;
}
.footer-left p {
    margin-bottom: 8px;
}