body {
    margin: 0px;
    padding: 0px;
    font-family: Arial;
    font-size: 14px;
    font-weight: normal;
    background-color: rgb(10, 41, 62);
    width: 100%;
    height: 100%;
}

#lateralMenu,
#leftPanel {
    height: 630px;
    position: absolute;
    margin-left: 0px;
    top: 40px;
    bottom: 0;
    width: 200px;
    /* width:250px; */
    padding: 5px;
    color: rgb(250, 250, 250);
}

#lateralContent,
#leftPanelContent {
    height: 500px;
}

#lateralMenu a,
#leftPanel a {
    text-decoration: none;
    color: black;
}

#right,
#rightPanel {
    margin-top: 10px;
    margin-left: 200px;
    /* margin-left:260px; Jaouhar 24/3/20 */
    width: auto;
}

#globalMenu,
#localMenu {
    width: 90%;
    border: 1px solid darkgrey;
    font-family: Arial;
    font-size: 12px;
    font-weight: normal;
}


/* En-tete des sous-fenêtres situ�es dans la partie droite */

.subwindow_title {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    width: 100%;
    min-width: 300px;
    height: 27px;
    background-color: #005588;
    color: #dddddd;
    font-family: Arial;
    font-size: 15px;
    font-weight: bold;
    padding-top: 4px;
    border-bottom: 1px solid black;
}

.genericButton {
    min-width: 150px;
    height: 2.5em;
    font-size: 14px;
    font-weight: bold;
    background-color: #005588;
    color: white;
    border-radius: 5px;
}

.genericButton:hover {
    cursor: pointer;
    background-color: #003366;
}

#globalMenu,
#localMenu {
    background-color: inherit;
    color: white;
    border: 0px solid;
}

#globalMenu li,
#localMenu li {
    list-style-type: none;
    display: block;
    padding-top: 2px;
    padding-bottom: 2px;
    line-height: 1.5;
    min-height: 1.5;
    font-weight: normal;
}

#globalMenu li:hover,
#localMenu li:hover {
    background-color: #8083e6;
    color: white;
    font-weight: bold;
    cursor: pointer;
}

#globalMenu li a,
#localMenu li a {
    color: white;
}

#globalMenu li a:hover,
#localMenu li a:hover {
    background-color: #8083e6;
    color: white;
}

#globalMenu li a.optionMenuSelected,
#localMenu li a.optionMenuSelected {
    font-weight: bold;
    color: black;
    border-radius: 0px;
}

.labels {
    font-size: 12px;
    font-weight: bold;
    color: #005588;
}


/* The alert message box */

.alert {
    padding: 9px;
    background-color: #f44336;
    /* Red */
    color: white;
}


/* The close button */

.closebtn {
    margin-left: 15px;
    color: white;
    font-weight: bold;
    float: right;
    font-size: 22px;
    line-height: 20px;
    cursor: pointer;
    transition: 0.3s;
}


/* When moving the mouse over the close button */

.closebtn:hover {
    color: black;
}