html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after {
  content: "";
  content: none; }

q:before, q:after {
  content: "";
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

/* VARIABLES =================================== */
/* MIXINS ====================================== */
/* GENERAL STYLES ================================= */
* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

/* SITE STYLES ================================= */
html {
  background-color: #eb6f38;
  background: -webkit-linear-gradient(0deg, #ff6c00 10%, #ffa300 90%);
  /* ChromE 10+, Saf5.1+ */
  background: -moz-linear-gradient(0deg, #ff6c00 10%, #ffa300 90%);
  /* FF3.6+ */
  background: -ms-linear-gradient(0deg, #ff6c00 10%, #ffa300 90%);
  /* IE10 */
  background: -o-linear-gradient(0deg, #ff6c00 10%, #ffa300 90%);
  /* Opera 11.10+ */
  background: linear-gradient(0deg, #ff6c00 10%, #ffa300 90%);
  /* W3C */
  height: 100%;
  background-repeat: no-repeat;
  background-attachment: fixed; }

.container {
  max-width: 40em;
  margin: 0 auto;
  font-family: helvetica, arial, sans-serif;
  color: #343434; }

h1 img {
  opacity: 0.9;
  padding-top: 2em;
  margin: 0 auto;
  display: block;
  max-width: 50%; }

.search {
  padding-top: 2em;
  margin: 0 auto;
  width: 50%; }
  .search label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 2.4em;
    vertical-align: middle;
    padding-right: 0.2em; }
  .search input {
    background-color: rgba(255, 255, 255, 0);
    border: none;
    border-bottom: 3px solid rgba(255, 255, 255, 0.6);
    font-size: 2em;
    max-width: 80%;
    color: rgba(255, 255, 255, 0.9);
    padding: 0.25em 1em;
    text-align: center;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out; }
    .search input:focus {
      outline: none;
      background-color: rgba(255, 255, 255, 0.2);
      border-top-left-radius: 0.1em;
      border-top-right-radius: 0.1em; }

#searchform .ss-icon:hover {
  cursor: pointer; }

#spinner {
  display: none;
  margin: 10px auto 0 auto; }

.track {
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 0.2em;
  box-shadow: 0 0.2em 0.2em rgba(0, 0, 0, 0.2);
  margin: 3em 0;
  padding: 0;
  min-height: 12.5em;
  position: relative;
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out; }
  .track h1 {
    font-weight: bold;
    padding: 1em 0 0.8em;
    background-color: rgba(255, 255, 255, 0.6);
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    margin-bottom: 1em;
    color: rgba(0, 0, 0, 0.7);
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.9); }
    .track h1 a {
      color: rgba(0, 0, 0, 0.7);
      text-decoration: none;
      -webkit-transition: all 0.1s ease-in-out;
      -moz-transition: all 0.1s ease-in-out;
      transition: all 0.1s ease-in-out; }
      .track h1 a:hover {
        color: #eb6f38; }
  .track img {
    border-top-left-radius: 0.14em;
    border-bottom-left-radius: 0.14em;
    float: left;
    margin-right: 2em;
    opacity: 0.8;
    /* box-shadow: 0 0 0.5em rgba(0, 0, 0, 0.6); no longer needed */
    border-right: 1px solid rgba(255, 255, 255, 0.8); }
  .track .meta {
    line-height: 1.4; }
  .track .metadata {
    color: rgba(0, 0, 0, 0.7);
    font-size: 0.75em;
    padding: 0 0 1.1em; }
    .track .metadata span {
      vertical-align: middle;
      padding: 0 0.25em;
      font-size: 0.75em; }

.btn {
  background-color: #eb6f38;
  padding: 0.6em 0.7em 0.4em;
  border-radius: 0.2em;
  text-decoration: none;
  color: white;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
  box-shadow: 0 0.1em 0.5em rgba(0, 0, 0, 0.2);
  border: 1px solid #ea652a;
  position: absolute;
  right: 2%;
  bottom: 0.9em;
  margin-left: 0.9em;
  -webkit-transition: all 0.04s ease-in-out;
  -moz-transition: all 0.04s ease-in-out;
  transition: all 0.04s ease-in-out; }
  .btn:hover {
    background-color: #f4b295;
    border: 1px solid #f09166;
    box-shadow: 0 0 0.2em rgba(0, 0, 0, 0.1); }

footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: rgba(172, 65, 17, 0.8);
  padding: 2em 0;
  margin: 2em auto 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.9em;
  text-align: center;
  font-family: georgia;
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out; }
  footer a {
    color: rgba(255, 255, 255, 0.75); }
    footer a:hover {
      color: rgba(255, 255, 255, 0.9); }

.scuibar {
  display: none; }

.btn-ui {
  text-decoration: none;
  color: white;
  background-color: #994100;
  padding: 0.6rem 0.7rem 0.6rem;
  display: inline-block;
  border-radius: 0.2rem;
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out; }
  .btn-ui > span {
    padding-right: 0.4rem;
    font-size: 0.8rem; }
  .btn-ui:hover {
    background-color: #662b00; }

.ui {
  margin: 1rem 0 0 0; }
  .ui li {
    display: inline; }
