/* fonts */

/* background image and top bar logo */
.layer_background{
  display:flex;
  flex-direction: column;
  position:fixed;
  left:0;
  top:0;
  height: 100%;
  width:100%;
  align-items: center;
  margin:0px;
  z-index:2;
  background-position: top;
  background-repeat: no-repeat;
  background-color: black;
  color:blue;
}

.layer_Title{
  display:flex;
  top:0;
  left:0;
  width:100%;
  height: 100px;
  justify-content:center;
  background-color: #233A47;
  z-index:3;
}

.layer_Content{
  display:flex;
  flex-direction: row;
  margin-top: 5px;
  width:99%;
  height: 99%;
  overflow-y: auto;
}

.layer_Menu{
    display: flex;
    flex-direction: column;
    width:20%;
    height: 99%;
    background-color: #233A47;
    z-index:3;  
}

.layer_Main{
  display: flex;
  flex-direction: column;
  width:75%;
  background-color: black;
  color:white;
  z-index:3;
  overflow-y:auto;
  padding: 5px;
  
}

.layer_TopMenu{
    display: flex;
    flex-direction: row;
    width:99%;
    background-color: #233A47;
    z-index:3;  
}

/*Content Styles*/
.MenuItem{
    width:99%;
    border:1px solid black;
    color:black;
    background-color: silver;
    text-align: center;
    cursor: pointer;
}

.MenuItemTop{
    width:99%;
    border:1px solid black;
    color:black;
    background-color: silver;
    text-align: center;
    cursor: pointer;
}
.Section_Header{
    font-size: 16pt;
    font-weight: bold;
    border-bottom: 1px solid white;
    margin-bottom: 5px;
}

.Section_Text{
    font-size: 16px;
}