/* CSS support for STEMMA website */
/* Author:	A.C.Proctor	4-Dec-2020	*/

html, body {
    height: 100%;
    width: 100%;
    overflow: hidden;
}

body {
    background-image: url('http://parallaxview.co/stemma/Backdrop.jpg');
    background-size: cover;
}


a:link, a:visited {
    color: steelblue;
    font-size: 14px;
    text-decoration: none;
}

a:hover {
    color: steelblue;
    font-size: 14px;
    text-decoration: underline;
}


/* Remove default bullets */
.MenuList {
    list-style-type: none;
}

/* Remove margins and padding from the parent ul */
.MenuList {
    margin: 0;
    padding: 0;
    color: steelblue;
}

/* First-level menu */
.MenuList {
    padding-left: 5px;
}


/* Second Level menu */
.MenuList .MenuList {
    padding-left: 20px;
}

/* Third Level menu */
.MenuList .MenuList .MenuList {
    padding-left: 30px;
}

/* Top-level menu entries */
.MenuTop {
    font-weight: bold;
}

/* The currently active menu entry */
.MenuCurrent {
    font-weight: bold;
    color: black !important;	/* To override a:hover, etc */
}

/* Hide the nested list */
.MenuNested {
    display: none;
}

/* Show the nested list when the user clicks on the caret/arrow (with JavaScript) */
.MenuActive {
    display: block;
}


.MenuTitle {
    color: white;
    background-color: rgb(102, 153, 204);
    display: block;
    padding-left: 5px;
}

/* Style the caret/arrow */
.MenuCaret {
    cursor: pointer;
    user-select: none;	/* Prevent text selection */
}

/* Create the caret/arrow with a unicode, and style it */
.MenuCaret::before {
    content: "\25B6";
    color: gray;
    font-size: 14px;
    display: inline-block;
    margin-right: 2px;	/* Separation after caret*/
}

/* Rotate the caret/arrow icon from right-pointing to down-pointing */
.MenuCaretDown::before {
    transform: rotate(90deg);
}

/* Spacer to align with entris having a caret */
.MenuPad {
    content: " ";
    cursor: pointer;
    user-select: none;	/* Prevent text selection */
    display: inline-block;
    width: 14px;
}


#menuNav { 
    float:left;  
    background: white; 
    width: 19%; 
    border-style: solid;
    border-width: thin;
    overflow-y: auto;
    max-height: 92%;
}

#content { 
    margin-left: 20%;
    position: relative;
    background: white; 
    width: 79%; 
    height: 92%;
    border-style: solid;
    border-width: thin;
}

#iframeContent{
    overflow: hidden; 
    border: none;
    width: 100%; 
    height: 98%;
} 
