.growright_table {
	width: 100%;
}
.growright_table th {
	border-left: 1px solid #000;
	border-right: 1px solid #000;
	border-top: 1px solid #000;
	font-size: 16px;
	padding: 4px 0 4px 0;
	text-align: left;
	border:0;
	border-collapse:inherit;
}
.growright_table td {
	border-left: 1px solid #000;
	border-right: 1px solid #000;
	border-top: 1px solid #000;
	font-size: 14px;
	padding: 4px 0 4px 0;
	text-align: left;
	border:0;
	border-collapse:inherit;
}
.growright_even {
    background-color:#e2dede !important;
    font-size: 14px;
	height: 42px;
}
.growright_odd {
    background-color:#fff9f9 !important;
    font-size: 14px;
	height: 42px;
}
.growright_sticky_header { /* header cell */
  position: sticky;
  top: 0;
  background-color: hsl(0, 0%, 100%);
}
.growright_sticky_header_2 { /* header cell */
  position: sticky;
  top: 100px;
  background-color: hsl(0, 0%, 100%);
}
/* Dropdown Button */
.dropbtn {
  background-color: red;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: fixed;
    bottom: 0px;
    right: 0px;
    z-index: 99;
    font-size: 16px;
    border: none;
    outline: none;
    background-color: red;
    color: white;
    cursor: pointer;
    border-radius: 4px;
}
/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: fixed;
  background-color: red;
    color: white;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: white !important;
  padding: 5px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #000;}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {display: block;}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {background-color: red;} 
