/* ********** WRAPPER ********** */

#wrapperOuter {
    position:absolute;
    top:10px;
    bottom:10px;
    left:10px;
    right:10px;
    background-color: transparent;
    max-width: 1100px;
    margin:auto;
}

#wrapperInner {
    border-width:.4rem;
    -moz-border-radius: 2rem;
    -webkit-border-radius: 2rem;
    border-radius: 2rem;
    bottom: 0;
    top: 0;
    right: 0;
    left: 0;
    position: absolute;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
}

/* ********** HEADER ********** */

header, #header{}

/* ***** Banner ***** */

#banner{
    text-align: center;
    padding: 10px 10px 0 10px;
}

#banner_left{
    float:left;
    padding: 10px 0 0 10px;
}
#banner_right{
    float:right;
    padding: 10px 10px 0 0;
}

/* ***** Menu ***** */
#menu {
    clear:both;
    float:left;
    margin:auto;
    padding:0;
    border-width: .1rem 0;
    border-style: solid;
    width:100%;
    z-index:1 !important; /* This makes the dropdown menus appear above the page content below */
}

#currentSection {
    float:right;
    text-align:right;
    vertical-align:middle;
    padding:.2rem;
    clear: both;
    font-family:Trebuchet MS, Arial, Helvetica, sans-serif;
    font-style:italic;
    font-size:1.2rem;
}

.menuContainer {
    position: relative;
    display: inline-block;
    cursor: pointer;
    padding:.2rem;
    z-index: 2;
}

.menuBar1, .menuBar2, .menuBar3 {
    width: 16px;
    height: 3px;
    margin: 3px 0;
    transition: 0.4s;
}

.change .menuBar1 {
    -webkit-transform: rotate(-45deg) translate(-4px, 4px);
    transform: rotate(-45deg) translate(-4px, 4px);
}

.change .menuBar2 {opacity: 0;}

.change .menuBar3 {
    -webkit-transform: rotate(45deg) translate(-4px, -4px);
    transform: rotate(45deg) translate(-4px, -4px);
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    min-width: 160px;
    z-index: 2;
}

.show {display:block;}

.accordion {
    cursor: pointer;
    padding: 6px 12px;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
}

.active, .accordion:hover {
    background-color: #ccc;
}

.accordion:after {
    content: '\02795'; /* Unicode character for "plus" sign (+) */
    font-size: 13px;
    color: #777;
    float: right;
    margin-left: 5px;
}

.active:after {
    content: "\2796"; /* Unicode character for "minus" sign (-) */
}

.panel {
    padding: 0 12px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

/* Current Header Area */

#currentHeader {
    clear: both;
    min-height: 10px;
    position: relative;
}

/* ********** MAIN CONTENT ********** */
/* DO NOT USE rem for content padding, it throws off other divs. */

main{}

#content{
    overflow-y:auto;
    overflow-x:hidden;
    padding: 0 10px;
    flex: 1;
    position: relative;
}

#column_left {
    float: left;
    width: 45%;
}

#column_right {
    float: right;
    width: 45%;
}

#clear {
    clear:both;
}

.section{
    clear:both;
    margin:auto;
    padding: 5px;
}

.header {
    clear:both;
    padding: 5px;
    position: relative;
    z-index: 1;
}
/* ******************* FOOTER *******************  */

footer, #footer {
    padding: 10px 0;
    display: table;
}

#copyright{
    display: table-cell;
    vertical-align: middle;
    text-align:center;
    font-size:.9rem;
    font-weight: bold;
}