img.disabled {
  opacity: 0.5;
}

img.clickable {
  cursor: pointer;
}

img.round {
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}

@keyframes shake {
  0% { transform: translate(1px, 1px) rotate(0deg); }
  10% { transform: translate(-1px, -1px) rotate(0deg); }
  20% { transform: translate(1px, 1px) rotate(0deg); }
  30% { transform: translate(-1px, -1px) rotate(0deg); }
  40% { transform: translate(1px, 1px) rotate(0deg); }
  50% { transform: translate(-1px, -1px) rotate(0deg); }
  60% { transform: translate(1px, 1px) rotate(0deg); }
  70% { transform: translate(-1px, -1px) rotate(0deg); }
  80% { transform: translate(1px, 1px) rotate(0deg); }
  90% { transform: translate(-1px, -1px) rotate(0deg); }
  100% { transform: translate(1px, 1px) rotate(0deg); }
}

table, th, td {
  border: 0px solid black;
  border-collapse: collapse;
  padding: 0px;
  border-spacing: 0px;
}

td.tops {
	vertical-align: top;
}

td.round {
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}

td.clickable {
  cursor: pointer;
}

h3 {
  background: #4a4a4a;
  padding: 5px;
  font-family: Tahoma, sans-serif;
  color: black;
  text-shadow: -1px 0 white, 0 1px white, 1px 0 white, 0 -1px white;
}

p {
  background: #333333;
  color: #ffffff;
  margin: 5px;
  font-family: Tahoma, sans-serif;
}

p.round {
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}

p.sticky {
	position: sticky;
	top: 0;
}

p.white {
  background: #ffffff;
}

p.gray {
  background: gray;
}

div.sticky {
	background: #ffffff;
	position: sticky;
	top: -25;
}

/* #################################################### */
/* ###################### Modal ####################### */
/* #################################################### */
/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 9999; /* Sit on top */
  padding-top: 1px; /* Location of the box */
  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.65); /* Black w/ opacity */
}

.modal2 {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 10000; /* Sit on top */
  padding-top: 1px; /* Location of the box */
  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.65); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  position: fixed; /* Stay in place */
  left: 0;
  top: 0;
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 65%;
  height: 80%;
  overflow: auto; /* Enable scroll if needed */
}

/* The Close Button */
.close, .closeCredits {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover, .close:focus, .closeCredits:hover, .closeCredits.focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

#myProgress {
	width: 100%;
	height: 15px;
	background-color: grey;
	position: relative;
	z-index: 100;
}

#myTarget {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  width: 0%;
  height: 15px;
  background-color: blue;
  text-align: right;
  line-height: 15px;
  color: yellow;
  position: relative;
  z-index: 200;
}

#myBar {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  left: 0;
  top: 0;
  width: 0%;
  height: 15px;
  background-color: green;
  text-align: center;
  line-height: 15px;
  color: white;
  position: absolute;
  z-index: 300;
}
