@charset "utf-8";

/* CSS Document */

*{
  box-sizing: border-box;
}
@font-face {
        font-family: navfont;
        src: url(../fonts/HARLOWSI_1.woff) format('woff');
        font-style: normal;
        font-weight: normal; 
        text-decoration: none;
}
body {
    background-image: url(../images/bg.png);
    background-repeat: repeat;
    font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
    margin: 0;
}
#wrapper {
    position:relative;
    width: 1024px;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    min-height: 100vh;
    box-sizing: border-box;
}

/* Header and Navigation section */

#header {
    position:relative;
    display: block;
    height: 112px;
    width:100%;
    margin: 0;
    padding: 0;
}
#header #left_section {
    width: 47%;
    height: 100%;
    display: inline;
    float: left;
    
}
#header #right_section {
    width: 53%;
    height: 100%;
    display: inline;
    padding-top: 50px;
    float: right;
}

#header #right_section ul.top_navigation {
    list-style: none;
    float: right;
    padding: 0px 10px 0 0;
}
#header #right_section ul.top_navigation li {
    float: left;   
    padding: 0;
    margin-left: 5px;
    margin-right: 0;
}
#header #right_section ul.top_navigation li a.menulink {
    font-size: 26px;
    color: #424242;
    text-decoration: none;
    padding: 0 7px;
        }
#header #right_section ul.top_navigation li a.menulink:hover {
    font-size: 26px;
    color: #08a5ff;
    text-decoration: none;
}
        
#header #right_section ul.top_navigation li a.menulink.active {
    font-size: 26px;
    color: #08a5ff;
    text-decoration: none;
} 
        
#description-bar {
        position: relative;
        display: block;
        background-color: #8085ab;
        height: 50px;
}

#descrip-td {
            color:#FFFFFF; 
            font-size: 16px;
            text-align: center;
}

#spacer50 {
    position: relative;
    display: block;
    height:50px;
    margin: 0;
    padding: 0;
    background-color: white;
}
#spacer100 {
    position: relative;
    display: block;
    height:100px;
    margin: 0;
    padding: 0;
    background-color: white;
}



 
