body {
  background: #333333;
  color: #ffffff;
  margin-left: 0px;
  margin-right: 0px;
}
#scrollmenu {
  position: absolute;
  width: 70px;
  height: 29px;
  z-index: 3;
  left: 80px;
  top: 330px;
}
table {
  width: 2800px;
  border: none;
  padding: 0px;
  margin-top: 20px;
}
td {
  width: 200px;
  text-align: center;
}
p {
  text-align: center;
}
.flecha {
  border: none;
  width: 20px;
  height: 15px;
  margin: 7px;
}
a:link {
  text-decoration: none;
  color: #339999;
  font-weight: bold;
}
a:visited {
  text-decoration: none;
  color: #999999;
  font-weight: bold;
}
a:active {
  text-decoration: none;
  color: #999999;
  font-weight: bold;
}
a:hover {
  text-decoration: none;
  color: #99CC99;
  font-weight: bold;
}

.orange-button {
  position: relative;
  vertical-align: top;
  width: 100px;
  height: 20px;
  padding: 0;
  font-size: 12px;
  color: white;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  background: #f39c12;
  border: 0;
  border-bottom: 2px solid #e8930c;
  cursor: pointer;
  -webkit-box-shadow: inset 0 -2px #e8930c;
  box-shadow: inset 0 -2px #e8930c;
}

.orange-button:hover {
  top: 1px;
  opacity:80%;
  outline: none;
  border-bottom: 4px solid #e8930c;
  -webkit-box-shadow: inset 0 2px #e8930c;
  box-shadow: outset 0 -2px #e8930c;
}

.orange-button:active {
  top: 1px;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

/* ---- Mobile fix ----
   The scroll arrows only work on mouseover, which doesn't exist on touch
   screens. On touch devices, drop the absolute positioning so the wide
   filmstrip becomes a normal in-flow element the user can swipe/scroll
   horizontally instead, and hide the now non-functional arrow buttons. */
@media (hover: none), (pointer: coarse) {
  #contentLayer {
    position: static !important;
    max-width: none;
  }
  body {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  #scrollmenu {
    display: none;
  }
}

