/*
/* jde, 21/07/17, Original coding
/* CSS Document */

body {
    background: lightgrey;
    font-size: 14px;
    line-height: 10px;
    color: #1a4363;
    margin: 0;
    padding: 0;
    word-wrap: break-word !important;
    font-family: 'Open Sans', sans-serif;
}

h1 {
    font-size: 60px;
    text-align: center;
    color: #FFF;
}

h3 {
    font-size: 30px;
    line-height: 34px;
    text-align: center;
    color: #FFF;
}

h3 a {
    color: #FFF;
}

a {
    color: #FFF;
}

p {
    text-align: center;
}

.toggle,
[id^=drop] {
    display: none;
}

/* Giving a background-color to the nav container. */
nav {
    margin: 0;
    padding: 0;
    background-color: #115d99;
}

#logo {
    display: block;
    background-size: contain;
    background-repeat: no-repeat;
}


/* Since we'll have the "ul li" "float:left"
 * we need to add a clear after the container. */

nav:after {
    content: "";
    display: table;
    clear: both;
}

/* Removing padding, margin and "list-style" from the "ul",
 * and adding "position:reltive" */
nav ul {
    float: right;
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
}

/* Positioning the navigation items inline */
nav ul li {
    margin: 0;
    display: inline-block;
    float: left;
    background-color: #115d99;
}

/* Styling the links */
nav a {
    display: block;
    padding: 8px 8px;
    color: #FFF;
    font-size: 14px;
    text-decoration: none;
}

nav ul li ul li:hover {
    background: #295B84;
}

/* Background color change on Hover */
nav a:hover {
    background-color: #295B84;
}

/* Hide Dropdowns by Default
 * and giving it a position of absolute */
nav ul ul {
    display: none;
    position: absolute;
    /* has to be the same number as the "line-height" of "nav a" */
    top: 60px;
}

/* Display Dropdowns on Hover */
nav ul li:hover > ul {
    display: inherit;
}

/* Fisrt Tier Dropdown */
nav ul ul li {
    width: 170px;
    float: none;
    display: list-item;
    position: relative;
}

/* Second, Third and more Tiers
 * We move the 2nd and 3rd etc tier dropdowns to the left
 * by the amount of the width of the first tier.
*/
nav ul ul ul li {
    position: relative;
    top: -60px;
    /* has to be the same number as the "width" of "nav ul ul li" */
    left: 170px;
}

/* Change ' +' in order to change the Dropdown symbol */
li > a:after {
    content: ' +';
}

li > a:only-child:after {
    content: '';
}

#main {
    display: block;
    background-color: lightgray;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    padding: 0.5em;
}

/* jde 21/07/17*/
#header {
    margin-top: 1em;
    margin-bottom: 1em;
    width: 100%;
}

#header #headerBody {
    width: 90%;
    margin: 0 auto;
}

#content {
    width: 90%;
    margin: 0 auto;
}

#contentLeft {
    width: 25%;
    float: left;
    background-color: white;
}

#SideNavigationLong {
    height: 450px;
    overflow: auto;
}

#contentRight {
    width: 75%;
    height: 450px;
    float: left;
    background-color: white;
}

#footer {
    margin-top: 1em;
    margin-bottom: 1em;
}

#footer #footerBody {
    width: 90%;
    margin: 0 auto;
}

.clear {
    float: none;
    clear: both;
}

#footerBody nav ul li a {
    display: inline-block;
    text-decoration: underline;
}


