body {
  padding-bottom: 110px; 
}

.hidden {
  height:0 !important;
  position:absolute !important;
  z-index: -1 !important;
  opacity: 0.01 !important;
}
.centertable {
  margin-left: auto;
  margin-right: auto;
}

.gold {
	color: #e1b12c;
}
.red {
	color: red;
}
.green {
	color: #44bd32 !important;
}

.white {
  color: white !important;
}

.white or {
  color: #44bd32 !important;
}

.fffcolor {
	color: #fff !important;
}

.blue {
	color: #007FFF !important;
}

.orangebrown {
	color: #6e500b !important;
}

.orangebrownlight {
	color: #91690e !important;
}




.zoom {
  transition: transform .6s; /* Animation */
  transition: opacity .4s; /* Animation */
  opacity:0.8;
}

.zoom:hover {
  transform: scale(1.1); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
  opacity:1;
}
.zoom2 {
  transition: transform .6s; /* Animation */
  transition: opacity .4s; /* Animation */
  opacity:0.2;
}

.zoom2:hover {
  transform: scale(1.1); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
  opacity:0.4;
}



a.rdp:link{
  text-decoration: none;
  color:white;
}
a.rdp:visited{
  text-decoration: none;
  color:white;
}
a.rdp:hover{
  text-decoration: none;
  color:white;
}
.modal {
display: none; /* Hidden by default */
position: fixed; /* Stay in place */
z-index: 1; /* Sit on top */
left: 0;
top: 0;
width: 100%; /* Full width */
height: 100%; /* Full height */
overflow: auto; /* Enable scroll if needed */
background-color: rgb(0,0,0); /* Fallback color */
background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
padding-top: 60px;
}

/* Modal Content/Box */
.modal-content {
background-color: #fefefe;
margin: 5px auto; /* 15% from the top and centered */
border: 1px solid #888;
width: 80%; /* Could be more or less, depending on screen size */
}

/* The Close Button */
.close {
/* Position it in the top right corner outside of the modal */
position: absolute;
right: 25px;
top: 0; 
color: #000;
font-size: 35px;
font-weight: bold;
}

/* Close button on hover */
.close:hover,
.close:focus {
color: red;
cursor: pointer;
}

/* Add Zoom Animation */
.animate {
-webkit-animation: animatezoom 0.6s;
animation: animatezoom 0.6s
}

@-webkit-keyframes animatezoom {
from {-webkit-transform: scale(0)} 
to {-webkit-transform: scale(1)}
}

@keyframes animatezoom {
from {transform: scale(0)} 
to {transform: scale(1)}
}