/*  Less Framework 4
  http://lessframework.com
  by Joni Korpi
  License: http://opensource.org/licenses/mit-license.php */


/*  Resets
  ------  */

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6,
p, blockquote, pre, a, abbr, address, cite, code, del, dfn, em,
img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, hr,
dl, dt, dd, ol, ul, li, fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figure, figcaption, hgroup,
menu, footer, header, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
}

article, aside, canvas, figure, figure img, figcaption, hgroup,
footer, header, nav, section, audio, video {
  display: block;
}

a img {border: 0;}

*, *:before, *:after {
  -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
}
html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}

/*  MOBILE DETECTION
  ------------------  */
@media only screen and (max-width: 767px) {
  #mobile-sniff { display: none; }
}

.text-center {
  text-align: center;
}
.white {
  color: #FFF;
}
.larger-text {
  font-size: 1.3em;
  line-height: 1.5em;
}
.bold {
  font-weight: bold;
}
.uppercase {
  text-transform: uppercase;
}
.padding-top { padding-top: 3em; }
.padding-top-medium { padding-top: 2em; }
.padding-top-small { padding-top: 1em; }
.padding-top-xsmall { padding-top: 0.5em; }

.padding-bottom { padding-bottom: 3em; }
.padding-bottom-medium { padding-bottom: 2em; }
.padding-bottom-small { padding-bottom: 1em; }
.padding-bottom-xsmall { padding-bottom: 0.5em; }
/*  Typography presets
  ------------------  */
.huge, h1 {
  font-size: 65px;
  line-height: 65px;
  font-weight: 900;
  letter-spacing: -1px;
  font-family: sans-serif;
}

.large, h2 {
  font-size: 28px;
  line-height: 26px;
}

.bigger, h3 {
  font-size: 20px;
  line-height: 22px;
  font-weight: normal;
}
h3.title {
  text-align: center;
  font-weight: bold;
  color: #FFF;
  text-transform: uppercase;
  font-style: italic;
  padding: 20px 0;
}
.big, h4 {
  font-size: 18px;
  line-height: 20px;
}

body {
  font: 16px/24px sans-serif;
  font-weight: normal;
}

.small, small {
  font-size: 13px;
  line-height: 18px;
}
.clearfix {
  clear: both;
  font-size: 1px;
  line-height: 1px;
}

/* Selection colours (easy to forget) */

::selection     {background: rgb(254,248,214);}
::-moz-selection  {background: rgb(254,248,214);}
img::selection    {background: transparent;}
img::-moz-selection {background: transparent;}
body {-webkit-tap-highlight-color: rgb(254,248,214);}



.left { float: left; margin-right: 1em; }
.hidden { display: none; visibility: hidden; }

.img  img {
-webkit-box-shadow:  0px 0px 10px 5px rgba(0, 0, 0, .3);
        box-shadow:  0px 0px 10px 5px rgba(0, 0, 0, .3);
    width: 100%;
    height: auto;
}
.nomargin {
  margin: 0;
}

input, textarea {
  font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", sans-serif;
  font-size: 14px;
  padding: .2em .5em;
  -webkit-appearance: none;
  border: 0px;
}

ul, ol {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
a, a:visited {
  color: #ae4a3a;
  text-decoration: none;
}
a:hover, a:visited:hover {
  color: #000;
}
a.grey {
  color: #bebabb;
}
a.grey:hover {
 color: #FFF;
}
.hidden {
  display: none !important;
}

.button, .button:visited {
  display: block;
  font-size: 15px;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
  text-align: center;
  text-transfom: uppercase;
  padding: 4px 0;

  background-color: #ae4a3a;

  -webkit-border-radius: 4px;
  border-radius: 4px;

}

.button:hover,
.button:visited:hover {
  background-color: #773329;

}

/*    Default Layout: 992px. */

body {
  padding: 0;
  background: #eaeaea;
  color: #3f3c3c;
  -webkit-text-size-adjust: 100%; /* Stops Mobile Safari from auto-adjusting font-sizes */
}
body.error {
  background: #000;
}
.contained {
  width: 720px;
  margin: 0 auto;
}
/*    Tablet Layout: 768px.  */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contained, .container {
    width: 700px;
  }

}
/*    Mobile Layout: 320px.  */
@media only screen and (max-width: 767px) {
  .contained, container {
    width: auto;
    padding: 0 20px;
  }
}






#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 45px;
  background-color: #ae4a3a;
  color: #FFF;
  z-index: 100;
}
#navbar .contained {
  width: 960px;
}
#navbar h1 {
  line-height: 1;
  padding-top: 3px;
  font-size: 24px;

}

#navbar h1 a {
  font-size: 20px;
  letter-spacing: 1px;
  color: #FFF;
}
#navbar h1 a img {
  width: 100%;
  height: auto;
}
#navbar .nav {
  float: right;
  height: 20px;
  margin-top: 5px;
}

#navbar .nav ul li {
  display: inline;
  margin-right: 10px;
}
#navbar .nav ul li a {
  text-transform: uppercase;
  font-weight: bold;
  color: #FFF;
  font-size: 12px;
}
#navbar .nav ul li a:hover {
  color: #333;
}
#navbar .nav ul li.social {
  position: relative;
  top: 5px;
  width: 80px;
  overflow: hidden;
}
#navbar .nav ul li.social.first {
  margin-left: 15px;
}
#navbar h1 {
  margin-top: 5px;
}
/*    Tablet Layout: 768px.  */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #navbar .contained {
    width: 700px;
  }

}
/*    Mobile Layout: 320px.  */
@media only screen and (max-width: 767px) {
  #navbar  {
  height: auto;
  }
  #navbar .nav {
  float: none;
  }
  #navbar .contained {
    width: auto;
  }
  #navbar h1 a {
  margin: 5px auto;
  }
  #navbar .nav ul {
  list-style: none; position: relative; float: left; display: block; left: 50%;
  }
  #navbar .nav ul li {
    position: relative; float: left; display: block; right: 50%;
  }
}



#banner {
  background-color: #b4d5b7;
  text-align: center;
  margin-top: 45px;
}
#banner a {
  color :#FFF;
  font-family: 'Montserrat',sans-serif;
  display: block;
  text-decoration: none;
  padding-top: 10px;
  padding-bottom: 10px;
  border-top: 1px solid #b4d5b7;
}
#banner a:hover {
  background-color: #71a187;
  color: #FFF;
  border-top: 1px solid #FFF;
}



#theband {
  position: relative;
  background-color: #000;
}
#theband .contained {
  padding-top: 700px;
  margin: 0;
}
/*    Tablet Layout: 768px.  */
@media only screen and (min-width: 768px) and (max-width: 991px) {


}
/*    Mobile Layout: 320px.  */
@media only screen and (max-width: 767px) {
  #theband {
    margin-top: 70px;
  }
  #theband img {
    display: inline;
    width: 100%;
    height: auto;
  }
  #theband .contained {
    padding-top: 200px;
  }
}








#thealbum {
  position: relative;
  z-index: 20;
  color: #2c2c2c;
  background-color: #fcfcfc;
}
#thealbum .contained,
#discog .contained {
  width: 960px;
}
#thealbum .contained.tight,
#discog .contained.tight  {
  width: 700px;
  margin: 0 auto;
}
#thealbum .contained.negative-margin {
  position: relative;
  top: -660px;
  margin-bottom: -640px; /* leave a little gap */
}

#thealbum .columns,
#discog .columns {
  float: none;
  position: relative;
  clear: both;
}
#thealbum .columns .column,
#discog .columns .column {
  float: left;
}
#thealbum .columns.duo .column,
#discog .columns.duo .column {
  width: 50%;
}
#thealbum .columns.trio .column,
#discog .columns.trio .column {
  width: 33.3333333%;
}
#thealbum .padder,
#discog .padder {
  padding: 20px;
}
#thealbum .columns a.cover,
#discog .columns a.cover {
  display: block;
}
#thealbum .columns a.cover img,
#discog .columns a.cover img {
  width: 100%;
  height: auto;
}
#thealbum .txt,
#discog .txt {
  text-align: center;
  color: #FFF;
}
#thealbum .txt a,
#discog .txt a {
  color: #FFF;
}
#thealbum .txt h1,
#discog .txt h1 {
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 10px;
  margin-top: 10px;
  line-height: 1;
}
#thealbum .txt h4,
#discog .txt h4 {
  font-style: italic;
  margin-bottom: 15px;
}

#thealbum .actions,
#discog .actions {
  text-align: center;
  margin-top: 30px;
}
#thealbum .actions a.primary,
#discog .actions a.primary {
  margin-bottom: 5px;
  display: inline-block;
  padding-left: 10px;
  padding-right: 10px;
}
#thealbum .actions .sub,
#discog .actions .sub {
  margin-top: 10px;
}
#thealbum .actions .sub a,
#discog .actions .sub a {
  border-left: 1px solid #666;
  padding: 6px 6px;
  color: #999;
  display: inline-block;
  width: 80px;
}
#thealbum .actions .sub a:first-child,
#discog .actions .sub a:first-child {
  border-left: none;
}
#thealbum .actions .sub a:hover,
#discog .actions .sub a:hover {
  color: #FFF;
}
#thealbum p {
  margin-bottom: 10px;
}


/*    Tablet Layout: 768px.  */
@media only screen and (min-width: 768px) and (max-width: 991px) {


}
/*    Mobile Layout: 320px.  */
@media only screen and (max-width: 767px) {
  #thealbum .columns .column,
  #discog .columns .column {
    float: none;
    width: auto;
  }
   #thealbum .contained.negative-margin {
    top: -180px;
    margin-bottom: -180px;
  }
  #thealbum .cover img {
    width: 100%;
    height: auto;
  }
  #thealbum .contained.tight, #discog .contained.tight {
    width: auto;
    padding-bottom: 30px;
  }
  #thealbum .contained, #discog .contained {
    width: auto;
  }
  #thealbum .columns.duo .column, #discog .columns.duo .column,
  #thealbum .columns.trio .column, #discog .columns.trio .column {
    width: 100%;
    float: none;
  }
}




#preview {
  margin: 0;
  padding: 20px 0;
  text-align: center;
  font-weight: bold;
}
#preview a {
  color: #000;
  border-bottom: 1px transparent #000;
}
#preview a:hover {
  color: #FFF;
  border-bottom: 1px solid #FFF;
}
#preview .contained {
  width: auto;
  margin: 0 auto;
}
#preview .embed {
  margin: 20px auto;
  background-color: #fff;
  padding: 5px;
  border-bottom: 1px solid #999;
  text-align: center;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}
#preview .embed iframe {
  margin: 0 auto;
  padding: 0;
}

/*    Mobile Layout: 320px.  */
@media only screen and (max-width: 767px) {
  #preview .contained {
    width: auto;
  }
  #preview .embed {
    overflow: hidden;
  }
}



#buy {
  margin-bottom: 20px;

}
#buy .col {
  float: left;
}
#buy .padding {
  padding: 10px;
}
#buy .col.third {
  width: 33.333%;
}
#buy h2 {
  text-align: center;
  font-weight: 900;
  padding: 0 0 10px 0;
  text-transform: uppercase;
  font-size: 14px;
}
#buy .txt {
  margin-bottom: 10px;
  height: 50px;
  font-size: 14px;
  line-height: 18px;
  width: 90%;
  margin: 0 auto;
}
#buy .button {
  width: 90%;
  font-weight: normal;
  margin: 3px auto 0 auto;
}
#buy .paypal {
  position: relative;
  text-align: left;
  color: #000;
  font-weight: 900;
  font-weight: normal;
}
#buy .paypal .price {
  position: absolute;
  left: 0;
  top: 0;
  width: auto;
  padding-left: 20px;
  padding-top: 6px;
}
#buy .paypal .price:hover {
  cursor: pointer;
}
/*    Tablet Layout: 768px.  */
@media only screen and (min-width: 768px) and (max-width: 991px) {


}
/*    Mobile Layout: 320px.  */
@media only screen and (max-width: 767px) {
  #buy .col.third {
    width: auto;
    float: none;
  }
}



#bio {
  padding: 60px 0 80px 0;
  color: #fAFAFA;
  background-color: #242520;
}
#bio .contained {
  width: 60%;
  margin: 0 auto;
}
#bio h3 {
  font-size: 25px;
  line-height: 32px;
  font-weight: bold;
  margin-bottom: 30px;
}
#bio h4 {
  font-weight: normal;
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 18px;
}
#bio .three-col {
  font-size: 15px;
    -moz-column-count: 2;
       -moz-column-gap: 20px;
       -webkit-column-count: 2;
       -webkit-column-gap: 20px;
}
#bio .mini-press {
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
  border-top: 1px solid rgba(255,255,255,.3);
  border-bottom: 1px solid rgba(255,255,255,.3);
}
#bio .mini-press h4 {
  font-family: 'Montserrat',sans-serif;
  text-transform: uppercase;
  margin: 0 0 10px 0;
}
#bio .mini-press ul {
  margin: 0;
}
#bio .mini-press a:hover {
  color: #71a187;

}
/*    Tablet Layout: 768px.  */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #bio .three-col {
    -moz-column-count: 2;
       -moz-column-gap: 20px;
       -webkit-column-count: 2;
       -webkit-column-gap: 20px;
  }

}
/*    Mobile Layout: 320px.  */
@media only screen and (max-width: 767px) {
  #bio h3 {
    font-size: 18px;
    line-height: 22px;
  }
  #bio .three-col {
    -moz-column-count: 1;
       -moz-column-gap: 20px;
       -webkit-column-count: 1;
       -webkit-column-gap: 20px;
  }
}




#events {
  border-top: 1px dashed #000;
}
#events .contained {
  padding:0 0 30px 0;
  width: 700px;
}
#events h3.title {
  color: #000;
}
#events .entry {
  margin-bottom: 5px;
  font-size: 18px;
}
#events .entry {
  width: 100%;
}
#events .entry td {
  border-bottom: 1px solid #999;
  padding: 6px 0;
  font-size: 14px;
}
#events .entry tr:last-child td {
  border-bottom: none;
}
#events .entry td.date {
  font-weight: 900;
  width: 200px;
}
#events .entry td.venue {
  width: 500px;
}
#events .entry td.location {
  width: 200px;
}
#events .entry h3 {
  font-size: 12px;
}

/*    Tablet Layout: 768px.  */
@media only screen and (min-width: 768px) and (max-width: 991px) {


}
/*    Mobile Layout: 320px.  */
@media only screen and (max-width: 767px) {

}





#discog {
  background: #000;
}
#discog .container {
  width: 960px;
  margin: 50px auto;
}
#discog h3.title {
  display: none;
}
#discog li {
  display: block;
  float: left;
  width: 25%;
}
#discog .padding {
  padding: 20px;
}
#discog li .cover {
  border: 5px solid #c1bfc0;
}
#discog li .cover a {
  display: block;
  line-height: 1;
}
#discog li .cover img {
  width: 100%;
  height: auto;
}
#discog li a.button {
  width: auto;
  height: auto;
  float: none;
}
#discog li .txt {
  height: 80px;
}
#discog li h3 {
  margin-top: 10px;
  font-style: italic;
  font-weight: 900;
  font-size: 16px;
  text-align: center;
}
#discog li h4 {
  font-size: 14px;
  font-weight: normal;
  text-align: center;
}
#discog li .button {
  margin-bottom: 10px;
}
#discog li .actions {
  text-align: center;
}

#discog li .actions a span {
  font-size: 12px;
  position: relative;
  top: 3;
}
#jukebox {
  border: 5px solid #c1bfc0;
  background: #FFF;
  text-align: left;
  margin: 0 20px 30px 20px;
  display: none;
  width: auto;
  padding: 0;
}
#jukebox iframe {
  margin: 0 auto;
  width: 100%;
}
/*    Tablet Layout: 768px.  */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #discog .container {
    width: auto;
  }

}
/*    Mobile Layout: 320px.  */
@media only screen and (max-width: 767px) {

  #discog .container {
    width: auto;
  }
  #discog li {
    width: auto;
  }
  #discog h3.title {
  display: block;
  }
}







#social {
  background: #2c2c2c url('images/footer-bg.jpg') no-repeat center center;
  background-size: cover;
  color: #FFF;
  margin-top: 0px;
  padding-bottom: 140px;
  padding-top: 40px;
  clear: both;
}
#social .contained {
  padding: 0 0 1em 0;
  width: 900px;
}
}
#social .grouping {
  margin-bottom: 50px;
}

#social .col {
  width: 100%;
}
#social .col.half {
  width: 50%;
  float: left;
}
#social .col.flush {
  margin-right: 0px;
}
#social .title {
  font-size: 17px;
  text-transform: uppercase;
  padding-left: 6px;
  margin-bottom: 4px;
  color: #fff;
  font-weight: bold;
  opacity: .5;
  font-size: 14px;
  margin: 0 0 5px 0;
  padding: 0;
}
#social p {
  padding-left: 6px;
  margin-bottom: 10px;
}

#social .button {
  font-weight: 900;
  text-transform: uppercase;
  text-align: left;
  font-family: 'Montserrat',serif;
  display: block;
  margin-right: 20px;
  margin-bottom: 20px;
  padding: 18px;
  font-size: 18px;
  line-height: 1px;

  border: 2px solid #ae4a3a;
}
#social .button.primary {
  background: #ae4a3a;
  background:none;
  color: #FFF;
}
#social .button.secondary {
  background: #434343;
  color: #FFF;
}
#social  .button:hover,
#social  .button:visited:hover {
  background-color: #242520;
}
#social .button.secondary:hover {
  background: #999;
}
#social .centered {
  text-align: center;
}
/*    Tablet Layout: 768px.  */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #social .contained {
    width: auto;
  }

}
/*    Mobile Layout: 320px.  */
@media only screen and (max-width: 767px) {
  #social ul li {
    display: list-item;
    float: none;
    margin: 0;
  }
  #social .contained {
    width: auto;
    padding: 2em;
  }
  #social .col.half {
    width: auto;
    float: none;
  }
}




#mc_embed_signup {
  margin-bottom: 20px;
  margin-right: 10px;

  text-align: left;
}
#mc_embed_signup h3 {
  margin-bottom: 10px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 18px;
}
#mc_embed_signup form {
  margin-left: 0px;
  padding: 10px  !important;
  background-color: #FFF;
  position: relative;
  display: block;
}
#mc_embed_signup input.txt {
  width: 100%;
}
#mc_embed_signup input.btn {
  background-color: #1b1b1b;
  color: #FFF;
  text-transform: uppercase;
  font-family: 'Montserrat',sans-serif;
  font-weight: 900;
  position: absolute;
  right: 10px;
  top: 10px;
}

/*    Tablet Layout: 768px.  */
@media only screen and (min-width: 768px) and (max-width: 991px) {


}
/*    Mobile Layout: 320px.  */
@media only screen and (max-width: 767px) {
  #mc_embed_signup {
    width: 90%;
    margin: 0 auto 30px auto;
  }
}






#photoview {
  border-top: 1px solid rgba(0,0,0,.3);
}
#photoview .contained {
  height: 700px;
}
#photos {
  position: relative;
  z-index: 22;
  margin-top: -40px;
  margin-bottom: -70px;
}
#photos .cointained {
    width: 960px;
}
#photos ul  {
  width: auto;
  margin: 0 auto;
}
#photos ul li {
  display: inline;

}
#photos ul li a {
  width: 110px;
  display: block;
  float: left;
  margin-right: 10px;
}
#photos ul li.flush a {
  margin-right: 0px;
}
#photos ul li a img {
  width: 100%;
  height: auto;
}
#photos h3 {
  font-size: 14px;
  text-align: center;
}
#photos h5 {
  text-align: center;
  color: #999;
}
#photos h5 a:hover {
  text-decoration: underline;
}
/*    Tablet Layout: 768px.  */
@media only screen and (min-width: 768px) and (max-width: 991px) {


}
/*    Mobile Layout: 320px.  */
@media only screen and (max-width: 767px) {

}





#videos {
  background-color: #7b2f1c;
  border-top: 10px solid #000;
  margin: -50px 0 0 0;
  padding-bottom: 50px;
  position: relative;
}
#videos .background {
  position: absolute;
  top:0;
  left:0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;

/* performance is AWFUL
      -webkit-filter: blur(55px);
  -moz-filter: blur(55px);
  -o-filter: blur(55px);
  -ms-filter: blur(55px);
  filter: blur(55px); */

  z-index: 2;
  opacity: .2;
}
#videos .contained {
  padding: 0px 12%;
  width: auto;
  position: relative;
  z-index: 20;
  margin-top: -60px;
}
#videos h3.title {
  display: none;
}
.video {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 0;
  height: 0;
  overflow: hidden;
  margin-bottom: 70px;
}
.video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#videos ul li {
  width: 20%;
  float: left;
}
#videos ul li a {
  display: block;
  line-height: 0;
  margin: 10px;
  border: 2px solid #000;
}
#videos ul li a:hover {
  border: 2px solid #ae4a3a;
}
#videos ul li img {
  width: 100%;
  height: auto;
}
#videos h5 {
  text-align: center;
  color: #FFF;
  font-size: 18px;
  padding-top: 15px;
}
/*    Tablet Layout: 768px.  */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #videos .contained {
    width: auto;
  }

}
/*    Mobile Layout: 320px.  */
@media only screen and (max-width: 767px) {
  #videos h5.label {
    display: none;
  }
  #videos .list {
    width: auto;
  }
  #videos .video {
    display: none;
  }
  #videos ul {
    float: none;
    left: auto;
  }
  #videos ul li {
    width: auto;
    right: auto;
    float: none;
    margin-bottom: 20px;
  }
  #videos h3.title {
    display: block;
  }
}






#footer {
  background-color: #91a079;
  margin-top: 40px;
  padding-bottom: 80px;
  padding-top: 20px;
  text-align: center;
}


