.topimage {
  width: 1200px;
  grid-area: header;
  background-color: white;
}

.topmenu {
  width: 1050px;
  grid-area: menu;
  background-color: #003b7d;
}

.leftsidebar {
  grid-area: left;
  background-color: #003b7d;
}

.actionCenter {
  grid-area: main;
  /*
          minheight:800px;
          height: auto;
          border-right:auto;
          border-left:auto;
          width: auto;
    */
}

  .actionCenter > iframe {
    width: 100%;
    border: 0px;
    /*
            width: 900px;
            min-height:800;
             height: inherit;
            height:800px;
          border-right:auto;
          border-left:auto;
          height: 99%;
                width: 99%;
          */
  }


.rightsidebar {
  grid-area: right;
  background-color: white;
}


.copyright {
  grid-area: footer;
}

.grid-container {
  width: 1200px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  /*
              width:800px;
              width: 500px;
        */
  display: grid;
  grid-template-areas:
    'header header header'
    'left menu menu'
    'left main right'
    'left main right';
  gap: 0px;
  background-color: white;
  /* #2196F3;
                */
  padding: 0px;
  grid-template-columns: 150px auto 150px;
  grid-template-rows: 80px 40px auto 100px;
}

  .grid-container > div {
    /*
                  This overrides a lot of backgrounds including the menu.
                  Each part should have it's own background color now
        background-color: rgba(255, 255, 255, 0.8);

                background-color: rgba(255, 255, 255, 0.8);
        */
    text-align: center;
    padding: 5px 0;
    font-size: 30px;
  }

/* Menu CSS */

.dropdownmenu ul, .dropdownmenu li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.dropdownmenu ul {
  background: gray;
  list-style: none;
  width: 100%;
}

.dropdownmenu li {
  float: left;
  position: relative;
  width: auto;
}

.dropdownmenu a {
  background: #003b7d;
  color: #FFFFFF;
  display: block;
  font: bold 12px/20px sans-serif;
  padding: 5px 40px;
  text-align: left;
  text-decoration: none;
  transition: all .25s ease;
  /*
              -webkit-transition: all .25s ease;
              -moz-transition: all .25s ease;
              -o-transition: all .25s ease;
              text-decoration: none;
              transition: all .25s ease;
              */
}

.dropdownmenu li:hover a {
  background: #003b7d;
}

.submenu {
  /*
              margin: 0;
              padding: 0;
              */
  left: 0;
  opacity: 0;
  position: absolute;
  top: 50px;
  visibility: hidden;
  z-index: 1;
}

li:hover ul.submenu {
  opacity: 1;
  top: 30px; /* adjust this as per top nav padding top & bottom comes */
  visibility: visible;
}

.submenu li {
  float: none;
  width: 120%;
  border-bottom: 1px #000 solid;
}

.submenu > li > a:hover {
  background: #006de5;
}

.submenu > li > a {
  background-color: #003b7d;
}
