body,html {
    height: 100%;
    min-height: 100%;
}

a{
    text-decoration: none;
    color: #000000;
}

pre {
    background: #ffff88;
    border: solid 1px #777777;
    box-sizing: border-box;
}

body {
    margin: 0px;
    padding: 0px;
    font-family: 'PT Sans', sans-serif;

}

#holder {
    width: 100%;
    min-height: 100%;
    margin: auto;
    display: flex;
    flex-flow: column;
    position: relative;
    align-items: center;
}

#holder #head {
    height: 80px;
    min-height: 80px;
    width: 768px;
}

#holder #navigation {
    background: #f08324;
    height: 40px;
    min-height: 40px;
    width: 100%;
    display: flex;
    flex-flow: column;
    position: relative;
    align-items: center;
}


#holder #navigation #pages {
    height: 40px;
    min-height: 40px;
    width: 768px;
}


.navigationlink {
    display: inline-block;
    height: 40px;
    line-height: 40px;
    padding-left: 10px;
    padding-right: 10px;
    color: #ffffff;
    text-transform: uppercase;
    cursor: pointer;
}

.navigationlink > a  {
    height: 40px;
    line-height: 40px;
    text-decoration: none;
    color: #ffffff;
}

.navigationlink:hover {
    background: rgba(255,255,255,0.2);
}

.navigationlink:hover .navigationsub {
    pointer-events: auto;
    opacity: 1;
    transform: scale(1);
}


.navigationsub {
    pointer-events: none;
    opacity: 0;
    display:block;
    position: absolute; 
    color: #000000; 
    background: #ffffff;
    transform-origin: top left;
    transition: transform 0.1s, opacity 0.1s ease-in;
    box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.1);
    transform: scale(0.8);
    margin-left: -10px;
}

.navigationsub> ul{
    list-style-type: none;
    list-style-position: inside;
    padding: 0;
    margin: 0;
}

.navigationsub> ul > li{
    padding: 5px;
    padding-left: 15px;
    padding-right: 15px;
}

.navigationsub> ul > li a{
    color: #777777;
}


.navigationsub> ul > li:hover{
    background: #fcfcfc;
    color: #000000;
}

.navigationsub> ul > li:hover a {
    color: #000000;
}

.mobileentries, .mobileentries > ul{
    font-variant: small-caps;
    list-style-type: none;
    list-style-position: inside;
    padding: 0px;
    line-height: 20pt;
}


.mobileentries, .mobileentries ul{
    list-style-type: none;
    list-style-position: inside;
    line-height: 20pt;
    margin: 0;
}

.mobileentries > li > ul > li {
    background: #fefefe;
    margin: 0;
    padding: 0;
}

.mobileentries, .mobileentries li{
    margin-bottom: 1px;
}


.mobileentries > li > a {
    width: 100%;
    display:inline-block;
    background:#f08324;
    color: #ffffff;
    padding: 5px;
    padding-left: 20px;
    box-sizing: border-box;
    margin: 0;
}


.highlight {
    background-size: cover;
    background-position: center top; 
    background-repeat: no-repeat;
    background-color: #000000;
    overflow: hidden;
}


.highlight * p {
    margin: 0;
    padding: 0;
}

.highlight.hidden .label {
    opacity: 0;
}

.label {
    background: #0087a3;
    border-left: solid 4px #f08324;
    padding-left: 5px;
    padding-right: 5px;
    color: #ffffff;
    font-variant: small-caps;

    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.labellarge {
    background: #0087a3;
    border-left: solid 4px #f08324;
    padding-left: 5px;
    padding-right: 5px;
    color: #ffffff;
    font-variant: small-caps;
    font-size: 24pt;
}

.header {
    background: #f08324;
    height: 40px;
    min-height: 40px;
    line-height: 40px;
    width: 768px;
    max-width: 100%;
    color: #ffffff;
    box-sizing: border-box;
    padding-left: 10px;
    text-transform: uppercase;
}

#archive{
    margin-top: 20px;
    margin-bottom: 20px;
    box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.4);
}

#holder .logo {
    width: 200px;
    height: 80px;
}

#holder #logosmall {
    width: 300px;
    height: 80px;
    float:right;
}

#archive > ul >li {
    background: #ffffff; 
}

#social{
    float:right;
    height: 40px;
    line-height: 40px;
    margin: 0px;
    padding: 0px;
    opacity: 0.5;
}

#social:hover{
    opacity: 1;
}

.footer{
    position: fixed;
    bottom: 0;
    height: 40px;
    background: #ffffff;
    padding-left: 10px;
    padding-right: 10px;
    width: 100%;
    line-height: 40px;
    text-align: center;
    font-size: 10pt;
    color: #cccccc;
    box-sizing: border-box;
    box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.1);
}

.footer a{
    color: #f08324;
}


.footer a:hover{
    color: #000000;
}

.entries{
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.entries > li{
    padding: 5px;
    border-left: solid 1px #cccccc;
    border-right: solid 1px #cccccc;
    border-bottom: solid 1px #cccccc;
    border-top: none;
    line-height: 20pt;
}

.linkIcon {
    font-size: 40pt;
}

.pagecontent a,  .postcontent a{
    font-weight: bold;
    color:  #f08324;
}

.pagecontent a[href^=http] , .postcontent a[href^=http]
{
    color: #0087a3;
}

.pagecontent a:hover,  .postcontent a:hover{
    color: #0087a3;
}

h1, h2, h3 {
    color: #f08324;
}

@media only screen and (min-width: 769px) {






    #holder #content{
        width: 768px;
        padding-bottom: 50px;
    }

    #holder #content img {
        max-width: 768px;
    }

    #holder #content *.highlightLarge {
        width: 768px;
        height: auto;
        margin-top: 20px;
        margin-bottom: 20px;
        padding-top: 46%;
        box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.4);
        cursor: pointer;
    }


    #holder #content *.highlightSmall {
        width:49%;
        padding-top: 25%;
        box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.4);
        display:inline-block;
        cursor: pointer;
    }

    #holder #content *.highlightTiny {
        margin-top: 10px;
        width:49%;
        height: 100px;
        display:inline-block;

        cursor: default;
    }

    #holder #content *.highlightShadow {

        box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.4);
    }


    #holder #content *.highlightRight{
        float:right;     
    }


    #holder #content *.highlightLarge .label {
        font-size: 24pt;
        font-weight: bold;
    }

    #holder #content *.highlightSmall .label {
        font-size: 14pt;
        font-weight: bold;
        text-overflow: ellipsis;
    }

    #holder #content *.mobile {
        display: none;
    }

    .mobile {
        display: none;
    }

    #userbox {
        display: box;
        position: absolute;
        right: calc(50% - 364px);
        top: 14px;
        width: 48px;
        height: 48px;
    }

    #userbox img {
        width: 48px;
        height: 48px;
        border-radius: 28px;
        border: solid 4px #ffffff;
    }
}


@media only screen and (max-width: 768px) {

    #holder {
        padding: 10px;
        box-sizing: border-box;
    }

    #holder #content {
        width: 100%;
        padding: 0;
        padding-bottom: 50px;
    }

    #holder #content img {
        max-width: 100%;
    }

    .labellarge{
        font-size: 12pt;
    }

    #holder #head {
        width: auto;
        height: 90px;
    }


    #holder #content *.highlightLarge {
        width: 100%;
        padding-top: 50%;
        margin:0;
        margin-bottom: 10px;
        box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2);

    }

    #holder #content *.highlightSmall {
        width: 100%;
        padding-top: 50%;
        margin:0;
        margin-bottom: 10px;
        box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2);

    }


    #holder #content *.highlightTiny {
        margin-top: 10px;
        width: 100%;
        padding-top: 0%;
        margin:0;
        margin-bottom: 10px;
        cursor: default;

    }


    #holder #content *.highlightShadow {
        box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2);
    }

    #holder #content *.highlightLarge .label {
        font-size: 12pt;
        font-weight: bold;
    }

    #holder #content *.highlightSmall .label {
        font-size: 12pt;
        font-weight: bold;
    }

    #holder #navigation {
        display: none;
    }


    #holder #navigationmobile #hamburger {
        position: absolute;
        left: 25px;
        top: 35px;
    }


    #holder #navigationmobile #hamburger a {
        text-decoration: none;
        color: #cccccc;
    }

    .largeicon{
        font-size: 30px;
    }

    #holder #navigationmobile #mobileoverlay {
        background:rgba(100, 82, 67, 0.4);
        position: fixed;
        left: 0;
        top: 0;
        bottom: 0;
        right: 0;
        z-index: 10;
        pointer-events: auto;
        transition: background 0.5s;

    }

    #holder #navigationmobile #mobilemenu.hidden {
        left: -300px;
    }

    #holder #navigationmobile #mobileoverlay.hidden {
        background:rgba(100, 82, 67, 0);
        pointer-events: none;

    }


    #holder #navigationmobile #mobilemenu {
        background: #ffffff;
        position: fixed;
        left: 0;
        top: 0;
        max-width: 100%;
        width: 250px;
        height: 100vh;
        overflow: auto;
        box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.6);
        z-index: 11;
        transition: left 0.1s;
        padding: 0;
    }


    #holder #navigationmobile #mobilemenu .logo {
        margin: 10px;
        width: 150px;
        height: auto;
    }

    #holder #navigationmobile #mobilemenu  #closeHamburger{
        color: #cccccc;
        position: absolute;
        right:30px;
        top: 30px;
    }

    .desktop{
        display: none;
    }

    .footer {
        font-size: 14pt;
    }

    #userbox {
        display: box;
        position: absolute;
        right: 24px;
        top: 24px;
        width: 48px;
        height: 48px;
    }

    #userbox img {
        width: 48px;
        height: 48px;
        border-radius: 28px;
        border: solid 4px #ffffff;
    }

}




@media print, speech
{    
    #navigation, #navigationmobile, .footer, #userbox, #logosmall
    {
        display: none !important;
    }
}