#header {
    /*height: 80px;*/
    overflow: hidden;
    position: relative;
}

#headerShadow {
    position: absolute;
    height: 10px;
    bottom: 0;
    left: -10px;
    right: -10px;
    -webkit-box-shadow: inset 0 -3px 6px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: inset 0 -3px 6px rgba(0, 0, 0, 0.5);
    box-shadow: inset 0 -3px 6px rgba(0, 0, 0, 0.5);
}

#headerContent {
    /*background-color: #363636;*/
    background-image: url('/images/header-bkgd.png');
}

#headerContent .centerContainer {
    position: relative;
}

#headerContent a {
    display: inline-block;
    color: #ffffff;
    text-decoration: none;
}

#headerContent a:hover {
    color: #f4793d;
}

#headerRow {
    padding-top: 20px;
    padding-bottom: 20px;
    line-height: 40px;
    height: 40px;
}

#headerRow .title {
    display: inline-block;
    font-size: 20px;
    margin-bottom: 0;
}

#headerRow .title a {
    width: 128px;
    text-indent: -128px;
    overflow: hidden;
    background-image: url('/images/site-logo.png');
}

#headerRow .headerLinks {
    float: right;
    padding-top: 4px;
    line-height: 36px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
}

#headerRow .headerLinks a {
    float: left;
    margin-left: 20px;
    padding: 0 10px;
}

#headerRow .headerLinks a#navMenuButton {
    padding: 9px;
    width: 23px;
    height: 18px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

#navMenuButtonWrapper {
    position: relative;
    display: block;
    height: 100%;
}

#navMenuButtonWrapper span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    
    -webkit-border-radius: 1px;
       -moz-border-radius: 1px;
        -ms-border-radius: 1px;
         -o-border-radius: 1px;
            border-radius: 1px;
    
    -webkit-transition-property: background-color, -webkit-transform, opacity;
       -moz-transition-property: background-color, -moz-transform, opacity;
        -ms-transition-property: background-color, -ms-transform, opacity;
         -o-transition-property: background-color, -o-transform, opacity;
            transition-property: background-color, transform, opacity;

    -webkit-transition-duration: 300ms;
       -moz-transition-duration: 300ms;
        -ms-transition-duration: 300ms;
         -o-transition-duration: 300ms;
            transition-duration: 300ms;

    -webkit-transition-timing-function: cubic-bezier(.5, -0.6, .5, 1.6);
       -moz-transition-timing-function: cubic-bezier(.5, -0.6, .5, 1.6);
        -ms-transition-timing-function: cubic-bezier(.5, -0.6, .5, 1.6);
         -o-transition-timing-function: cubic-bezier(.5, -0.6, .5, 1.6);
            transition-timing-function: cubic-bezier(.5, -0.6, .5, 1.6);
}

.noTouch #navMenuButton:hover #navMenuButtonWrapper span {
    background-color: #f4793d;
}

#navMenuButtonTopLine {
    top: 0;
}

#navMenuButtonMiddleLine {
    top: 8px;
}

#navMenuButtonBottomLine {
    bottom: 0;
}

#navMenuButtonWrapper.close #navMenuButtonTopLine {
    -webkit-transform: translateY(8px) rotate(135deg);
       -moz-transform: translateY(8px) rotate(135deg);
        -ms-transform: translateY(8px) rotate(135deg);
         -o-transform: translateY(8px) rotate(135deg);
            transform: translateY(8px) rotate(135deg);
}

#navMenuButtonWrapper.close #navMenuButtonMiddleLine {
    opacity: 0;
}

#navMenuButtonWrapper.close #navMenuButtonBottomLine {
    -webkit-transform: translateY(-8px) rotate(-135deg);
       -moz-transform: translateY(-8px) rotate(-135deg);
        -ms-transform: translateY(-8px) rotate(-135deg);
         -o-transform: translateY(-8px) rotate(-135deg);
            transform: translateY(-8px) rotate(-135deg);
}

#navMenu {
    overflow: hidden;
}

#navMenu.offscreen {
    position:absolute;
    visibility: hidden;
}

#navMenu .navMenuColumn {
    float: left;
    width: 50%;
    padding-right: 20px;
    box-sizing: border-box;
}

@media (max-width: 520px) {
    #navMenu .navMenuColumn {
        float: none;
        width: auto;
        padding-right: 0;
    }
}

#navMenu .navMenuColumn:last-child {
    padding-right: 0;
}

#navMenu h3 {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Roboto Slab', sans-serif;
    margin-bottom: 10px;
    color: #f2f2f2;
}

#navMenu ul {
    overflow: hidden;
    list-style-type: none;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    color: #f2f2f2;
    -webkit-font-smoothing: antialiased;
}

#navMenu ul li {
    border-bottom: 1px solid #cccccc;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

#navMenu ul li:last-child {
    border-bottom: none;
}

#navMenu ul li a {
    width: 100%;
    max-height: 36px;
    overflow: hidden;
    color: #f2f2f2;
    text-decoration: none;
}

@media (max-width: 520px) {
    #navMenu ul li a {
        height: 18px;
        white-space: nowrap;
        text-overflow: ellipsis;
    }
}

#navMenu ul li a:hover {
    color: #f4793d;
}

#navMenu ul li .highlighted {
    color: #f4793d;
}