header,
section,
footer,
aside,
nav,
main,
article,
figure {
  /* teach older browsers to how to handle unknown HTML elements */
  display: block;
  color: white;
  background-color: black;
}

/* @group Default styles */

.floatleft {
  float: left;
}

.floatright {
  float: right;
}

.alignleft {
  text-align: left;
}

.alignright {
  text-align: right;
}

.alignjustify {
  text-align: justify;
}

.aligncenter {
  text-align: center;
}

/* @end */

/* @group Basic Styles */


body {
  background-color: black;
  color: white;
  font-size: 18px;
  padding: 0;
  margin: 0;
  width: 100%;
  font-family: 'Archivo Narrow', sans-serif;
}

div#wrapper {
  width: 96%;
  margin: 0 auto;
}

h1 {
  border-top: 1px solid #999;
  padding-left: 5px;
}

h2 {
  padding-left: 10px;
}

p {
  color: white;
  text-align: justify;
  margin: 10px;
}

a {
  color: #DD8427;
  text-decoration: none;
}

a:hover {
  color: #FFCC00;
  text-decoration: none;
}

hr {
  border: 0;
  height: 1px;
  background: #999;
  margin: 30px 10px 30px 10px;
}

.button {
  font-family: Arial, sans-serif;
  font-weight: bold;
  color: black;
  background-color: #DD8427;
  border-radius: 4px;
  padding: 3px;
  margin: 5px;
  display: inline-block;
}

.button:hover {
  background: #FFCC00;
  color: white;
  text-decoration: none;
}

q {
  font-style: italic;
}


/* @end */

/* @group Navbar (DTP-first!!!) */

/* Remove margins and padding from the list, and add a black background color */
ul.topnav {
  list-style-type: none;
  margin: 0;
  padding: 0;
  padding-left: 10px;
  overflow: hidden;
  background-color: #333;
}

/* Float the list items side by side */
ul.topnav li {
  float: left;
}

/* Style the links inside the list items */
ul.topnav li a {
  display: inline-block;
  color: #f2f2f2;
  text-transform: lowercase;
  text-align: center;
  padding: 8px 29px 8px 29px;
  text-decoration: none;
  transition: 0.3s;
  font-size: 17px;
}

/* Change background color of links on hover */
ul.topnav li a:hover {
  background-color: #777;
}

/* Hide the list item that contains the link that should open and close the topnav on small screens */
ul.topnav li.icon,
ul.topnav li.nbmenu {
  display: none;
}



body#bio a#nbbio,
body#sounds a#nbsounds,
body#schedule a#nbschedule,
body#press a#nbpress,
body#photos a#nbphotos,
body#contact a#nbcontact,
body#links a#nblinks {
  background-color: #DD8427;
}

/* When the screen is less than 680 pixels wide, hide all list items, except for the first one ("Home"). Show the list item that contains the link to open and close the topnav (li.icon) */
@media screen and (max-width:700px) {
  ul.topnav li:not(:first-child) {
    display: none;
  }

  ul.topnav li.icon {
    float: right;
    display: inline-block;
    margin-right: 10px;
  }

  ul.topnav li.nbmenu {
    display: inline-block;
  }
}

/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens */
@media screen and (max-width:700px) {
  ul.topnav.responsive {
    position: relative;
  }

  ul.topnav.responsive li.icon {
    position: absolute;
    right: 0;
    top: 0;
  }

  ul.topnav.responsive li {
    float: none;
    display: inline;
  }

  ul.topnav.responsive li a {
    display: block;
    text-align: left;
  }

  ul.topnav li a {
    padding: 5px;
  }

}



/* @end */

/* @group Content Styles */

.bodyquote {
  text-align: right;
  display: block;
  margin-left: 20%;
}

.author {
  font-weight: bold;
}

p.topborder {
  border-top: 1px solid #999;
  margin-top: 25px;
}

/* @end */

/* @group Images */

p img {
  width: 30%;
  border: 1px solid #666;
  float: right;
  margin: 5px;
}

img.thumbs {
  width: 50px;
  height: 50px;
  border: 1px solid #666;
  border-radius: 5px;
  margin: 0px 20px 20px 20px;
  opacity: 1;
  -moz-opacity: 1;
  filter: alpha(opacity=100);
}

img.thumbs:hover {
  opacity: 0.8;
  -moz-opacity: 0.8;
  filter: alpha(opacity=80);
}

/* @end */

/* @group Schedule */

div.sched {
  margin-left: 5px;
}

div.rowtop {
  display: none;
}

.row {
  border-top: 1px solid #999;
  padding-top: 3px;
  padding-bottom: 6px;
}

.toprow {
  border: 0;
}

.cell {
  vertical-align: top;
  display: block;
  margin-bottom: 10px;
}

.cell .col1 {
  border-top: 1px solid #999;
  font-size: 1.2em;
  font-weight: bold;
}

span.mobilebreak {
  display: normal;
}

.schedposter img {
  float: right;
  max-width: 100px;
  max-height: 71px;
  margin-right: 20px;
  margin-top: 0;
}

.archivebtn {
  float: right;
  font-size: 12px;
}


/* @end */

/* @group Header */

header {
  width: 100%;
  min-height: 80px;
  text-align: left;
  background: url('images/title_scroll.jpg');
  background-size: cover;
  color: black;
  font-family: 'Archivo Narrow', sans-serif;
}

header h1,
header h2 {
  color: #DD8427;
  text-shadow: 2px 2px 10px #ccc;
}

header h1 {
  margin: 0;
  margin-left: 5px;
  border: 0;
}

header h2 {
  margin: 0;
  margin-left: 30px;
}

/* @end */

/* @group Social Media Icons */

div#smdiv {
  width: 100%;
  /*height: 20px;*/
  text-align: right;
  margin: auto;
  margin-top: 0px;
  margin-bottom: 3px;
  border-top: 1px solid #666;
  padding: 0;
  padding-top: 2px;
}

a.smicon img {
  max-height: 20px;
  border-radius: 40%;
}

a.smicon img:hover {
  transition: background-color .5s;
  -webkit-transition: background-color .5s;
  -moz-transition: background-color .5s;
}

a.smicon img.facebook:hover {
  background-color: #3b5998;
}

a.smicon img.youtube:hover {
  background-color: #ee3235;
}

a.smicon img.amazon:hover {
  background-color: #FF9900;
}

a.smicon img.itunes:hover {
  background-color: #61A6D1;
}

iframe#fblike {
  border: 0px dashed red;
  overflow: hidden;
  width: 50px;
  height: 21px;
}

/* @end */


/* @group Footer */

footer {
  background-color: #666;
  width: 100%;
  margin: auto;
  text-align: center;
  clear: both;
}

footer p {
  display: inline;
  font-size: 0.7em;
  width: 30%;
  padding: 0;
  margin: 5%;
  margin-top: 3px;
  margin-bottom: 3px;
  font-family: 'Archivo Narrow', sans-serif;
}

footer span {
  font-size: 0.6em;
}

/* @end */

/* @group Press Page */

.news {
  text-align: center;
  border: 1px solid #666;
  border-radius: 15px;
  margin-top: 25px;
  padding: 10px;
  font-size: 1em;
  background-color: #dd8427;
}

.news a {
  font-weight: bold;
  color: white;
  text-decoration: underline;
}

.news a:hover {
  color: #9e1615;
  cursor: pointer;
}

.presspicsdownloads {
  text-align: center;
  /*margin-top: 30px;
	margin-bottom: 30px;*/
}

.presspicsdownloads figure {
  display: inline-block;
  text-align: center;
  margin: 5px;
}

.presspicsdownloads figure img {
  max-width: 50px;
  border: 1px solid #666;
  border-radius: 5px;
}

.presspicsdownloads figcaption {
  font-size: 0.8em;
  text-align: center;
  margin-top: 5px;
}

.presspicsdownloads figcaption a {
  font-family: Arial, sans-serif;
  font-weight: bold;
  background-color: #666;
  padding: 3px;
  border-radius: 3px;
}

.presspicsdownloads figcaption a:hover {
  background: #999;
  color: white;
  text-decoration: none;
}

.presslogo {
  border: 1px solid #666;
  max-width: 120px;
  float: right;
  margin: 0 0 5px 10px;
}

.embedyoutube {
  max-width: 80%;
  max-height: 400px;
}



/* @end */

/* @group Photos */

.photosarea {
  text-align: center;
}

/* @end */

/* @group Links */

p.links {
  line-height: 1.5em;
}

/* @end */

/* @group Sounds */

h2.sounds {
  border-top: 1px solid #666;
  margin-top: 50px;
  margin-bottom: 0px;
  clear: both;
}

h2.sounds:first-of-type {
  border-top: 0px solid #666;
  margin-top: 1em;
}

h2.sounds + p {
  margin-top: 0;
}

body#sounds p {
  text-align: left;
}

.recstudio {
  font-size: 0.8em;
  padding-top: 10px;
}

body#sounds .soundsquote {
  /*font-size: 0.8em;*/
  padding-top: 10px;
  text-align: right;
}

body#sounds q {
  display: block;
}


.cdcover {
  width: 20%;
  max-width: 100px;
  float: right;
}

.cdcovermobile {
  display: inline;
}

.cdcoverdtp {
  display: none;
}

.buybtn .button {
  /*font-size: 2em;*/
}



/* @end */
