.parent {display: block;position: relative;float: left;line-height: 30px;background-color: #4FA0D8;border-right:#CCC 1px solid;}
.parent a{margin: 10px;color: #FFFFFF;text-decoration: none;}
.parent:hover > ul {display:block;position:absolute;}
.child {display: none;}
.child li {background-color: #E4EFF7;line-height: 30px;border-bottom:#CCC 1px solid;border-right:#CCC 1px solid; width:100%;}
.child li a{color: #000000;}
ul{list-style: none;margin: 0;padding: 0px; min-width:10em;}
ul ul ul{left: 100%;top: 0;margin-left:1px;}
li:hover {background-color: #95B4CA;}
.parent li:hover {background-color: #F0F0F0;}
.expand{font-size:12px;float:right;margin-right:5px;}

/* Style the buttons that are used to open and close the accordion panel */
.accordion {
    background-color: rgb(226, 111, 17);
    color: white;
    cursor: pointer;
    padding: 5px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
    margin-top: 5px;
  }

.color-pallete-1 {
    background-color: rgb(227,92,12);
}
.color-pallete-2 {
    background-color: rgb(237,137,36);
}
.color-pallete-3 {
    background-color: rgb(235,115,12);
}
.color-pallete-4 {
    background-color: rgb(227,76,27);
}
.color-pallete-5 {
    background-color: rgb(229,88,28);
}
  
  /* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
  .active, .accordion:hover {
    background-color: #ccc;
  }
  
  /* Style the accordion panel. Note: hidden by default */
  .panel {
    padding: 0 18px;
    background-color: white;
    display: none;
    overflow: hidden;
  }

  .accordion:after {
    content: '\0276F'; /* Unicode character for "plus" sign (+) */
    font-size: 13px;
    color: white;
    float: left;
    margin-left: 10px;
  }
  
  .active:after {
    content: "\0276E"; /* Unicode character for "minus" sign (-) */
  }

  .pdf {
      width: 50px;
  }

  table, th, td {
    border: 1px solid black;
    border-collapse: collapse;
  }

.center {
    text-align: center; 
    vertical-align: middle;
}