﻿
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Open Sans,sans-serif";
    font-size: 1.25rem;
    line-height: 1.42857143;
    color: #333;
    background-color: #fff;
}

#content h1, #content h2, #content h3, #content h4, #content h5, #content h6 {
    font-size: 18px;
}

.contentContainer {
    display: flex;
    justify-content: space-around;
}
.twoColumn{
    flex:2 auto;
}
#tinymce h1, #tinymce h2, #tinymce h3, #tinymce h4, #tinymce h5, #tinymce h6 {
    font-size: 18px;
}

.header {
    font-size: 20px;
    height:100px;
}

.headerlogo {
    display:inline-block;
    position:absolute;
    content: url("/data/images/OliveTree.jpg");
    height: 98px;
    cursor: pointer;
    margin-left:20px;
}
.headertext{
    display:inline-block;
    padding-left:150px;
    padding-top:20px;
}
.menubar {
    background-color: #ef4723;
    text-align: center;
    z-index: 1000;
}

.caret {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 2px;
    vertical-align: middle;
    border-top: 4px dashed;
    border-top: 4px solid\9;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
}

.dropbtn {
    background-color: #ef4723;
    color: white;
    padding: 10px;
    font-size: 14px;
    border: none;
    cursor: pointer;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.adminMenu {
    position: relative;
    display: inline-block;
    background-color: #003366;
    color: white;
    padding: 10px;
    font-size: 14px;
    border: none;
    cursor: pointer;
}

.dropdown-content {
    font-size: 14px;
    display: none;
    position: absolute;
    background-color: #ef4723;
    min-width: 130px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

    .dropdown-content a {
        color: white;
        padding: 5px 5px;
        text-decoration: none;
        display: block;
    }

        .dropdown-content a:hover {
            background-color: #f56446
        }

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
    background-color: #f56446;
}

.contentItem {
    z-index: 0;
    padding: 0px 0px 0px 0px;
}
/* Style the side navigation */
.sidenav {
    height: 100%;
    width: 200px;
    float: left;
    left: 0;
    overflow-x: hidden;
    color: black;
}


    /* Side navigation links */
    .sidenav a {
        padding: 5px;
        text-decoration: none;
        display: block;
    }

        /* Change color on hover */
        .sidenav a:hover {
            background-color: #ddd;
            color: white;
        }

/* Style the content */
.content {
    margin-top:10px;
    margin-left: 50px;
    margin-right: 50px;
}
