@import url("https://fonts.googleapis.com/css2?family=Yesteryear&display=swap");
body {
  color: black;
  background-image: url("/images/golddust.jpg");
  background-color: #ebc975;
  font-family: Arial,Helvetica,Sans-Serif;
  font-size: 12pt;
}

h1, h2 {
    font-variant: small-caps;
    text-align: center;
    font-size: 1.2em;
    margin-top: 10px;
}

h3 {
  font-variant: small-caps;
  font-size: 24pt;
}

a img, a input {
  border: 0;
}

/* Link button styling */
.buttons a, .buttons button {
  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 {
  margin: 1em auto;
  border-collapse: separate;
  border-spacing: 0;
  width: 90%;
  max-width: 1200px;
/*  background-color: inherit;  */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
table thead, table tfoot {
  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: #816213;
}
table td, table th {
  border: thin solid #816213;
  padding: 0.25em 0.33em;
}

table.noborder {
  border: 0;
}
table.noborder td {
  border: 0;
}
table.sortable thead td {
  cursor: default;
}
table.sortable thead .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: goldenrod;
  color: white;
  border: thin solid goldenrod;
  cursor: default;
}
.tooltip .tt_text {
  display: none;
  visibility: hidden;
  width: 350px;
  color: #55400c;
  border-radius: 6px;
  padding: 1em;
  position: absolute;
  z-index: 1;
  border: 3px solid #816213;
  top: 50%;
  left: 50%;
  background-color: #ebc975;
  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;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768x) {
  #topBox {
    flex-direction: column; /* Stack elements vertically on smaller screens */
    align-items: center;
    min-width: inherit; /* Remove the min-width restriction */
    padding: 3em; /* Adjust padding for smaller devices */
  }

  #topBox img {
    max-width: 100px; /* Further reduce logo size */
    margin-bottom: 10px; /* Add space below the logo */
  }

  #topBox #hook {
    font-size: 16pt; /* Reduce font size for the hook text */
  }

  #topBox #nav.buttons {
    flex-direction: column; /* Stack the navigation buttons vertically */
    gap: 10px; /* Space between buttons */
  }

  #topBox .buttons a {
    font-size: 12px; /* Adjust font size for smaller screens */
    padding: 8px 15px; /* Adjust padding */
  }
}


/* -----------oriig #topbox code -------------  */
#topBox {
  text-align: center;
  font-size: 18pt;
  font-weight: bold;
  min-width: 940px;
  color: #55400c;
  padding: 0.5em 1em;
}
#topBox .hdr {
  font-size: 36pt;
}
#topBox img {
  vertical-align: middle;
  max-width: 33%;
}
#topBox #hook {
  font-style: italic;
  font-size: 24pt;
}
/*  ----------------------------  */

/* 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: #f1dba2;
}
table.songs tbody tr:nth-child(odd) {
  background-color: #e4b849;
}
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 .remaster td.title:after {
  content: " - Remastered";
  font-style: italic;
  color: royalblue;
}
table.songs .subs {
  font-weight: normal;
}
table.songs .cmt {
  font-weight: normal;
  font-size: smaller;
  font-style: italic;
}
table.songs td.itemNbr {
  text-align: right;
  min-width: 130px;
}
table.songs td.video {
  text-align: center;
  padding: 0;
  vertical-align: middle;
}
table.songs td.video a {
  font-size: 10pt;
  margin-left: 6px;
  margin-bottom: 6px;
}
table.songs td.video a:first-child {
  margin-left: 0;
}
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 {
  display: inline-block;
  text-decoration: none;
  border-style: outset;
  border-radius: 0.75em;
  padding: 4px 0.5em;
  margin: 0.25em 0.33em;
  background-color: #ebc975;
  border-color: #816213;
  color: #55400c;
}
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: #f8ecce;
  border-color: #816213;
  color: #55400c;
}
table.songs td.sample {
  min-width: 220px; 
  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: 220px;
}
table.songs td.cart a .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 .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 {
  display: inline-block;
  text-decoration: none;
  border-style: outset;
  border-radius: 0.75em;
  padding: 4px 0.5em;
  margin: 0.25em 0.33em;
  background-color: #ebc975;
  border-color: #816213;
  color: #55400c;
}
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: #f8ecce;
  border-color: #816213;
  color: #55400c;
}

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 .ltr {
  padding-bottom: 5px;
  margin-right: 0.5em;
  /*margin: 5px 0.5em 6px 0;*/
}

.st_summary, .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 {
  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: goldenrod;
  border-color: goldenrod;
  font-variant: small-caps;
}
#nav a img, #nav button img {
  margin-right: 4px;
  border: none;
}
#nav a:hover, #nav button:hover {
  background-color: #f8ecce;
  border-color: goldenrod;
  color: #55400c;
}
#nav a.active, #nav button.active {
  background-color: #e4b849;
  color: #55400c;
  border-style: inset;
}
#nav form {
  display: inline-block;
}
#nav form input {
  vertical-align: middle;
}
#nav form #searchtxt {
  background: white url("images/songsearchbg.png") no-repeat right center;
  width: 110px;
}
#nav form #searchbtn {
  border: 2px solid #816213;
  border-radius: 4px;
  background-color: goldenrod;
  padding: 2px;
  margin-bottom: 0;
}
#nav form #searchbtn:hover {
  background-color: #f8ecce;
}

table.cartcmdhldr.buttons td a, table.cartcmdhldr.buttons td button {
  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: goldenrod;
  border-color: goldenrod;
  font-variant: small-caps;
}
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: #f8ecce;
  border-color: goldenrod;
  color: #55400c;
}
table.cartcmdhldr.buttons td a.active, table.cartcmdhldr.buttons td button.active {
  background-color: #e4b849;
  color: #55400c;
  border-style: inset;
}

#warnNoJs {
  width: 60%;
  min-width: 480px;
  border: thick solid red;
  background-color: navy;
  color: yellow;
  padding: 1em;
  margin: auto;
}
#warnNoJs h1 {
  text-align: center;
}

/* Styling for the main #newRels container */
#newRels {
    width: 60%;
    background-color: lightgrey;
    margin: 0 auto; /* Center the container */
    margin-bottom: 30px; /* Adjust 30px as needed */
    padding: 20px;
    box-sizing: border-box;
}

/* ================================================== */
/* VIDEO SHOWCASE GRID – Responsive & Beautiful      */
/* ================================================== */

.videoGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));  /* Wider minimum = better on all screens */
    gap: 2rem;                     /* Clean, modern spacing (32px) */
    padding: 1rem 0;
    margin: 0 auto;
    max-width: 1400px;             /* Optional: prevent super-wide on huge screens */
}

.videoGrid > div {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.videoGrid > div:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.2);
}

/* Full-width responsive video */
.videoGrid video {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;          /* Perfect modern ratio – forces consistent height */
    background: #000;
    display: block;
}

/* Title under each video */
.videoGrid h2 {
    margin: 0.8em 1em 0.4em;
    font-size: 1.25rem;
    text-align: center;
    color: #2c3e50;
    font-weight: 600;
}

/* Optional: smaller gap on mobile */
@media (max-width: 480px) {
    .videoGrid {
        grid-template-columns: 1fr;           /* One column on phones */
        gap: 1.5rem;
    }
    .videoGrid > div {
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
}
/* Compact thumbnails in grid */
.videoThumb .videoWrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 12px;
    background: #000;
}

.videoThumb .thumbImg,
.videoThumb .thumbVideo {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: opacity 0.3s ease;
}

.videoThumb .thumbVideo {
    opacity: 0; /* hidden initially */
}

.videoThumb.playing .thumbImg {
    opacity: 0;
}

.videoThumb.playing .thumbVideo {
    opacity: 1;
}

.videoThumb .playIcon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    color: white;
    text-shadow: 0 0 20px rgba(0,0,0,0.8);
    pointer-events: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.videoThumb.playing .playIcon {
    opacity: 0;
}

/* Modal popup */
.videoModal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
}
.videoModal video {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
}
.videoModal .close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}
#newRels h1 {
    text-align: center;
}

#newRels h2 {
    font-size: 1.2em;
    margin-top: 10px;
}

/* Styling for the alternate non-video #newRels container */
#newRelsAlt {
    width: 56%;
    display: flex;
    flex-direction: column;
    margin-bottom: 30px; /* Adjust 30px as needed */
    align-items: center;
    padding: 20px;
}

#newRelsAlt h1 {
    margin: 0 0 10px 0;
    text-align: center;
}

#newRelsAlt h2 {
    margin: 0 0 20px 0;
    font-size: 1.2em;
    text-align: center;
}

.audioGrid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.audioGrid > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
}

/* Contact form container inside #newRels */
.contact-form-container {
    width: 100%; /* Ensure it scales within the parent container */
    padding: 10px;
    box-sizing: border-box;
}

/* Styling for the contact form box */
.form-box {
    width: 100%; /* Default width */
    max-width: 600px; /* Set a maximum width for larger screens */
    margin: 0 auto; /* Center the form */
    padding: 20px;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.form-box h2 {
    text-align: center;
    margin-bottom: 15px;
}

/* Input and textarea styling */
input.form-spacing, textarea {
    width: 100%; /* Make inputs full width */
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

/* Button styling */
button {
    width: 100%;
    padding: 10px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    #newRels {
        width: 90%; /* Expand to 90% of screen width */
        padding: 10px;
        align-items: center;
    }

    .videoGrid div {
        width: 100%; /* One column for videos */
    }

    .form-box {
        padding: 15px;
    }

    input.form-spacing, textarea {
        font-size: 14px;
    }

    button {
        font-size: 14px;
    }
}



#topDL {
  max-width: 80%;
  margin: 1em auto;
  border: medium solid #816213;
  border-radius: 2em;
  /* background-color: goldenrod; */
  background-color: lightgrey;
  padding: 0.5em 1em;
  text-align: center;
}
#topDL h1, div#topDL h2 {
  text-align: center;
  margin-top: 0;
}
#topDL h1 span, div#topDL h2 span {
  font-size: 9pt;
  font-style: italic;
}
#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;
}
#topDL > div ol {
  margin: 0 1em 1em;
}
#topDL > div:nth-child(2n) {
  background-color: #f9f0da;
  /* background-color: lightgrey; */
}
#topDL > div:nth-child(2n+1) {
  background-color: #f9f0da;
}
#topDL table {
  margin: auto;
  border: 0;
}
#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: #816213;
  padding: 2px;
  font-size: 9pt;
  text-align: center;
  border-radius: 0.5em;
  border: 1px solid #816213;
}
@media print {
  div.bottomFloater {
    display: none;
  }
}

#cartHolder {
  right: 25px;
  width: 170px;
}
#cartHolder table {
  margin: auto;
  border: none;
  border-spacing: 2px 0;
  /* Even with no border, separate cells so background shows through */
}
#cartHolder table td {
  vertical-align: bottom;
  border: none;
}
#cartHolder table tr:first-child td {
  padding-bottom: 1px;
}
#cartHolder table #cartsum td {
  background-color: white;
  /* For summary boxes */
}
#cartHolder table td.buttons a {
  border: 4px outset goldenrod;
  border-radius: 6px;
  background-color: goldenrod;
  margin: 0 0 -4px 2px;
}
#cartHolder table td.buttons a img {
  margin: 0;
  max-height: 16px;
}
#cartHolder table td.buttons a:hover {
  background-color: #ebc975;
}
#cartHolder div#hiddenPlayerContainer {
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Styling for the audio player panel */
#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 */
}
#audioContainer #apWait {
  background-color: yellow;
  color: black;
  font-weight: bold;
}
#audioContainer input#btAudioPanel {
  display: none;
  margin: auto;
}
#audioContainer #audioPanel {
  display: none;
  margin-top: 4px;
  padding: 2px;
  background-color: #e4b849;
  color: black;
  font-size: smaller;
}
#audioContainer #audioPanel table {
  text-align: left;
  margin: auto;
  border: 0;
}
#audioContainer #audioPanel table td {
  border: 0;
}
#audioContainer #audioPanel table td:first-child {
  text-align: right;
}

#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: #e4b849;
  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; }
    } */
}
#cp_container *:focus {
  outline: none;
}
#cp_container button::-moz-focus-inner {
  border: 0;
}
#cp_container .jp-type-single, #cp_container .jp-type-single td {
  background-color: transparent;
}
#cp_container .jp-interface {
  position: relative;
}
#cp_container .jp-interface button {
  display: block;
  float: left;
  overflow: hidden;
  text-indent: -9999px;
  border: none;
  cursor: pointer;
  width: 22px;
  height: 22px;
  padding: 0px;
}
#cp_container .jp-interface .jp-controls {
  margin: 0;
  padding: 0;
  width: 45px;
}
#cp_container .jp-controls-holder {
  position: absolute;
  left: 0;
  clear: both;
  width: 100%;
  /*LOJ*/
  margin: 0 auto;
  overflow: hidden;
}
#cp_container .jp-progress-container {
  width: 190px;
  padding-top: 4px;
}
#cp_container .jp-progress {
  overflow: hidden;
  background-color: #816213;
  height: 15px;
}
#cp_container .jp-seek-bar {
  background-color: #816213;
  width: 0px;
  height: 100%;
  cursor: pointer;
}
#cp_container .jp-play-bar {
  background-color: yellow;
  width: 0px;
  height: 100%;
}
#cp_container .jp-seeking-bg {
  background-color: #f1dba2;
}
#cp_container .jp-volume-controls {
  position: absolute;
  right: 0;
  width: 94px;
}
#cp_container .jp-volume-controls button {
  display: block;
  overflow: hidden;
  text-indent: -9999px;
  border: none;
  cursor: pointer;
  float: left;
}
#cp_container .jp-volume-controls .jp-mute,
#cp_container .jp-volume-controls .jp-volume-max {
  vertical-align: middle;
  width: 22px;
  height: 22px;
}
#cp_container .jp-volume-controls .jp-mute {
  margin-right: 5px;
}
#cp_container .jp-volume-controls .jp-volume-max {
  margin-left: 5px;
}
#cp_container .jp-volume-controls .jp-volume-bar {
  float: left;
  margin-top: 9px;
  overflow: hidden;
  background-color: #816213;
  width: 40px;
  height: 5px;
  cursor: pointer;
}
#cp_container .jp-volume-controls .jp-volume-bar-value {
  background-color: yellow;
  width: 0px;
  height: 5px;
}
#cp_container .jp-time-holder {
  width: 100%;
}
#cp_container .jp-current-time,
#cp_container .jp-duration {
  font-size: .64em;
  font-style: oblique;
}
#cp_container .jp-current-time {
  float: left;
  display: inline;
  text-align: left;
  cursor: default;
}
#cp_container .jp-duration {
  float: right;
  display: inline;
  text-align: right;
  cursor: pointer;
}
#cp_container .jp-details {
  display: none;
}
#cp_container .jp-toggles {
  display: none;
  /*LOJ*/
}
#cp_container .jp-no-solution {
  padding: 5px;
  font-size: .8em;
  background-color: #e4b849;
  border: 2px solid black;
  color: black;
  display: none;
}
#cp_container .jp-no-solution a {
  color: black;
}
#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;
}

#pagefooter {
  color: black;
  border-top: thin solid #816213;
  text-align: center;
  font-size: 14pt;
  /* was 8pt */
  font-style: italic;
  padding: 1em;
  margin-top: 1em;
  margin-bottom: 1.5in;
  clear: both;
}
#pagefooter hr {
  width: 85%;
}
#pagefooter div {
  margin: 0 1em;
}
#pagefooter #emlsu {
  font-size: larger;
  border: inset #816213;
  width: 20em;
  margin: 0.5em auto;
  padding: 0.5em 1em;
}
#pagefooter #emlsu a {
  display: inline-block;
  color: #816213;
  background-color: #f1dba2;
  border-style: outset;
  border-color: #f1dba2;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  padding: 4px;
  margin: 2px auto;
}
#pagefooter #emlsu a:hover {
  background-color: #816213;
  border-color: #816213;
  color: yellow;
}
#pagefooter #emlsu a img {
  border: none;
  margin-right: 4px;
}
