@import url("https://fonts.googleapis.com/css2?family=Shrikhand&display=swap");
body {
  color: black;
  background-color: #d3fdee;
  font-family: Arial,Helvetica,Sans-Serif;
  font-size: 12pt;
}

h1, h2, h3 {
  font-family: Shrikhand,Arial,Helvetica,Sans-Serif;
  font-variant: small-caps;
}

h3 {
  font-size: 24pt;
}

a img, a input {
  border: 0;
}

/* Link button styling */
.buttons a, .buttons button {
  font-family: Shrikhand;
  display: inline-block;
  text-decoration: none;
  border-style: outset;
  border-radius: 0.75em;
  padding: 4px 0.5em;
  margin: 0.25em 0.33em;
}
.buttons a img, .buttons button img {
  margin-right: 4px;
  border: none;
}

/* Standard table styling */
table {
  border: thin solid #00784c;
  padding: 0;
  border-spacing: 0;
}
table thead, table tfoot {
  font-family: Shrikhand;
  text-align: center;
  font-weight: bold;
  font-size: 18pt;
  font-variant: small-caps;
}
table thead td, table thead th, table tfoot td, table tfoot th {
  color: white;
  background-color: #00784c;
}
table td, table th {
  border: thin solid #00784c;
  padding: 0.25em 0.33em;
}
table td.buttons a {
  font-family: Shrikhand;
  display: inline-block;
  text-decoration: none;
  border-style: outset;
  border-radius: 0.75em;
  padding: 4px 0.5em;
  margin: 0.25em 0.33em;
  background-color: #00de8d;
  border-color: #00784c;
  color: #265a26;
}
table td.buttons a img {
  margin-right: 4px;
  border: none;
}
table td.buttons a:hover {
  background-color: #45ffbb;
  border-color: #00784c;
  color: #265a26;
}

table.noborder {
  border: 0;
}
table.noborder td {
  border: 0;
}

table.sortable thead td {
  cursor: default;
}
table.sortable thead td.sorttable_nosort {
  cursor: not-allowed;
}
table.sortable thead td::before, table.sortable thead td.sorttable_sorted::before, table.sortable thead td.sorttable_sorted_reverse::before {
  content: " ";
  display: inline-block;
  width: 24px;
  height: 24px;
}
table.sortable thead td.sorttable_sorted::before {
  content: "\25B2";
  color: lime;
}
table.sortable thead td.sorttable_sorted_reverse::before {
  content: "\25BC";
  color: lime;
}

#sorttable_sortfwdind, #sorttable_sortrevind {
  display: none;
}

.tooltip {
  float: right;
  position: relative;
  background-color: #00784c;
  color: white;
  border: thin solid #00784c;
  cursor: default;
}
.tooltip .tt_text {
  display: none;
  visibility: hidden;
  width: 350px;
  color: #265a26;
  border-radius: 6px;
  padding: 1em;
  position: absolute;
  z-index: 1;
  border: 3px solid #00784c;
  top: 50%;
  left: 50%;
  background-color: #00de8d;
  opacity: 0;
  transition: opacity 1s;
  box-shadow: 10px 10px 10px black;
  cursor: default !important;
}
.tooltip:hover .tt_text {
  display: inline-block;
  visibility: visible;
  opacity: 1;
}

div#topBox {
  text-align: center;
  font-size: 18pt;
  font-weight: bold;
  min-width: 940px;
  color: white;
  background-image: url("/images/catbar.jpg");
  background-size: cover;
  padding: 0.5em 1em;
  border: 0.35em outset #002393;
  border-radius: 45px;
}
div#topBox span.hdr {
  font-family: Shrikhand;
  font-size: 36pt;
  text-shadow: 5px 5px 5px #00784c;
}
div#topBox img#thelogo {
  float: left;
  vertical-align: middle;
  margin: 0 1em;
}

/* Styling for song listing tables */
table.songs {
  width: 100%;
  font-weight: bold;
  border-radius: 30px;
}
table.songs thead tr td:first-child {
  border-top-left-radius: 30px;
}
table.songs thead tr td:last-child {
  border-top-right-radius: 30px;
}
table.songs tfoot tr td:first-child {
  border-bottom-left-radius: 30px;
}
table.songs tfoot tr td:last-child {
  border-bottom-right-radius: 30px;
}
table.songs tbody tr:nth-child(even) {
  background-color: #d3fdee;
}
table.songs tbody tr:nth-child(odd) {
  background-color: #abffe0;
}
table.songs tr.newRelease td.itemNbr {
  background-position: left;
  background-repeat: no-repeat;
  background-image: url("images/btnNew.png");
}
table.songs tr.newRelease td.title:after {
  content: " - New Release";
  font-style: italic;
  color: red;
}
table.songs tr.remaster td.title:after {
  content: " - Remastered";
  font-style: italic;
  color: royalblue;
}
table.songs span.subs {
  font-weight: normal;
}
table.songs span.cmt {
  font-weight: normal;
  font-size: smaller;
  font-style: italic;
}
table.songs td.itemNbr {
  text-align: right;
  min-width: 130px;
}
table.songs td.buttons {
  font-size: 12pt;
}
table.songs td.buttons img {
  vertical-align: middle;
}
table.songs td.buttons a, table.songs td.buttons button {
  font-family: Shrikhand;
  display: inline-block;
  text-decoration: none;
  border-style: outset;
  border-radius: 0.75em;
  padding: 4px 0.5em;
  margin: 0.25em 0.33em;
  background-color: #00de8d;
  border-color: #00784c;
  color: #265a26;
}
table.songs td.buttons a img, table.songs td.buttons button img {
  margin-right: 4px;
  border: none;
}
table.songs td.buttons a:hover, table.songs td.buttons button:hover {
  background-color: #45ffbb;
  border-color: #00784c;
  color: #265a26;
}
table.songs td.sample {
  min-width: 210px;
  text-align: center;
  padding-top: 0;
  padding-bottom: 0;
}
table.songs td.sample a {
  font-size: 10pt;
  margin-left: 4px;
  margin-bottom: 4px;
}
table.songs td.sample a:first-child {
  margin-left: 0;
}
table.songs td.cart {
  text-align: center;
  min-width: 235px;
}
table.songs td.cart a span.price {
  font-family: Arial,Helvetica,sans-serif;
  font-weight: normal;
  font-size: 12px;
}
table.songs td.cart form {
  border: none;
  margin: 0;
  padding: 0;
  vertical-align: middle;
}
table.songs td.cart img, table.songs td.cart input {
  vertical-align: middle;
}
table.songs td.nodl {
  background-color: red;
}

table.cart.songs td.download, table.cart.songs td.remove {
  text-align: center;
}
table.cart.songs td.cart.buttons a, table.cart.songs td.download.buttons a, table.cart.songs td.remove.buttons a {
  font-family: Shrikhand;
  display: inline-block;
  text-decoration: none;
  border-style: outset;
  border-radius: 0.75em;
  padding: 4px 0.5em;
  margin: 0.25em 0.33em;
  background-color: #00de8d;
  border-color: #00784c;
  color: #265a26;
}
table.cart.songs td.cart.buttons a img, table.cart.songs td.download.buttons a img, table.cart.songs td.remove.buttons a img {
  margin-right: 4px;
  border: none;
}
table.cart.songs td.cart.buttons a:hover, table.cart.songs td.download.buttons a:hover, table.cart.songs td.remove.buttons a:hover {
  background-color: #45ffbb;
  border-color: #00784c;
  color: #265a26;
}

table.samples {
  border: none;
  margin: 0;
  padding: 0;
  width: 100%;
}
table.samples td {
  border: none;
  text-align: center;
  padding: 0;
  vertical-align: bottom;
}
table.samples td img {
  margin: 0 0.25em;
}
table.samples td img:first-child {
  margin-left: 0;
}
table.samples td img.ltr {
  padding-bottom: 5px;
  margin-right: 0.5em;
  /*margin: 5px 0.5em 6px 0;*/
}

p.st_summary, p.st_preinfo {
  font-weight: bold;
  text-align: center;
}

#nav {
  width: 100%;
  font-size: 18pt;
  text-align: center;
  vertical-align: middle;
  clear: both;
}
#nav a, #nav button {
  font-family: Shrikhand;
  display: inline-block;
  text-decoration: none;
  border-style: outset;
  border-radius: 0.75em;
  padding: 4px 0.5em;
  margin: 0.25em 0.33em;
  color: white;
  background-color: #00784c;
  border-color: #00784c;
  font-variant: small-caps;
}
#nav a img, #nav button img {
  margin-right: 4px;
  border: none;
}
#nav a:hover, #nav button:hover {
  background-color: #45ffbb;
  border-color: #00784c;
  color: black;
}
#nav a.active, #nav button.active {
  background-color: #da3730;
  color: #f1ac10;
  border-style: solid;
  border-color: #f1ac10;
}
#nav form {
  font-family: Shrikhand;
  display: inline-block;
  text-decoration: none;
  border-style: outset;
  border-radius: 0.75em;
  padding: 4px 0.5em;
  margin: 0.25em 0.33em;
  color: white;
  background-color: #00784c;
  border-color: #00784c;
  font-variant: small-caps;
  display: inline-block;
}
#nav form img {
  margin-right: 4px;
  border: none;
}
#nav form:hover {
  background-color: #45ffbb;
  border-color: #00784c;
  color: black;
}
#nav form.active {
  background-color: #da3730;
  color: #f1ac10;
  border-style: solid;
  border-color: #f1ac10;
}
#nav form input {
  vertical-align: middle;
}
#nav form input#searchtxt {
  margin-right: 0.5em;
  background: white url("images/songsearchbg.png") no-repeat right center;
  width: 110px;
  font-size: 12pt;
}
#nav form input#searchbtn {
  border: 2px solid #00784c;
  border-radius: 4px;
  background-color: #00784c;
  padding: 2px;
  margin-bottom: 0;
}

table.cartcmdhldr.buttons td a, table.cartcmdhldr.buttons td button {
  font-family: Shrikhand;
  display: inline-block;
  text-decoration: none;
  border-style: outset;
  border-radius: 0.75em;
  padding: 4px 0.5em;
  margin: 0.25em 0.33em;
  background-color: #00de8d;
  border-color: #00784c;
  color: #265a26;
}
table.cartcmdhldr.buttons td a img, table.cartcmdhldr.buttons td button img {
  margin-right: 4px;
  border: none;
}
table.cartcmdhldr.buttons td a:hover, table.cartcmdhldr.buttons td button:hover {
  background-color: #45ffbb;
  border-color: #00784c;
  color: #265a26;
}

div#warnNoJs {
  width: 60%;
  min-width: 480px;
  border: thick solid red;
  background-color: navy;
  color: yellow;
  padding: 1em;
  margin: auto;
}
div#warnNoJs h1 {
  text-align: center;
}

div#newRels {
  width: 55%;
}
div#newRels h1 {
  text-align: center;
}
div#newRels h1 span {
  font-weight: normal;
  font-style: italic;
  font-size: smaller;
}
div#newRels ul {
  padding-left: 10px;
  margin-left: 15px;
  text-align: center;
}
div#newRels ul li {
  text-align: left;
  margin-bottom: 0.5em;
  font-style: italic;
}
div#newRels ul li a {
  /*color: aqua;*/
  font-weight: bold;
  font-style: normal;
}

div#topDL {
  max-width: 80%;
  margin: 1em auto;
  border: medium solid #00784c;
  border-radius: 2em;
  background-color: goldenrod;
  padding: 0.5em 1em;
  text-align: center;
}
div#topDL h1, div#topDL h2 {
  text-align: center;
  margin-top: 0;
}
div#topDL h1 span, div#topDL h2 span {
  font-size: 9pt;
  font-style: italic;
}
div#topDL > div {
  display: inline-block;
  vertical-align: top;
  text-align: left;
  margin: 0 0.5em 1em;
  border: thin solid navy;
  border-radius: 15px;
  padding-top: 0.5em;
  text-align: left;
}
div#topDL > div ol {
  margin: 0 1em 1em;
}
div#topDL > div:nth-child(2n) {
  background-color: #d3fdee;
}
div#topDL > div:nth-child(2n+1) {
  background-color: #abffe0;
}
div#topDL table {
  margin: auto;
  border: 0;
}
div#topDL table tbody td {
  padding-right: 2em;
  vertical-align: top;
  font-size: smaller;
  border: 0;
}

.boxShadow {
  box-shadow: -10px -5px 15px 3px black;
}

.textShadow {
  text-shadow: -10px -5px 3px gray;
}

.rndBdrPic {
  border: 12px solid;
  border-radius: 25px;
}

div.bottomFloater {
  /* Boxes attached to bottom of browser window, "floating" over the page */
  position: fixed;
  bottom: 0;
  z-index: 100;
  /* Make it stay on top of everything else! */
  color: white;
  background-color: #00452c;
  padding: 2px;
  font-size: 9pt;
  text-align: center;
  border-radius: 0.5em;
  border: 1px solid #00452c;
}
@media print {
  div.bottomFloater {
    display: none;
  }
}

div#cartHolder {
  right: 25px;
  width: 170px;
}
div#cartHolder table {
  margin: auto;
  border: none;
  border-spacing: 2px 0;
  /* Even with no border, separate cells so background shows through */
}
div#cartHolder table td {
  vertical-align: bottom;
  border: none;
}
div#cartHolder table tr:first-child td {
  padding-bottom: 1px;
}
div#cartHolder table tr#cartsum td {
  background-color: white;
  /* For summary boxes */
}
div#cartHolder table td.buttons a {
  border: 4px outset #00de8d;
  border-radius: 6px;
  background-color: #00de8d;
  margin: 0 0 -4px 2px;
}
div#cartHolder table td.buttons a img {
  margin: 0;
  max-height: 16px;
}
div#cartHolder table td.buttons a:hover {
  background-color: #45ffbb;
}
div#cartHolder div#hiddenPlayerContainer {
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Styling for the audio player panel */
div#audioContainer {
  /*margin: 1em auto;*/
  padding: 4px;
  width: 300px;
  min-height: 75px;
  /* So container box height doesn't fluctuate when player is embedded */
  text-align: center;
  right: 210px;
  /* Enough to clear the 174-pixel-wide cart box */
}
div#audioContainer div#apWait {
  background-color: yellow;
  color: black;
  font-weight: bold;
}
div#audioContainer input#btAudioPanel {
  display: none;
  margin: auto;
}
div#audioContainer div#audioPanel {
  display: none;
  margin-top: 4px;
  padding: 2px;
  background-color: #00de8d;
  color: black;
  font-size: smaller;
}
div#audioContainer div#audioPanel table {
  text-align: left;
  margin: auto;
  border: 0;
}
div#audioContainer div#audioPanel table td {
  border: 0;
}
div#audioContainer div#audioPanel table td:first-child {
  text-align: right;
}

div#cp_container {
  display: none;
  font-size: 16px;
  font-family: Verdana, Arial, sans-serif;
  line-height: 1.6;
  color: black;
  width: 95%;
  height: 32px;
  margin: 3px auto;
  background-color: #00de8d;
  border-radius: 1em;
  padding: 8px 8px 0px;
  /* The seeking class is added/removed inside jPlayer */
  /*
  .jp-state-no-volume .jp-volume-controls {
    display: none;
    * { display: none; }
    } */
}
div#cp_container *:focus {
  outline: none;
}
div#cp_container button::-moz-focus-inner {
  border: 0;
}
div#cp_container .jp-type-single, div#cp_container .jp-type-single td {
  background-color: transparent;
}
div#cp_container .jp-interface {
  position: relative;
}
div#cp_container .jp-interface button {
  display: block;
  float: left;
  overflow: hidden;
  text-indent: -9999px;
  border: none;
  cursor: pointer;
  width: 22px;
  height: 22px;
  padding: 0px;
}
div#cp_container .jp-interface .jp-controls {
  margin: 0;
  padding: 0;
  width: 45px;
}
div#cp_container .jp-controls-holder {
  position: absolute;
  left: 0;
  clear: both;
  width: 100%;
  /*LOJ*/
  margin: 0 auto;
  overflow: hidden;
}
div#cp_container .jp-progress-container {
  width: 190px;
  padding-top: 4px;
}
div#cp_container .jp-progress {
  overflow: hidden;
  background-color: #00784c;
  height: 15px;
}
div#cp_container .jp-seek-bar {
  background-color: #00784c;
  width: 0px;
  height: 100%;
  cursor: pointer;
}
div#cp_container .jp-play-bar {
  background-color: yellow;
  width: 0px;
  height: 100%;
}
div#cp_container .jp-seeking-bg {
  background-color: #d3fdee;
}
div#cp_container .jp-volume-controls {
  position: absolute;
  right: 0;
  width: 94px;
}
div#cp_container .jp-volume-controls button {
  display: block;
  overflow: hidden;
  text-indent: -9999px;
  border: none;
  cursor: pointer;
  float: left;
}
div#cp_container .jp-volume-controls .jp-mute,
div#cp_container .jp-volume-controls .jp-volume-max {
  vertical-align: middle;
  width: 22px;
  height: 22px;
}
div#cp_container .jp-volume-controls .jp-mute {
  margin-right: 5px;
}
div#cp_container .jp-volume-controls .jp-volume-max {
  margin-left: 5px;
}
div#cp_container .jp-volume-controls .jp-volume-bar {
  float: left;
  margin-top: 9px;
  overflow: hidden;
  background-color: #00784c;
  width: 40px;
  height: 5px;
  cursor: pointer;
}
div#cp_container .jp-volume-controls .jp-volume-bar-value {
  background-color: yellow;
  width: 0px;
  height: 5px;
}
div#cp_container .jp-time-holder {
  width: 100%;
}
div#cp_container .jp-current-time,
div#cp_container .jp-duration {
  font-size: .64em;
  font-style: oblique;
}
div#cp_container .jp-current-time {
  float: left;
  display: inline;
  text-align: left;
  cursor: default;
}
div#cp_container .jp-duration {
  float: right;
  display: inline;
  text-align: right;
  cursor: pointer;
}
div#cp_container .jp-details {
  display: none;
}
div#cp_container .jp-toggles {
  display: none;
  /*LOJ*/
}
div#cp_container .jp-no-solution {
  padding: 5px;
  font-size: .8em;
  background-color: #00de8d;
  border: 2px solid black;
  color: black;
  display: none;
}
div#cp_container .jp-no-solution a {
  color: black;
}
div#cp_container .jp-no-solution span {
  font-size: 1em;
  display: block;
  text-align: center;
  font-weight: bold;
}

.jp-play {
  background: url("jplayer/image/ljplay.png") center no-repeat;
}

.jp-state-playing .jp-play {
  background: url("jplayer/image/ljpause.png") center no-repeat;
}

.jp-stop {
  background: url("jplayer/image/ljstop.png") center no-repeat;
}

.jp-mute {
  background: url("jplayer/image/ljlovol.png") right center no-repeat;
}

.jp-state-muted .jp-mute {
  background: url("jplayer/image/ljmute.png") right center no-repeat;
}

.jp-volume-max {
  background: url("jplayer/image/ljhivol.png") no-repeat;
}

.jp-jplayer audio,
.jp-jplayer {
  width: 0px;
  height: 0px;
}

.jp-jplayer {
  background-color: black;
}

div#pagefooter {
  color: black;
  border-top: thin solid #00784c;
  text-align: center;
  font-size: 8pt;
  font-style: italic;
  padding: 1em;
  margin-top: 1em;
  margin-bottom: 1.5in;
  clear: both;
}
div#pagefooter hr {
  width: 85%;
}
div#pagefooter div {
  margin: 0 1em;
}
div#pagefooter div#emlsu {
  font-size: larger;
  border: inset #00784c;
  width: 20em;
  margin: 0.5em auto;
  padding: 0.5em 1em;
}
div#pagefooter div#emlsu a {
  display: inline-block;
  color: #00784c;
  background-color: #d3fdee;
  border-style: outset;
  border-color: #d3fdee;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  padding: 4px;
  margin: 2px auto;
}
div#pagefooter div#emlsu a:hover {
  background-color: #00784c;
  border-color: #00784c;
  color: yellow;
}
div#pagefooter div#emlsu a img {
  border: none;
  margin-right: 4px;
}
