html {
    overflow-y: scroll;
	-webkit-text-size-adjust: 100%; /* Prevent font scaling in landscape while allowing user zoom */
}
body {
    margin: 0;
    overflow-x: hidden;
    padding: 0;
}
header {
    background-color: #000;
    border-bottom: 2px solid #cc0000;
    box-shadow: 0 3px 7px 0 rgba(0, 0, 0, 0.4);
    height: 56px;
    position: fixed;
    text-decoration: none;
    top: 0;
    width: 100%;
    z-index: 1;
}
#content {
    background-color: #ffffff;
    height: 100%;
    padding: 82px 10px 10px;
    position: relative;
    width: auto;
}
#hamburger {
    border-radius: 3px;
    cursor: pointer;
    display: block;
    height: 24px;
    margin-left: 10px;
    margin-top: 13px;
    padding: 3px 4px;
    position: relative;
    width: 25px;
}
#hamburger div {
    background-color: #a6a6a6;
    border: 1px solid #a6a6a6;
    border-radius: 2px;
    height: 1px;
    margin-top: 3px;
    width: 90%;
}
nav {
    background: rgba(0, 0, 0, 0) linear-gradient(to bottom, #3e3c3d 0%, #2d2c2d 100%) repeat scroll 0 0;
    box-sizing: border-box;
    height: 100%;
    left: 0;
    max-height: 100%;
    opacity: 0;
    overflow-x: hidden;
    overflow-y: scroll;
    position: fixed;
    top: 0;
    width: 70%;
    z-index: 0;
}
nav ul {
    list-style: outside none none;
    margin: 0;
    padding: 0;
    width: 100%;
}
nav li {
    border-bottom: 1px solid #222222;
    border-top: 1px solid #444444;
    font-size: 0.75em;
    padding: 5px 15px;
    position: relative;
}
nav li a {
    color: #fff !important;
    font-size: 12px;
    text-decoration: none;
}
nav li a:hover {
    color: #ff3333 !important;
}
#contentLayer {
    display: none;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 30%;
    z-index: 5;
}
.myaccount {
	background-color: #666;
	opacity: 0.8;
    filter: alpha(opacity=80); /* For IE8 and earlier */
}
.myaccount > a:hover {
	color: #000 !important;
}
