/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  box-sizing: border-box;
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * Improve readability of focused elements when they are also in an
 * active/hover state.
 */
a:active,
a:hover {
  outline: 0;
  cursor: pointer;
}

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  box-sizing: content-box;
  /* 2 */
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

/* 
-------------------------------------------------- 
    Start Typography 
-------------------------------------------------- 
*/
/* ----- Apex New Book ----- */
@font-face {
  font-family: 'ApexBook';
  src: url("apexbook.eot");
  src: url("apexbook.eot?#iefix") format("embedded-opentype"), url("apexbook.woff") format("woff"), url("apexbook.ttf") format("truetype"), url("apexbook.svg#apex_newbook") format("svg");
  font-weight: normal;
  font-style: normal;
}

/* ----- Futura Light ----- */
@font-face {
  font-family: 'FuturaLtBTLight';
  src: url("futural.eot");
  src: url("futural.eot?#iefix") format("embedded-opentype"), url("futural.woff") format("woff"), url("futural.ttf") format("truetype"), url("futural.svg#FuturaLtBTLight") format("svg");
  font-weight: normal;
  font-style: normal;
}

/* ----- TJ Evolette Thin ----- */
@font-face {
  font-family: 'TJEvoletteA-Thin';
  src: url("tj-evolette-a-thin.eot");
  src: url("tj-evolette-a-thin.eot?#iefix") format("embedded-opentype"), url("tj-evolette-a-thin.woff") format("woff"), url("tj-evolette-a-thin.ttf") format("truetype"), url("tj-evolette-a-thin.svg#TJEvoletteA-Thin") format("svg");
  font-weight: normal;
  font-style: normal;
}

/* ----- TJ Evolette Thin Alt ----- */
@font-face {
  font-family: 'TJEvoletteAlt';
  src: url("tj-evolette-a-thin-resource-webfont.eot");
  src: url("tj-evolette-a-thin-resource-webfont.eot?#iefix") format("embedded-opentype"), url("tj-evolette-a-thin-resource-webfont.woff2") format("woff2"), url("tj-evolette-a-thin-resource-webfont.woff") format("woff"), url("tj-evolette-a-thin-resource-webfont.ttf") format("truetype"), url("tj-evolette-a-thin-resource-webfont.svg#TJEvoletteAlt") format("svg");
  font-weight: normal;
  font-style: normal;
}

.tj-thin {
  font-family: "TJEvoletteA-Thin", Helvetica, sans-serif;
  font-weight: lighter;
  -webkit-font-smoothing: antialiased;
}

.tj-thin-alt {
  font-family: "TJEvoletteAlt", Helvetica, sans-serif;
  font-weight: lighter;
  -webkit-font-smoothing: antialiased;
}

.t1-title {
  font-size: 6.25rem;
  position: relative;
}

.t3-title {
  font-family: TJEvoletteA-Thin, Helvetica, sans-serif;
  font-size: 3.25rem;
  font-weight: lighter;
  -webkit-font-smoothing: antialiased;
}

.strike-through::after {
  content: '';
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
}

@media only screen and (max-width: 600px) {
  .t1-title {
    font-size: 4.25rem;
  }
}

/* 
-------------------------------------------------- 
    Start Buttons 
-------------------------------------------------- 
*/
.btn, input {
  background: transparent;
  border: 1px solid #fff;
  padding: 10px;
  margin: 10px 0;
  border-radius: 0px;
  text-transform: uppercase;
  font-family: 'apexBook', Helvetica, sans-serif;
  font-size: 10px;
  letter-spacing: .1em;
  box-sizing: border-box;
  width: 100%;
  /*flex-basis: 100%;  Think about this one */
}

.btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* 
-------------------------------------------------- 
    Inputs 
-------------------------------------------------- 
*/
input::placeholder {
  color: rgba(255, 255, 255, 0.6);
  font-family: 'apexBook', Helvetica, sans-serif;
  font-size: 10px;
  letter-spacing: .1em;
}

/* 
-------------------------------------------------- 
    Start Navigation
-------------------------------------------------- 
*/
nav {
  font-family: "TJEvoletteA-Thin", Helvetica, sans-serif;
  font-size: 1.25rem;
  line-height: 1.8rem;
}

nav ul li {
  display: block;
  width: 100%;
}

/* ----- Navigation ----- */
header {
  position: fixed;
  margin: 0px auto;
  top: 50px;
  left: 50px;
  z-index: 20;
}

nav ul {
  margin: 0;
  padding: 0;
  width: 80%;
}

nav ul li {
  display: inline-block;
}

.menu p {
  margin-bottom: 0;
}

.strike {
  box-sizing: border-box;
  position: relative;
  /*width: 88px;*/
  display: inline-block;
}

/*.strike:after {
  position: absolute;
  bottom: 48%;
  border-bottom: solid 1px #fff;
  content: '';
  left: 0px;
}
*/
.aboutBTN.strike:after {
  width: 110px;
  position: absolute;
  bottom: 48%;
  border-bottom: solid 1px #fff;
  content: '';
  left: 0px;
}

.showsBTN.strike:after { 
  width: 125px;
  position: absolute;
  bottom: 48%;
  border-bottom: solid 1px #fff;
  content: '';
  left: 0px;
}

.musicBTN.strike:after {
  width: 110px;
  position: absolute;
  bottom: 48%;
  border-bottom: solid 1px #fff;
  content: '';
  left: 0px;
}

.newsBTN.strike:after {
  width: 90px;
  position: absolute;
  bottom: 48%;
  border-bottom: solid 1px #fff;
  content: '';
  left: 0px;
}

.photosBTN.strike:after {
  width: 135px;
  position: absolute;
  bottom: 48%;
  border-bottom: solid 1px #fff;
  content: '';
  left: 0px;
}

.pressBTN.strike:after {
  width: 90px;
  position: absolute;
  bottom: 48%;
  border-bottom: solid 1px #fff;
  content: '';
  left: 0px;
}

.videosBTN.strike:after {
  width: 120px;
  position: absolute;
  bottom: 48%;
  border-bottom: solid 1px #fff;
  content: '';
  left: 0px;
}

.contactBTN.strike:after {
  width: 160px;
  position: absolute;
  bottom: 48%;
  border-bottom: solid 1px #fff;
  content: '';
  left: 0px;
}

.no-touch li.menu-nav {
  display: block;
  line-height: 2em;
}

.menu:hover {
  cursor: pointer;
  cursor: hand;
}

.hidden {
  display: none;
}

/* Create Media Queries Vars */
/* 
-------------------------------------------------- 
    Start Social 
-------------------------------------------------- 
*/
.social {
  position: fixed;
  right: 50px;
  top: 64px;
}

.social-icons {
  padding: 20px 0px 0px 0px;
}

.social-icons a {
  display: inline-block;
  width: 30px;
  height: 30px;
  margin: 0 2px;
}

/* 
-------------------------------------------------- 
    Start Modal 
-------------------------------------------------- 
*/
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.92);
  z-index: 7000;
  display: flex;
  align-items: center;
  justify-content: center;
  /* cursor: pointer; */
  display: none;
}

.modal .container {
  text-align: center;
  width: 100%;
  max-width: 700px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  cursor: default;
  padding: 20px;
  box-sizing: border-box;
}

.contact-form {
  text-align: center;
  width: 100%;
  max-width: 450px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  cursor: default;
  box-sizing: border-box;
  padding: 0px 0px 30px 0px;
}

.modal .container .t3-title {
  width: 100%;
}

.modal-close {
  position: absolute;
  top: 0px;
  right: 0px;
  cursor: pointer;
}

.modal .social-icons {
  margin: 0 auto;
}

.modal input, .container input {
  flex-basis: 100%;
}

.modal .btn, .container .btn  {
  width: 100%;
  margin: 10px auto 0;
}

@media only screen and (min-width: 600px) {
  .modal .btn {
    width: 75%;
  }

  input#first_name {
    margin-right: 20px;
  }
  input#first_name, input#last_name {
    flex: 0 0 -webkit-calc(50% - 10px);
    flex: 0 0 -moz-calc(50% - 10px);
    flex: 0 0 calc(50% - 10px);
  }
}

/* -- Pop Up --*/

.pum-overlay{
	background-image: url("https://www.vandana.nyc/wp-content/themes/vandanajain_custom/img/icon-close.svg") !important;
  background-position: 100% 0% !important;
  background-repeat: no-repeat !important;
} 

.pum-theme-985, .pum-theme-default-theme, .pum-theme-985 .pum-container, .pum-theme-default-theme .pum-container {
  background-color: rgba( 0, 0, 0, 1 ) !important;
}
.pum-container {
	max-width: 700px !important;
  text-align: center !important;
}
  
.t3-title {
  color: #fff;
  text-align: center;
}

.pum-container p {
  text-align: center;
}

.social-icons {
  text-align: center;
}

.social-icons a {
  display: inline-block;
  }

.pum-container .btn {
  padding: 0px;
  width: 75%;
}

.popup-close {
  position: absolute;
  top:20px;
  right:20px;
}

.popmake-close {
  display: none;
}

/* 
-------------------------------------------------- 
    Start Video
-------------------------------------------------- 
*/
.video-js {
  position: fixed !important;
  top: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  height: 100% !important;
  overflow: hidden !important;
  z-index: 0 !important;
}

.video-js video {
  min-width: 100% !important;
  min-height: 100% !important;
  width: auto !important;
  height: auto !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
}

.vjs-control-bar, .vjs-big-play-button {
  display: none !important;
}

.video-js.vjs-has-started .vjs-tech {
  pointer-events: none;
}

.bg-vid {
      position: fixed !important;
      top: 0 !important;
      bottom: 0 !important;
      width: 100% !important;
      height: 100% !important;
      overflow: hidden !important;
      z-index: 0 !important;
    }

    .bg-vid video {
      min-width: 100% !important;
      min-height: 100% !important;
      width: auto !important;
      height: auto !important;
      position: absolute !important;
      top: 50% !important;
      left: 50% !important;
      transform: translate(-50%, -50%) !important;
    }
    .bg-vid:after {
  	 content:'';
	   background-image: url("https://www.vandana.nyc/wp-content/themes/vandanajain_custom/img/diagonal-bg.png");
  	 background-repeat: repeat;
	   position: absolute;
  	 width: 100%;
     opacity: 0.5;
	   height: 100%;
  	 top:0;
	   left:0;
   }
   @media only screen and (orientation: portrait) {
      .bg-vid video {
        left: 110% !important;
      }
   }

/* --- Start Old Styles --- */
img.wide {
  width: 640px;
  height: auto;
}

img.tall {
  height: 640px;
  width: auto;
}

.music_button {
  width: 32px;
  height: 32px;
  cursor: pointer;
  display: inline-block;
  /* align it vertically */
  position: relative;
  top: 8px;
}

.play_button, .stop_button {
  background-size: 32px 32px !important;
}

.play_button {
  background: url("../img/icon-play-circle.svg") no-repeat;
}

.stop_button {
  background: url("../img/icon-stop-circle.svg") no-repeat;
}

/*
@font-face {
    font-family: 'ApexNewThin';
    src: url('apex.eot');
    src: url('apex.eot') format('embedded-opentype'),
         url('apex.woff') format('woff'),
         url('apex.ttf') format('truetype'),
         url('apex.svg#ApexNewThin') format('svg');
}


@font-face {
    font-family: 'FuturaLtBTLight';
    src: url('futural.eot');
    src: url('futural.eot') format('embedded-opentype'),
         url('futural.woff') format('woff'),
         url('futural.ttf') format('truetype'),
         url('futural.svg#FuturaLtBTLight') format('svg');
}

@font-face {
    font-family: 'apexBook';
    src: url('apexbook.eot');
    src: url('apexbook.eot?#iefix') format('embedded-opentype'),
         url('apexbook.woff') format('woff'),
         url('apexbook.ttf') format('truetype'),
         url('apexbook.svg#apex_newbook') format('svg');
    font-weight: normal;
    font-style: normal;
}*/
* {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'apexBook', Helvetica, sans-serif;
  font-size: 16px;
  color: #fff;
  margin: 0;
  padding: 0;
  background-color: #000;
  width: 100%;
}

audio, canvas, img, video {
  vertical-align: middle;
}

/* 
-------------------------------------------------- 
    Start Styles 
-------------------------------------------------- 
*/
/*----- Pre Loader ----- */
.pre-loader {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #000;
  z-index: 999;
  background: url(../img/status.gif) no-repeat center center;
}

.touch .pre-loader {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #000;
  z-index: 999;
}

/*----- mailing list 
.mailing-list-holder{position: fixed; display: none; top:0; left: 0; width: 100%; height: 100%; text-align: center; background-color: rgba(0, 0, 0, 0.8); z-index: 7000;}
.mailing-list-holder iframe{ width: 70%; padding-top: 20%;}
----- */
/* ----- Navigation ----- */
/*header{position: fixed; margin: 0px auto; top:50px; left: 50px; z-index: 20;}
nav ul{margin: 0; padding: 0; width: 80%;}
nav ul li {display: inline-block;}
.strike{position: relative; width: 88px; display:inline-block;}
.strike:after{position: absolute; bottom: 48%; width: 88px; border-bottom: solid 1px #fff; content: ''; left:0px;}
.no-touch li.menu-nav {display: block; line-height: 2em;}
.menu:hover {cursor: pointer; cursor: hand;}
.hidden { display: none;}
*/
/* -- Social Icons 
.social{position: fixed; right: 50px; top: 64px;}
.social a{display: inline-block; width: 30px; height: 30px; margin: 0 2px;}
.facebookIcon{background-position:-77px 0px; background-image:url('../vj-sprite-01.png');}
.twitterIcon{background-position:-115px 0px; background-image:url('../vj-sprite-01.png');}
.bandcampIcon{background-position:-267px 0px; background-image:url('../vj-sprite-01.png');}
.youtbuteIcon{background-position:-153px 0px; background-image:url('../vj-sprite-01.png');}
.myspaceIcon{background-position:-191px 0px; background-image:url('../vj-sprite-01.png');}
.reverbnationIcon{background-position:-229px 0px; background-image:url('../vj-sprite-01.png');}
.instagramIcon{background-position:-303px 0px; background-image:url('../vj-sprite-01.png');}
.soundcloudIcon{background-position:-303px -38px; background-image:url('../vj-sprite-01.png');}
.spotifyIcon{background-position:-266px -38px; background-image:url('../vj-sprite-01.png');}

a.mailing-list{background-image: none; display: inline-block;margin: 0; width: 165px; font-size: .5em; letter-spacing: 2px; text-transform: uppercase; text-decoration: none;}
.social p{margin: 0; padding: 0}
-- */
/* ----- Page H1 Titles ----- */
h1.about, h1.shows, h1.music, h1.press, h1.images, h1.videos, h1.news, h1.photos {
  width: 100%;
}

h1.about img, h1.shows img, h1.music img, h1.press img, h1.images img, h1.videos img, h1.news img, h1.photos img {
  max-width: 100%;
}

.strikeThrough {
  background: url(../img/strike.png) repeat-x;
}

/* ----- Body Type ----- */
h2 {
  font-family: "FuturaLtBTLight", helvetica, arial, sans-serif;
  font-weight: normal;
  font-size: 3.875em;
  line-height: 1.5em;
  text-transform: uppercase;
  margin: 0;
  padding: 0;
  letter-spacing: 7px;
  padding: 20px 0 0 0;
}

/* ----- p ----- */
p, li, label {
  font-size: 1.500em;
  font-weight: normal;
  letter-spacing: 3px;
  line-height: 1.5em;
}

p {
  margin-bottom: 2rem;
}

p.showDate {
  display: block;
  padding: 0;
  margin: 0;
}

#shows_table > tbody > tr > td{
  padding: 0 0 2em 1em;

}

.album p {
  padding-left: 20px;
}

.meta p {
  font-size: .875em;
  text-transform: uppercase;
  letter-spacing: 5px;
}

p img {
  max-width: 100%;
}

/* ----- a ----- */
a {
  color: #fff;
  text-decoration: none;
}

/*a:hover{text-decoration:underline;}*/
/* ----- Universal Content ----- */
#page-wrap {
  position: relative;
  z-index: 10;
  width: 80%;
  max-width: 960px;
  margin: 150px auto 50px auto;
}

#guts {
  padding-bottom: 100px;
}

#bg_title {
  z-index: 27;
  position: fixed;
  left: 155px;
  bottom: 24px;
  text-transform: uppercase;
  font-family: 'apexBook', Helvetica, sans-serif;
  font-size: 10px;
  letter-spacing: .1em;
}

.mute-btn {
  z-index: 25;
  position: fixed;
  left: 50px;
  bottom: 50px;
  background-color: #fff;
  width: 50px;
  height: 25px;
  background: url("../img/mute-btn.png") no-repeat 0px -27px;
  cursor: pointer;
}

.mute-btn.mute {
  background: url("../img/mute-btn.png") no-repeat 0px 0px;
}

#skip-btn{
	z-index: 25;
  position: fixed;
  left: 104px;
  bottom: 49px;
}

/* ----- Music Page ----- */
.trackListing {
  padding: 0 0 20px 0;
  margin: 0;
}

.albumArt {
  margin-right: 0px;
}

.albumArt img, a.gallery img {
  max-width: 100%;
  margin-top: 10px;
}

a.plus {
  height: 46px;
  width: 46px;
  background: url("../img/vj-sprite.png") no-repeat -57px -38px;
  overflow: hidden;
  display: inline-block;
  float: right;
  margin-top: 20px;
}

.jp-audio p {
  margin-top: 0;
}

/* ----- Photos & Video Page ----- */
.video-holder {
  display: inline-block;
}

.video-holder p {
  font-size: .875em;
  line-height: 1.5em;
  margin-bottom: 2em;
  letter-spacing: 1px;
}

.imageGallery a img, .videoGallery a img {
  padding-bottom: 3px;
  max-width: 100%;
}

/* ----- Press Page ----- */
.press-release h2 {
  font-size: 2.1em;
}

.press-release h2 a {
  text-decoration: none;
}

/* ----- Background Video ----- */
.bg-video {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
}

/* ----- Helper Classes ----- */
.textRight {
  text-align: right;
}

.floatRight {
  float: right;
}

.floatLeft {
  float: left;
}

.spacer {
  padding: 0 10px;
}

/*.rotate{position: fixed; bottom: 0; width: 100%; left: 0; background-color: rgba(0, 0, 0, .85); z-index: 3000; display: none;}*/
/*.rotate p{text-align: center;}*/
/* -- Grid -- */
.col100, .col90, .col80, .col70, .col60, .col50, .col40, .col30, .col20, .col10 {
  float: left;
}

.col100 {
  width: 100%;
}

.col90 {
  width: 90%;
}

.col80 {
  width: 80%;
}

.col70 {
  width: 70%;
}

.col60 {
  width: 60%;
}

.col50 {
  width: 50%;
}

.col40 {
  width: 40%;
}

.col30 {
  width: 30%;
}

.col20 {
  width: 20%;
}

.col10 {
  width: 10%;
}

.shows:after {
  content: "";
  display: table;
  clear: both;
}

.group:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}

.group {
  display: inline-block;
  clear: both;
  padding: 0;
  margin: 0;
}

/* start commented backslash hack \*/
* html .group {
  height: 1%;
}

.group {
  display: block;
}

/* close commented backslash hack */
article, aside, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

a:focus {
  outline: 0;
}

/*! fancyBox v2.1.5 fancyapps.com | fancyapps.com/fancybox/#license */
.fancybox-wrap,
.fancybox-skin,
.fancybox-outer,
.fancybox-inner,
.fancybox-image,
.fancybox-wrap iframe,
.fancybox-wrap object,
.fancybox-nav,
.fancybox-nav span,
.fancybox-tmp {
  padding: 0;
  margin: 0;
  border: 0;
  outline: none;
  vertical-align: top;
}

.fancybox-wrap {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 8020;
}

.fancybox-skin {
  position: relative;
  background: #f9f9f9;
  color: #444;
  text-shadow: none;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

.fancybox-opened {
  z-index: 8030;
}

.fancybox-opened .fancybox-skin {
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.fancybox-outer, .fancybox-inner {
  position: relative;
}

.fancybox-inner {
  overflow: hidden;
}

.fancybox-type-iframe .fancybox-inner {
  -webkit-overflow-scrolling: touch;
}

.fancybox-error {
  color: #444;
  font: 14px/20px;
  margin: 0;
  padding: 15px;
  white-space: nowrap;
}

.fancybox-image, .fancybox-iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.fancybox-image {
  max-width: 100%;
  max-height: 100%;
}

#fancybox-loading {
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -16px;
  margin-left: -16px;
  background-position: 0 -108px;
  opacity: 0.8;
  cursor: pointer;
  z-index: 8060;
}

#fancybox-loading div {
  width: 32px;
  height: 32px;
  background: url("../img/status.gif") center center no-repeat;
}

.fancybox-close {
  position: fixed;
  top: 10px;
  right: 10px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  z-index: 8040;
  background: url("../img/vj-sprite.png") -119px -35px no-repeat;
  cursor: pointer;
}

.fancybox-nav {
  position: fixed;
  top: 0;
  width: 40%;
  height: 100%;
  cursor: pointer;
  text-decoration: none;
  background: transparent url("../img/blank.gif");
  /* helps IE */
  -webkit-tap-highlight-color: transparent;
  z-index: 8040;
}

.fancybox-prev {
  left: 0;
  cursor: url(../img/prev-arrow.png), auto;
}

.fancybox-next {
  right: 0;
  cursor: url(../img/next-arrow.png), auto;
}

/*.fancybox-nav span {
    position: absolute;
    top: 50%;
    width: 36px;
    height: 34px;
    margin-top: -18px;
    cursor: pointer;
    z-index: 8040;
    visibility: hidden;
}*/
.fancybox-prev span {
  left: 10px;
  background-position: 0 -36px;
}

.fancybox-next span {
  right: 10px;
  background-position: 0 -72px;
}

.fancybox-nav:hover span {
  visibility: visible;
}

.fancybox-tmp {
  position: absolute;
  top: -99999px;
  left: -99999px;
  visibility: hidden;
  max-width: 99999px;
  max-height: 99999px;
  overflow: visible !important;
}

/* Overlay helper */
.fancybox-lock {
  overflow: hidden !important;
  width: auto;
}

.fancybox-lock body {
  overflow: hidden !important;
}

.fancybox-lock-test {
  overflow-y: hidden !important;
}

.fancybox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  display: none;
  z-index: 8010;
  background: rgba(0, 0, 0, 0.8);
}

.fancybox-overlay-fixed {
  position: fixed;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.8);
}

.fancybox-lock .fancybox-overlay {
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.8);
}

/* Title helper */
.fancybox-title {
  visibility: hidden;
  font: normal 13px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
  position: relative;
  text-shadow: none;
  z-index: 8050;
}

.fancybox-opened .fancybox-title {
  visibility: visible;
}

.fancybox-title-float-wrap {
  position: absolute;
  bottom: 0;
  right: 50%;
  margin-bottom: -35px;
  z-index: 8050;
  text-align: center;
}

.fancybox-title-float-wrap .child {
  display: inline-block;
  margin-right: -100%;
  padding: 2px 20px;
  background: transparent;
  /* Fallback for web browsers that doesn't support RGBa */
  background: rgba(0, 0, 0, 0.8);
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  text-shadow: 0 1px 2px #222;
  color: #FFF;
  font-weight: bold;
  line-height: 24px;
  white-space: nowrap;
}

.fancybox-title-outside-wrap {
  position: relative;
  margin-top: 10px;
  color: #fff;
}

.fancybox-title-inside-wrap {
  padding-top: 10px;
}

.fancybox-title-over-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  padding: 10px;
  background: #000;
  background: rgba(0, 0, 0, 0.8);
}

/*.no-touch body{font-family:'ApexNewThin', Helvetica, sans-serif;}*/
.touch .touch-video {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: fixed;
  background: url(../img/1.gif) no-repeat center top;
  z-index: 3;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

/*
.touch .touch-video2{width: 100%; height: 100%; top: 0; left: 0; position: fixed; background: url(../img/2.gif) no-repeat center top; z-index: 3; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover;}
.touch .touch-video3{width: 100%; height: 100%; top: 0; left: 0; position: fixed; background: url(../img/3.gif) no-repeat center top; z-index: 3; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover;}
.touch .touch-video4{width: 100%; height: 100%; top: 0; left: 0; position: fixed; background: url(../img/4.gif) no-repeat center top; z-index: 3; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover;}
.touch .touch-video5{width: 100%; height: 100%; top: 0; left: 0; position: fixed; background: url(../img/5.gif) no-repeat center top; z-index: 3; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover;}
.touch .touch-video6{width: 100%; height: 100%; top: 0; left: 0; position: fixed; background: url(../img/6.gif) no-repeat center top; z-index: 3; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover;}
.touch .touch-video7{width: 100%; height: 100%; top: 0; left: 0; position: fixed; background: url(../img/7.gif) no-repeat center top; z-index: 3; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover;}
.touch .touch-video8{width: 100%; height: 100%; top: 0; left: 0; position: fixed; background: url(../img/8.gif) no-repeat center top; z-index: 3; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover;}

*/
.touch .mute-btn, .touch .bg-video, #bg_title {
  /*display: none;*/
}

.touch .fancybox-prev {
  background: url(../img/prev-arrow.png) no-repeat center left;
}

.touch .fancybox-next {
  background: url(../img/next-arrow.png) no-repeat center right;
}

@media screen and (orientation: portrait) {
  .rotate {
    display: block;
  }
}

@media only screen and (min-width: 700px) and (max-width: 1050px) {
  .touch nav ul li a, .touch nav label {
    padding: 10px 5px;
  }
  .touch nav ul {
    width: 700px;
  }
  nav ul {
    margin: 0;
    padding: 0;
    width: 80%;
  }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  .touch nav ul {
    width: 500px;
  }
  nav ul {
    margin: 0;
    padding: 0;
    width: 80%;
  }
}

@media only screen and (max-width: 699px) {
  #bg_title {
  display: none;
  }

  .touch .touch-video {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: fixed;
    background: url(../img/1.gif) no-repeat center top;
    z-index: 3;
  }
  header {
    left: 0px;
    top: 20px;
    width: 100%;
    text-align: center;
    position: relative;
  }
  nav {
    position: relative;
    margin: 0;
    clear: both;
  }
  nav ul {
    margin: 0;
    padding: 0;
    width: 100%;
  }
  nav ul li {
    display: block;
    width: 100%;
  }
  nav ul li a {
    padding: 0;
    margin: 0;
  }
  nav input:checked ~ li {
    display: block;
    clear: both;
  }
  .social {
    position: relative;
    right: 0;
    top: 10px;
  }
  .showDate .spacer {
    padding: 0 5px;
  }
  .touch p.showDate {
    padding-bottom: 4em;
  }
  .music-page .col20, .music-page .col80 {
    width: 100%;
  }
  .music-page .floatRight {
    float: none;
    margin-top: 10px;
    margin-left: 5px;
  }
  .music-page p {
    letter-spacing: 2px;
  }
  .album p {
    padding-left: 0;
  }
  .press-release h2 a {
    font-size: 1.2em;
    letter-spacing: 0;
  }
  .posts h2, .music-page h2 {
    font-size: 1.8em;
  }
  p {
    font-size: 1.2em;
  }
  #page-wrap {
    margin-top: 50px;
  }
}
