@charset "UTF-8";
/* CSS Document */

#container {
	overflow: visible;
	max-width: 1440px;
}

#container-table table tr td p {
	font-family: Times New Roman, Times, serif;
}

/* Hide the div by default */
.desktop-only {
  display: none;
}

/* Show the div on screens wider than a typical mobile breakpoint (e.g., 768px) */
@media screen and (min-width: 768px) {
  .desktop-only {
    display: block; /* or whatever display value you need */
  }
}

/* Hide the div by default (e.g., on desktop) */
.mobile-only {
  display: none;
}

/* Show the div on screens narrower than a typical mobile breakpoint (e.g., 768px) */
@media screen and (max-width: 767px) {
  .mobile-only {
    display: block; /* or whatever display value you need */
  }
}

map area {
    cursor: pointer !important;
}