/* User flexbox to keep footer at the bottom of the page */
html, body {
    width: 100%;
    height: 100%;
}

article {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding-left: 0px;
    padding-right: 0px
}

main {
    /* expand main to push footer to the bottom */
    flex-grow: 1;
}

header, main, footer {
    flex-shrink: 0;
}


/*main content and sidebar styles */
#main_container_row {
    padding-top: 40px;
    padding-bottom: 40px;
}

#sidebar li:first-child a {
    background: #29465e;
    color: #FFFFFF;
    font-family: "Rokkitt",Arial,Helvetica,sans-serif;
    padding: 16px;
    line-height: 28px;
    font-size: 27px;
}

#sidebar li a {
    display: block;
    color: #444444;
    padding: 15px;
    border-color: #e0dede;
    border-bottom: 1px solid #e7e6e6;
    text-decoration: none;
    outline: 0;
    font-weight: 400;
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    letter-spacing: 0;
    font-size: 14px;
}

#sidebar li.active a, #sidebar li ul li.active a {
    background-color: #c5d3e0 !important;
    color: #000000;
}

#sidebar li:nth-child(n+1) a:hover {
    background-color: #64bc56 !important;
    color: #FFFFFF;
}

#sidebar li:first-child a:hover {
    background-color: #29465e !important;
    color: #FFFFFF !important;
}

#sidebar li ul li:first-child a {
    display: block;
    color: #444444;
    padding: 15px;
    border-color: #f2f2f2;
    background: #f2f2f2;
    border-bottom: 1px solid #e7e6e6;
    text-decoration: none;
    outline: 0;
    font-weight: 400;
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    letter-spacing: 0;
    font-size: 14px;
    line-height: 1.5;
}


#sidebar li a.sub-menu-header {
    font-weight: 700;

}

#sidebar ul.sub-menu {
    list-style: none;
}

#sidebar ul.menu {
    background-color: #f2f2f2;
    border: none;
}

#sidebar > ul {
    list-style: none;
    margin: 0px;
    padding: 0px;
}


/* footer styles */
#footer {
    width: 100%;
    border-top: 12px solid #c5d3e0;
}

#footer-top {
    background: url("https://documents.highline.edu/highline/footer-tp-bg1.png") no-repeat right bottom, #263039;
}

#footer-subarea {
    background: #131e27;
    padding: 30px;
    font-size: 1rem;
}

#footer-subarea address {
    color: #cccccc;
    font-size: 16px;
}

#footer-top,
#footer-subarea,
#footer-bottom {
    padding-left: 0px;
    padding-right: 0px;
    margin-right: 0px;
    margin-left: 0px;
}

.footer-btn {
    border-radius: 30px;
    text-transform: uppercase;
    /*padding: 9px 20px;*/
    font: 400 13px/32px 'PTSansBold', arial, helvetica, sans-serif !important;
    width: 92%;
    max-width: 231px;
}

.footer-btn:hover, .footer-btn:focus, .footer-btn:active {
    background: #64bc56 !important;
    border: 1px solid #64bc56;
    color: #ffffff;
}

#footer-bottom {
    background-color: #121b22;
    border-color: #232a30;
    min-height: 46px;
    color: white;
}

#footer-bottom ul {
    margin: 0;
    padding: 0;
    font-size: 13px;
    color: #cccccc;
}

#footer-bottom ul li {
    display: inline;
    line-height: 46px;
    padding: 10px;
}

#footer-bottom ul li a {
    color: #cccccc;
}

#footer-bottom ul li a:hover {
    border-bottom: #ffffff;
}

.skip-link {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.skip-link:focus {
    position: static;
    width: auto;
    height: auto;
}

@media print {
    .skip-link {
        display: none !important;
    }
}