﻿
html {
    overflow-y: scroll;
}

* {
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 1em;
    background-color: white;
    color: #4a4a4a;
}

h1{
    font-weight: 600;
    font-size: 1.3em;
}



/* Header */

/*header {
    background-color: #f1f2f7;
    color: lightblue;
    height: 80px;
    border-bottom: solid 1px #0c5778;
}*/

#header-grid {
    border-bottom: solid 1px #0c5778;
    grid-gap: 0;
}

#header-logo-section {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    position: relative;
    background-color: #f1f2f7;
}

#main-logo {
    xmargin-top: 1px;
}

#header-client-section {
    background-color: #0c5778;
    height: 100px;
}




/* End Header */



#main-content {
    min-height: 25em;
    display: grid;
    grid-template-columns: 0 1fr;
}

#left-menu {
    border-right: solid 1px #acacac;
    background-color: #f1f2f7;
    xmargin-top: 5px;
    position: relative;
}

.menu-item {
    background-repeat: no-repeat;
    background-size: 28px 28px;
    background-position-y: center;
    background-position-x: 5px;
}

    .menu-item:hover {
        background-color: #cdcdcd
    }

    .menu-item .inner-menu-item {
        margin-left: 40px;
    }

#left-menu a {
    color: #4a4a4a;
}

    #left-menu a:visited {
        color: #4a4a4a;
    }

    #left-menu a:hover {
        text-decoration: none;
    }









footer {
    background-color: #0c5778;
    color: lightgray;
    text-align: right;
    padding: .25em;
}

    footer a {
        color: lightgray;
    }

    footer a:visited {
        color: lightgray;
    }



a{
    text-decoration: none;
}

    a:hover {
        text-decoration: underline;
    }





@media (min-width: 720px) {

/*    header {
        height: 100px;
    }*/
    
    
    #header-grid {
        display: grid;
        grid-template-columns: 280px 1fr;
    }

    #site-image {
        height: 100px;
        xwidth: 50%;
        padding: 0;
        margin: 0;
    }

    #header-logo-section {
        width: 280px;
        grid-gap: 0;
        padding: 0;
        margin: 0;
    }

    #header-client-section {
        grid-gap: 0;
        padding: 0;
        margin: 0;
    }


    #main-content {
        grid-template-columns: 280px 1fr;
    }

    #left-menu-inner {
        padding-top: 1.2em;
        line-height: 2.5em;
    }
   

}

