/*
* Skeleton V2.0.4
* Copyright 2014, Dave Gamache
* www.getskeleton.com
* Free to use under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
* 12/29/2014
*/
/* Table of contents
â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“
- Grid
- Base Styles
- Typography
- Links
- Buttons
- Forms
- Lists
- Code
- Tables
- Spacing
- Utilities
- Clearing
- Media Queries
*/

html > body * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}


/* Grid
â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“ */
.container {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box; }
.column,
.columns {
  width: 100%;
  float: left;
  box-sizing: border-box; }

/* For devices larger than 400px */
@media (min-width: 400px) {
  .container {
    width: 85%;
    padding: 0; }
}

/* For devices larger than 550px */
@media (min-width: 550px) {
  .container {
    width: 80%; }
  .column,
  .columns {
    margin-left: 4%; }
  .column:first-child,
  .columns:first-child {
    margin-left: 0; }

  .one.column,
  .one.columns                    { width: 4.66666666667%; }
  .two.columns                    { width: 13.3333333333%; }
  .three.columns                  { width: 22%;            }
  .four.columns                   { width: 30.6666666667%; }
  .five.columns                   { width: 39.3333333333%; }
  .six.columns                    { width: 48%;            }
  .seven.columns                  { width: 56.6666666667%; }
  .eight.columns                  { width: 65.3333333333%; }
  .nine.columns                   { width: 74.0%;          }
  .ten.columns                    { width: 82.6666666667%; }
  .eleven.columns                 { width: 91.3333333333%; }
  .twelve.columns                 { width: 100%; margin-left: 0; }

  .one-third.column               { width: 30.6666666667%; }
  .two-thirds.column              { width: 65.3333333333%; }

  .one-half.column                { width: 48%; }

  /* Offsets */
  .offset-by-one.column,
  .offset-by-one.columns          { margin-left: 8.66666666667%; }
  .offset-by-two.column,
  .offset-by-two.columns          { margin-left: 17.3333333333%; }
  .offset-by-three.column,
  .offset-by-three.columns        { margin-left: 26%;            }
  .offset-by-four.column,
  .offset-by-four.columns         { margin-left: 34.6666666667%; }
  .offset-by-five.column,
  .offset-by-five.columns         { margin-left: 43.3333333333%; }
  .offset-by-six.column,
  .offset-by-six.columns          { margin-left: 52%;            }
  .offset-by-seven.column,
  .offset-by-seven.columns        { margin-left: 60.6666666667%; }
  .offset-by-eight.column,
  .offset-by-eight.columns        { margin-left: 69.3333333333%; }
  .offset-by-nine.column,
  .offset-by-nine.columns         { margin-left: 78.0%;          }
  .offset-by-ten.column,
  .offset-by-ten.columns          { margin-left: 86.6666666667%; }
  .offset-by-eleven.column,
  .offset-by-eleven.columns       { margin-left: 95.3333333333%; }

  .offset-by-one-third.column,
  .offset-by-one-third.columns    { margin-left: 34.6666666667%; }
  .offset-by-two-thirds.column,
  .offset-by-two-thirds.columns   { margin-left: 69.3333333333%; }

  .offset-by-one-half.column,
  .offset-by-one-half.columns     { margin-left: 52%; }

}


/* Base Styles
â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“ */
/* NOTE
html is set to 62.5% so that all the REM measurements throughout Skeleton
are based on 10px sizing. So basically 1.5rem = 15px :) */
html {
  font-size: 62.5%; }
body {
  font-size: 1.5em; /* currently ems cause chrome bug misinterpreting rems on body element */
  line-height: 1.5 !important;
  font-weight: 400;
  font-family: "tk-jaf-facitweb", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif !important;
  color: #222;
  border: none;
  margin: 0;
  padding: 30px;
  background-color:#000000;
  //background-image: url('../images/LuggageTrain.png');
  //background-image: url('../images/Videobackground.png');
  background-repeat: no-repeat;
  background-position: top center;
  background-attachment: fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;

   }

html, body {
   width: 100%;
   height: 100%;
}

/* Typography
â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“ */
h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 2rem;
  font-weight: 300; }
h1 { font-size: 4.0rem; line-height: 1.2;  letter-spacing: -.1rem;}
h2 { font-size: 3.6rem; line-height: 1.25; letter-spacing: -.1rem; }
h3 { font-size: 3.0rem; line-height: 1.3;  letter-spacing: -.1rem; }
h4 { font-size: 2.4rem; line-height: 1.35; letter-spacing: -.08rem; }
h5 { font-size: 1.8rem; line-height: 1.5;  letter-spacing: -.05rem; }
h6 { font-size: 1.5rem; line-height: 1.6;  letter-spacing: 0; }

.i2 h2 {
  margin-bottom: 20px;
  color: #ff3c1c;
  font-size:3em;
  text-transform:uppercase;
  font-family: "mostra-nuova";
  text-align: center;
}
.i2 h4 {
  margin-bottom: 5px;
  color: #000;
  font-size:1.5em;
  line-height:1em;
  font-weight:700;
  text-transform:uppercase;
  
}

.i2 .content2 {
  max-height: 30%;
  overflow: auto;
}



/* Larger than phablet */
@media (min-width: 550px) {
  h1 { font-size: 5.0rem; }
  h2 { font-size: 4.2rem; }
  h3 { font-size: 3.6rem; }
  h4 { font-size: 3.0rem; }
  h5 { font-size: 2.4rem; }
  h6 { font-size: 1.5rem; }
  
  .i2 h2 {
  margin-bottom: 20px;
  color: #ff3c1c;
  font-size:3em;
  text-transform:uppercase;
  font-family: "mostra-nuova";
  text-align: center;
}
.i2 h4 {
  margin-bottom: 5px;
  color: #000;
  font-size:1.5em;
  line-height:1em;
  font-weight:700;
  text-transform:uppercase;
  
}

.i2 .content2 {
  max-height: 30%;
  overflow: auto;
}



}

p {
  margin-top: 0; }





/* Links
â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“ */
a {
  color: #ff3c1c; text-decoration: none; }
a:hover {
  color: #bc2c15; }

/* Lists
â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“ */
ul {
  list-style: circle inside; }
ol {
  list-style: decimal inside; }
ol, ul {
  padding-left: 0;
  margin-top: 0; }
ul ul,
ul ol,
ol ol,
ol ul {
 /*  margin: 1.5rem 0 1.5rem 3rem; */
  font-size: 90%; }
li {
  margin-bottom: 1rem; }


/* Tables
â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“ */
th,
td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #E1E1E1; }
th:first-child,
td:first-child {
  padding-left: 0; }
th:last-child,
td:last-child {
  padding-right: 0; }


/* Spacing
â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“ */
pre,
blockquote,
dl,
figure,
table,
p,
ul,
ol,
form {
  margin-bottom: 2.5rem; }


/* Utilities
â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“ */
.u-full-width {
  width: 100%;
  box-sizing: border-box; }
.u-max-full-width {
  max-width: 100%;
  box-sizing: border-box; }
.u-pull-right {
  float: right; }
.u-pull-left {
  float: left; }


/* Misc
â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“ */
hr {
  margin-top: 3rem;
  margin-bottom: 3.5rem;
  border-width: 0;
  border-top: 1px solid #E1E1E1; }


/* Clearing
â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“ */

/* Self Clearing Goodness */
.container:after,
.row:after,
.u-cf {
  content: "";
  display: table;
  clear: both; }






/* Menu system - mobile */

.cd-container {
  /* this class is used to give a max-width to the element it is applied to, and center it horizontally when it reaches that max-width */
  width: 90%;
  margin: 0 auto;
}
.cd-container:after {
  content: "";
  display: table;
  clear: both;
}

.cd-header {
  position: absolute;
  top: 0;
  left: 0;
  background: transparent; /* mobile cd-header background */
  height: 100px;
  width: 100%;
 /*  z-index: 3; */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}




.cd-logo {
  display: block;
  position:  relative;
  padding-top:25px;
  z-index:0 !important;
}
.cd-logo img {
  display: block;
    width:50%;
    text-align:center;
    margin:0 auto;
    z-index:0 !important;
}

.king-logo{
  display: block;
  position:  relative;
  padding-top:25px;
  z-index:0 !important;
}
.king-logo img {
  display: block;
    width:50%;
    text-align:center;
    margin:0 auto;
    z-index:0 !important;
}


#change-video { display: none; }
#change-video-mobile { display: block; position: absolute; bottom: 25px; text-align: center; margin-left: 0; margin-right: 0; left: 0; right: 0; }

#change-video-mobile { display:block ; position: fixed; bottom:20px; right:20px; font-family: "mostra-nuova"; font-size:1em; }
#change-video-mobile a { color: #ff3c1c; }
#change-video-mobile a:hover { color: #bc2c15; }

/* Media Queries
â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“ */
/*
Note: The best way to structure the use of media queries is to create the queries
near the relevant code. For example, if you wanted to change the styles for buttons
on small devices, paste the mobile query code up in the buttons section and style it
there.
*/


/* Larger than mobile */
@media (min-width: 400px) {
	
}

/* Larger than phablet (also point when grid becomes active) */
@media (min-width: 550px) {
	
#change-video { display: block; }
#change-video-mobile { display: none; }	

.king-logo {
  display: block;
  position: absolute;
  top: 3850%;
  
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  //left: 109em;
  right: -132px;
  bottom: auto;
  padding-top:0;
}
	
.cd-logo {
  display: block;
  position: absolute;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  left: .875em;
  padding-top:0;
} /*
.cd-logo img {
  display: block;
    width:100%;
} */
	
}

/* Larger than tablet */
@media (min-width: 750px) {
	
/* Content in popups */	
	
	.content-column-left {
		display: inline-block !important;
		width: 45% !important;
		vertical-align:top;
		padding-right:2%;
	}
	
	.content-column-left-contacts {
		display: inline-block !important;
		width: 45% !important;
		vertical-align:top;
		padding-right:2%;
		
	}
	.content-column-left-albums {
		display: inline-block !important;
		width: 45% !important;
		vertical-align:top;
		padding-right:2%;
		
	}
	.content-column-left-albums img {
		max-width: 100%;
		display:inline-block !important;
		
	}
	.content-column-right {
		display: inline-block !important;
		width: 45% !important;
		vertical-align:top;
	}
	.content-column-full {
		display: block;
		width: 100%;
		height:100px;
	}
	.contacts-title { font-weight:700; margin-bottom:10px;}
	.contacts-class { margin-bottom:30px; }
	.li-last { margin-bottom:20px; }
	
	.music-title { margin-bottom:15px;}
	.music-year-label { color:#b7b7b7; /* grey */ font-size:0.9em; }
	.music-track-number { color:#b7b7b7; font-size:0.9em; padding-right:15px; }
	.music-buy { padding-top:10px; }
	.music-buy-divider { color:#b7b7b7; font-size:0.9em; }
	.music-buy-buttons { font-family: "mostra-nuova"; }
	
	#change-video { display:block ; position: fixed; bottom:20px; right:20px; font-family: "mostra-nuova"; font-size:1em; }
	#change-video a { color: #ff3c1c; }
	#change-video a:hover { color: #bc2c15; }


}

/* Larger than desktop */
@media (min-width: 1000px) {}

/* Larger than Desktop HD */
@media (min-width: 1200px) {}


/* Added by Author
â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“ */


@media only screen and (min-width: 768px) {

/* Menu system */

.cd-container {
  /* this class is used to give a max-width to the element it is applied to, and center it horizontally when it reaches that max-width */
  width: 90%;
  max-width: 768px;
  margin: 0 auto;
}
.cd-container:after {
  content: "";
  display: table;
  clear: both;
}

.cd-header {
  position: absolute;
  top: 35px;
  left: 0;
  background: transparent; /* mobile cd-header background */
  height: 20px;
  width: 100%;
  z-index: 3;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


}





@media only screen and (min-width: 1170px) {
  .cd-header {
    -webkit-transition: background-color 0.3s;
    -moz-transition: background-color 0.3s;
    transition: background-color 0.3s;
    /* Force Hardware Acceleration in WebKit */
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  .cd-header.is-fixed {
    /* when the user scrolls down, we hide the header right above the viewport */
    position: fixed;
    top: -200px;
    background: rgba(0, 0, 0, 0.15);
    -webkit-transition: -webkit-transform 0.3s;
    -moz-transition: -moz-transform 0.3s;
    transition: transform 0.3s;
  }
  .cd-header.is-visible {
    /* if the user changes the scrolling direction, we show the header */
    -webkit-transform: translate3d(0, 100%, 0);
    -moz-transform: translate3d(0, 100%, 0);
    -ms-transform: translate3d(0, 100%, 0);
    -o-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  .cd-header.menu-is-open {
    /* add a background color to the header when the navigation is open */
    background: transparent;

  }
}


@media only screen and (min-width: 768px) {
.cd-logo {
  display: block;
  position: absolute;
  top: 70%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 2.6em;
}
.cd-logo img {
  display: block;
  width: 218px;
  padding-top:180px;
}

}

.cd-secondary-nav {
  position: absolute;
  top: 25%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 2.5em;
  /* hidden on small devices */
  display: none;
}
.cd-secondary-nav li {
  display: inline-block ;
  margin-left: 2.2em;
}
.cd-secondary-nav a {
  display: inline-block;
  color: white;
  text-transform: uppercase;
  font-weight: 700;
}

.cd-volume a {
  width: 44px;
  height: 44px;
  padding: 0;
  background-image: url("../images/cd-volume.svg"); 
  background-repeat: no-repeat;
  /* image replacement */
  overflow: hidden;
 text-indent: 100%;
  white-space: nowrap; 
  opacity: 0.5;
} 
@media (min-width: 768px) {
  .cd-secondary-nav {
    display: block;
  }
  
  .cd-primary-nav-trigger-mobile {
	display:none !important; }
  .cd-primary-nav-trigger-mobile .cd-menu-icon-mobile {
  	display:none;
}

.nav-trigger-wrapper {display:block !important; }
.nav-trigger-wrapper-mobile {display: none !important; }
}


.nav-trigger-wrapper {display: none; }
.nav-trigger-wrapper-mobile {display: block; margin:0 auto; text-align:center; margin-top:30px; }

.cd-primary-nav-trigger {
  position: relative;
  margin:0 auto !important;
  width: 0px;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 700;
  /* hide the text on small devices */
  display: block;
  z-index:999 !important;
}



.cd-primary-nav-trigger-mobile .cd-menu-icon-mobile {
  /* this span is the central line of the menu icon */
  position:relative;
  display: block;
  top: 10%;
  bottom: auto;
    padding-top:50px;
  /* margin:0 auto !important; */
  /* right: auto; */
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: 30px;
  height: 3px;
  background-color: #ff3c1c; /* P&A Red */
  -webkit-transition: background-color 0.3s;
  -moz-transition: background-color 0.3s;
  transition: background-color 0.3s;
  z-index:999 !important;
  /* these are the upper and lower lines in the menu icon */
}



/* End mobile */

.cd-primary-nav-trigger .cd-menu-icon {
  /* this span is the central line of the menu icon */
  position:relative;
  display: block;
  top: 50%;
  bottom: auto;
  /* margin:0 auto !important; */
  /* right: auto; */
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: 30px;
  height: 3px;
  background-color: #ff3c1c; /* P&A Red */
  -webkit-transition: background-color 0.3s;
  -moz-transition: background-color 0.3s;
  transition: background-color 0.3s;
  z-index:999 !important;
  /* these are the upper and lower lines in the menu icon */
}
.cd-primary-nav-trigger .cd-menu-icon::before, .cd-primary-nav-trigger .cd-menu-icon:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: #ff3c1c;
  right: 0;
  margin-top: 5px;
  margin-bottom: 5px;
  -webkit-transition: -webkit-transform .3s, top .3s, background-color 0s;
  -moz-transition: -moz-transform .3s, top .3s, background-color 0s;
  transition: transform .3s, top .3s, background-color 0s;
  z-index:999 !important;
}
.cd-primary-nav-trigger .cd-menu-icon::before {
  top: -15px; /* adjusted hamburger height here */
  z-index:999 !important;
}
.cd-primary-nav-trigger .cd-menu-icon::after {
  top: 5px;
  z-index:999 !important;
}
.cd-primary-nav-trigger .cd-menu-icon.is-clicked {
  background-color: rgba(255, 255, 255, 0);
  z-index:999 !important;
  
}
.cd-primary-nav-trigger .cd-menu-icon.is-clicked::before, .cd-primary-nav-trigger .cd-menu-icon.is-clicked::after {
  background-color: white;
  z-index:999 !important;
}
.cd-primary-nav-trigger .cd-menu-icon.is-clicked::before {
  top: 0;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
  z-index:999 !important;
}
.cd-primary-nav-trigger .cd-menu-icon.is-clicked::after {
  top: 0;
  -webkit-transform: rotate(225deg);
  -moz-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  -o-transform: rotate(225deg);
  transform: rotate(225deg);
  z-index:999 !important;
}
@media only screen and (min-width: 768px) {
  .cd-primary-nav-trigger {
    width: 30px;
    height: 30px;
    line-height: 30px;
    top: 25%;
    bottom: auto;
    margin:auto;
    text-align: center;
    background-color: transparent; /* hamburger debug adjustment here */
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index:999 !important;
  }
  .cd-primary-nav-trigger {
    display: block;
    z-index:999 !important;
  }
  .cd-primary-nav-trigger .cd-menu-icon {
    -webkit-transform: translateX(0) translateY(-50%);
    -moz-transform: translateX(0) translateY(-50%);
    -ms-transform: translateX(0) translateY(-50%);
    -o-transform: translateX(0) translateY(-50%);
    transform: translateX(0) translateY(-50%);
    z-index:999 !important;
  }
  
  
}

.cd-primary-nav {
  /* by default it's hidden - on top of the viewport */
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: rgba(255, 60, 28, 0.95);
  z-index: 2;
  text-align: center;
  padding: 50px 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: auto;
  /* this fixes the buggy scrolling on webkit browsers - mobile devices only - when overflow property is applied */
  -webkit-overflow-scrolling: touch;
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  transition-duration: 0.4s;
}
.cd-primary-nav li {
  font-size: 3em !important;
  line-height:1em;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: .1em 0;
  text-transform: uppercase;
}

.cd-primary-nav-last { margin-bottom:.4em !important; }


.cd-primary-nav a {
  display: inline-block;
  padding: .2em 1em;
  border-radius: 0.25em;
  font-family: "mostra-nuova";
  -webkit-transition: background 0.2s;
  -moz-transition: background 0.2s;
  transition: background 0.2s;
}
.cd-primary-nav a:link { color: #fff; }
.cd-primary-nav a:visited { color: #fff; }
.cd-primary-nav a:hover { color: #bc2c15; }
.cd-primary-nav a:active{ color: #fff; }

.no-touch .cd-primary-nav a:hover {
}
.cd-primary-nav .cd-label {
  color: #06446e;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  font-size: 0.875rem;
  margin: 2.4em 0 .8em;
}
.cd-primary-nav .cd-social {
  display: inline-block;
  margin: 0 .4em;
}
.cd-primary-nav .cd-social-vol {
  display: inline-block;
  margin: 0 .4em;
}
.cd-primary-nav .cd-social a {
  width: 44px;
  height: 44px;
  padding: 0;
  background-image: url("../images/cd-socials.svg");
  background-repeat: no-repeat;
  /* image replacement */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}


/* 
.cd-itunes:hover {
  display: inline-block !important;
  opacity:0.9;
  cursor:pointer;
  margin: 0 !important;
}
.cd-itunes:hover {
  display: inline-block !important;
  opacity:0.9;
  cursor:pointer;
   margin: 0 .4em !important;
}
*/
/* .cd-social-apple {
  width: 44px;
  height: 44px;
  padding: 0;
  background-image: url("../images/cd-apple-music.svg");
  /* image replacement */
/*   overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;

} */

.cd-primary-nav .cd-social-vol a {
  width: 44px;
  height: 44px;
  padding: 0;
  /* image replacement */
  overflow: hidden;
  
  text-indent: 100%;
  white-space: nowrap;
}

.cd-primary-nav .cd-facebook a {
  background-position: 0 0;
}
.cd-primary-nav .cd-instagram a {
  background-position: -44px 0;
}
.cd-primary-nav .cd-spotify a {
  background-position: -88px 0;
}
.cd-primary-nav .cd-twitter a {
  background-position: -133px 0;
}
.cd-secondary-nav .cd-itunes a {
  background-position: -190px 0;
}

.cd-secondary-nav .cd-social {
  display: inline-block;
  margin: 0 .4em;
  opacity:0.5;
}
.cd-secondary-nav .cd-social-vol {
  display: inline-block;
  margin: 0 .4em;
  opacity:0.5;
}
.cd-secondary-nav .cd-social:hover {
  display: inline-block;
  margin: 0 .4em;
  opacity:0.9;
  cursor:pointer;
}
.cd-secondary-nav .cd-social-vol:hover {
  display: inline-block;
  margin: 0 .4em;
  opacity:0.9;
  cursor:pointer;
}
.cd-secondary-nav .cd-social a {
  width: 44px;
  height: 44px;
  padding: 0;
  background-image: url("../images/cd-socials-red.svg");
  background-repeat: no-repeat;
  /* image replacement */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  
}
.cd-secondary-nav .cd-social-vol a {
  width: 44px;
  height: 44px;
  padding: 0;
  background-image: url("../images/cd-socials-red.svg");
  background-repeat: no-repeat;
  /* image replacement */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  
}

.cd-secondary-nav .cd-facebook a {
  background-position: 0 0;
}
.cd-secondary-nav .cd-instagram a {
  background-position: -44px 0;
}
.cd-secondary-nav .cd-spotify a {
  background-position: -88px 0;
}
.cd-secondary-nav .cd-twitter a {
  background-position: -132px 0;
  overflow:hidden;
}
.cd-secondary-nav .volumebutton {
	background-position: 0 0;
	}

.cd-secondary-nav .cd-itunes a {
  width: 92px;
  height: 44px;
    background-position: -190px 0;
    
}

.cd-primary-nav.is-visible {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  z-index:2 !important;
}
@media only screen and (min-width: 768px) {
  .cd-primary-nav {
    padding: 100px 0;
    
  }
}
@media only screen and (min-width: 1170px) {
  .cd-primary-nav li {
    font-size: 30px;
    font-size: 1.875rem;
  }
  .cd-primary-nav .cd-label {
    font-size: 16px;
    font-size: 1rem;
  }
}

.cd-intro {
  position: relative;
  height: 100%;
  background: url("images/cd-background-img.jpg") no-repeat center center;
  background-size: cover;
  z-index: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.cd-intro h1 {
  position: absolute;
  width: 90%;
  max-width: 1170px;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  color: white;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 300;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .cd-intro h1 {
    font-size: 30px;
    font-size: 1.875rem;
  }
}
@media only screen and (min-width: 1170px) {
  .cd-intro {
    height: 700px;
  }
}

.cd-main-content {
  position: relative;
  z-index: 1;
}
.cd-main-content p {
  line-height: 1.6;
  margin: 2em 0;
}
@media only screen and (min-width: 1170px) {
  .cd-main-content p {
    font-size: 20px;
    font-size: 1.25rem;
  }
}







.videolink { color: #ff3c1c; text-align:center; margin:0 auto; }
.videolink:hover { color: #bc2c15 !important; } /* hover red */


.content-column-left {
		display: inline-block;
		width: 100%;
		vertical-align:top;
		padding-right:0;
		
	}
	.content-column-left-albums {
		display: inline-block;
		width: 100%;
		vertical-align:top;
		padding-right:2%;
		text-align:center;
		
	}
	.content-column-left-albums img {
		max-width: 100%;
		display:block;
	}	
	.content-column-left-contacts {
		display: block;
		width: 100%;
		vertical-align:top;
		padding-right:2%;
		
	}
	.content-column-left-contacts img {
		max-width: 100%;
		display:block;
		
	}
	.content-column-right {
		display: block;
		width: 100%;
		vertical-align:top;
	}
	.content-column-full {
		display: block;
		width: 100%;
		height:100px;
	}
	
	.content-column-full-general {
		display: block;
		width: 100%;
		height:1px;
	}
	
	.contacts-title { font-weight:700; margin-bottom:10px;}
	.contacts-class { margin-bottom:30px; font-size:0.9em; }
	.li-last { margin-bottom:20px; }
	
	.music-title { margin-bottom:15px;}
	.music-year-label { color:#b7b7b7; /* grey */ font-size:0.9em; }
	.music-track-number { color:#b7b7b7; font-size:0.9em; padding-right:15px; }
	.music-buy { padding:15px 0; }
	.music-buy-divider { color:#b7b7b7; font-size:0.9em; }
	.music-buy-buttons { font-family: "mostra-nuova"; }

}




.i2 h2 {
  margin-bottom: 20px;
  color: #ff3c1c;
  font-size:3em;
  text-transform:uppercase;
  font-family: "mostra-nuova";
  text-align: center;
}
.i2 h4 {
  margin-bottom: 5px;
  color: #000;
  font-size:1.5em;
  line-height:1em;
  font-weight:700;
  text-transform:uppercase;
  
}

.i2 .content2 {
  max-height: 30%;
  overflow: auto;
}



#menu-wrapper-for-index { visibility:hidden; } /* To hide the music player that's called on the index page */

.fancy-change-videos {} /* Nothing to see here folks, it's in the index.html header file in the script for customizing */






/* YTBPlayer
â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“ */


*:focus{
  outline: none;
}


#wrapper {
  position: relative;
  min-width: 700px;
  z-index:1 !important;
}

.dida{
  color: #fff;
  font-size: 20px;
  margin-top: 20px;
}

button, .button {
  transition: all .4s;
  display: inline-block;
  padding: 0px 10px;
  font-size: 12px;
  text-transform: uppercase;

  cursor: pointer;

  background-color: rgba(248, 248, 248, 0.4);
  box-shadow: 0 0 4px rgba(0,0,0,0.4);
  color:#000;

  border: 1px solid transparent;

  text-decoration: none;
  line-height: 30px;
  margin: 3px;
  border-radius: 10px;
}

button:hover, .button:hover {
  background-color: rgb(0, 0, 0);
  color: #FFF;
}

#togglePlay{
  margin-top: 20px;
  font-size: 20px;
  width: 100px;
  height: 100px;
  line-height: 70px;
  border-radius: 100%;
}

#togglePlay.pause{
  background-color: rgb(0, 0, 0);
  color: #fff;
}

#togglePlay.pause:hover{
  background-color: #fff;
  color: #333;
}

#togglePlay.play{
  background-color: #fff;
  color: #333;
}

#togglePlay.play:hover{
  background-color: rgb(0, 0, 0);
  color: #fff;
}

.goto {
  position: absolute;
  left:0;
  top: 360px;
  right: 0;
  margin: auto;
  text-align: center;
  width: 100%;
  height: 50px;
}


.goto .button{
  font-size: 30px;
  padding: 10px;
  text-transform: none;
}
#loadBox{
  background-color: rgba(168, 168, 168, 0.20);
  border-radius: 10px;
  padding: 20px;
}



/* */

.box {
  width: 20%;
  margin: 0 auto;
  margin-top:200px;
  background: rgba(255,255,255,0.2);
  padding: 35px;
  border: 2px solid #fff;
  border-radius: 20px/50px;
  background-clip: padding-box;
  text-align: center;
}


.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.0);
  transition: opacity 500ms;
  visibility: hidden;
  opacity: 0;
}
.overlay:target {
  visibility: visible;
  opacity: 1;
}
	
	.popup {
  margin: 70px auto;
  margin-top:200px;
  padding: 40px;
  background-color:rgba(255, 255, 255, 0.9);
  border-radius: 5px;
  width: 69%;
  position: relative;
  transition: all 5s ease-in-out;
}
.popup h2 {
  margin-bottom: 20px;
  color: #ff3c1c;
  font-size:3em;
  text-transform:uppercase;
  font-family: "mostra-nuova";
  text-align: center;
}
.popup h4 {
  margin-bottom: 5px;
  color: #000;
  font-size:1.5em;
  line-height:1em;
  font-weight:700;
  text-transform:uppercase;
  
}
.popup .close {
  position: absolute;
  top: 20px;
  right: 30px;
  transition: all 200ms;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #ff3c1c;
}
.popup .close:hover {
  color: #333333;
}
.popup .content {
  max-height: 30%;
  overflow: auto;
}

#i-video2 { text-align:center; margin-bottom:20px; }





/* Shows Widget
â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“ */


#shows-content {
	width:100%;
}

#shows-content a {
	width:100%;
	color: #ff3c1c;
}

#shows-content a:hover {
	width:100%;
	color: #bc2c15;
}



.bit-widget-container { font-family:arial,helvetica,sans-serif; font-size:13px;}.bit-events, .bit-events-narrow {overflow: hidden;display: table;}.bit-events th, .bit-events td {width: auto;text-align: left; padding: 4px;vertical-align:middle;}.bit-events td {height: 36px; background:none;}.bit-events-narrow td {width:auto; height:57px; background:none;padding:4px;vertical-align:middle;}#bit-events td.bit-tickets, #bit-events th.bit-tickets {width:55px; padding-right: 8px;}#bit-events td.bit-artist-event-link { text-align: right; }#bit-events td.bit-artist-event-link a { float: right; }#bit-events td.bit-actions a, #bit-events td.bit-rsvp a { float: right; }#bit-events td.bit-rsvp { width: 42px; padding-right: 8px; }#bit-events td.bit-comment { width: 21px; padding-left: 8px; padding-right: 8px; }#bit-events td .bit-uiButton { display:inline-block; padding: 1px 6px; height: 16px; line-height: 16px !important; cursor: pointer; font-family: "lucida grande",tahoma,verdana,arial,sans-serif}#bit-events td .bit-uiButton { background:#eee url("http://d38hmgjgf0kofx.cloudfront.net/images/facebook/silver-blue-bg.png") repeat 0 0; border:1px solid #999; border-bottom-color:#888; box-shadow:0 1px 0 rgba(0, 0, 0, .1); -moz-box-shadow:0 1px 0 rgba(0, 0, 0, .1); font-size:11px; font-weight:bold; text-align:center; text-decoration:none; vertical-align:top; white-space:nowrap }#bit-events td .bit-uiButton:active{background:#ddd;border-bottom-color:#999;box-shadow:0 1px 0 rgba(0, 0, 0, .05);-moz-box-shadow:0 1px 0 rgba(0, 0, 0, .05)}#bit-events td .bit-uiButtonSpecial{background-image:url("http://d38hmgjgf0kofx.cloudfront.net/images/facebook/silver-blue-bg.png"); background-repeat:no-repeat;background-position:0px -96px;background-color:#69a74e;border-color:#3b6e22 #3b6e22 #2c5115;}#bit-events td .bit-uiButtonSpecial:active{background:#609946;border-bottom-color:#3b6e22;}#bit-events td .bit-uiButton a, .bit-uiButton a:hover { text-decoration: none; display: inline-block; }#bit-events td .bit-uiButtonSpecial a { color: #FFFFFF; }#bit-events td .bit-uiButtonDefault a { color: #333333; }#bit-events td.bit-comment a.bit-comment { background: transparent url('http://d38hmgjgf0kofx.cloudfront.net/images/facebook/comments_icon.gif') 0px 0px no-repeat; width: 15px; height: 16px; display: inline-block; margin-top: 2px; float: right; }#bit-events td.bit-comment a:hover, #bit-events td.bit-comment a.bit-comment-open { background-position: 0px -16px; }#bit-events td.bit-location {font-weight:bold;}#bit-events td.bit-description, #bit-events th.bit-description {font-size: 85%; left: 8px 4px; }#bit-events td.bit-description-links, #bit-events th.bit-description-links {padding-left: 8px; width: 6px;}#bit-events .bit-hidden {display:none;}#bit-events .bit-bottom td {padding-left:8px;height:36px;}#bit-events .bit-bottom td.concerts-by-bandsintown {text-align:right;}#bit-events .bit-bottom a { vertical-align: middle; border: none; display: inline-block; }#bit-events table a { text-align: left; float: left; width:auto; }#bit-events table a:hover { -webkit-transition: none; -moz-transition: none; -o-transition: none; transition: none; }#bit-events td.bit-description a { float: none; }#bit-events a.bit-event-description-link { text-decoration: none; margin: 0; padding: 0; display: inline-block; height: 9px; width: 9px; line-height: 9px; font-size: 9px; text-align: center; vertical-align: middle; border: none;}.bit-events tr.bit-dashed-border td.bit-description-links, .bit-events tr.bit-dashed-border td.bit-date, .bit-events-narrow tr.bit-dashed-border td { border-top: 1px solid transparent;}#bit-events td.bit-concert a { float: none; }td.bit-date { width: 45px; }tr.bit-header th, tr.bit-header-narrow { line-height: 26px; }#bit-events tr.bit-header a, #bit-events tr.bit-header-narrow a { float: none; font-weight: normal; }#bit-events tr.bit-header-narrow th { text-align: left; padding: 4px;}#bit-events .bit-events-narrow tr.no-dates td a { display: block; }#bit-events .bit-events td.no-dates td { padding: 20px 0px; }#bit-events .bit-header-links { margin-right: 15px; }#bit-events .bit-share-text { float:right; }#bit-events .bit-share-links { float: right; }#bit-events .bit-share-links a { display: inline-block; width: 26px; height: 26px; vertical-align: middle; }#bit-events .bit-fb-share { background: transparent url('http://d38hmgjgf0kofx.cloudfront.net/images/facebook/icons/fb_share.gif') top left no-repeat; margin-left: 4px; display: inline-block; width: 26px; height:26px; vertical-align: middle;}#bit-events .bit-twitter-share { background: transparent url('http://d38hmgjgf0kofx.cloudfront.net/images/facebook/icons/twitter_share.gif') top left no-repeat; display: inline-block; width: 26px; height:26px; vertical-align: middle;}#bit-events .bit-events-narrow tr.no-dates td { padding-bottom: 25px; padding-top: 20px; }#bit-events tr.no-dates td { padding-top: 10px; padding-bottom: 10px; }#bit-events tr.no-dates td a { float: none; margin-top: 15px; }#bit-events td.bit-concert a.bit-buy-tix { padding-right: 8px; }.bit-header-overflow-fix { height: 26px; overflow: hidden; }#bit-events iframe { border: none; }#bit-events .comments-title, #bit-events .description-title { color: #323232; font-size: 11px; font-weight: bold; margin: 0px 0px 4px 0px;}#bit-events .bit-event-details { color: #000000; }#bit-events .bit-details-title { background-color: #ffffff; font-weight: bold; padding: 4px 8px 0px 20px; color: #0e0e0e; font-size: 11px; }#bit-events .bit-details-title a { float: right; color: #8296cc; text-decoration: none; }#bit-events .bit-details-title a:hover { color: #ffffff; text-decoration: none; }#bit-events .bit-details-text { background-color: #ffffff; margin-bottom: 1px; padding: 5px 8px 5px 20px; color: #1A1A1A; }#bit-events .bit-details-comments { background: transparent; padding: 0px; margin: 0px; }#bit-events .bit-details-text a { color: #3857a0; float: none; }#bit-events a.bit-fb-event-link { font-weight: bold; display: block; text-decoration: none; margin: 4px 0px; }#bit-events tr td.bit-details { padding: 0px; }#bit-events .venue, #bit-events .location, #bit-events .lineup { display: block; clear: left; font-size: smaller; line-height: 100%; }#bit-events .location { font-weight: bold }#bit-events a.bit-track-artist-header {text-align: center; padding: 10px 0px; font-size: 13px; line-height: 1.5; display: block; text-decoration: none; }#bit-events a.bit-track-artist-header:hover {text-decoration: none;}#bit-events a.bit-track-artist-header .bit-invert { display: inline-block; padding: 2px 20px; margin-bottom: 2px; }#bit-events tr[data-bit-event-id] td { cursor: pointer; }#bit-widget-dialog-container { position: fixed; width: 100%; height: 100%; margin: auto; }#bit-widget-dialog { color: #333333; direction: ltr; font-family: 'lucida grande',tahoma,verdana,arial,sans-serif; font-size: 11px; text-align: left; }#bit-widget-dialog label { color: #666666; cursor: pointer; font-weight: bold; vertical-align: middle; }body#bit-widget-dialog { margin: 0px; padding: 0px; }#bit-widget-dialog-loading .loading { height: 32px; width: 100%; background: transparent url('http://d38hmgjgf0kofx.cloudfront.net/images/facebook/ajax-loader-large.gif') no-repeat scroll center center; }#bit-widget-dialog .pop_content{direction:ltr}#bit-widget-dialog {height:0;left:0;overflow:visible;outline:none;position:absolute;top:0;width:100%;z-index:250}#bit-widget-dialog .generic_dialog_popup{height:0;overflow:visible;position:relative;width:520px;margin:auto}#bit-widget-dialog .pop_content h2.dialog_title{background:#6d84b4;border:1px solid #3b5998;border-bottom:none;color:#fff;font-size: 14px;font-weight:bold;margin:0;}#bit-widget-dialog .pop_content h2 span{display:block;padding:5px 10px}#bit-widget-dialog .pop_content .dialog_content{background:#fff;border:1px solid #555;border-top-width:0}#bit-widget-dialog .pop_content .dialog_body{padding:10px;border-bottom:1px solid #ccc}#bit-widget-dialog .pop_content .dialog_buttons{background:#f2f2f2;padding:8px 10px 8px 10px;position:relative;text-align:right}#bit-widget-dialog .pop_container_advanced{border-radius:8px;-webkit-border-radius:8px;-moz-border-radius:8px;padding:10px}#bit-widget-dialog .uiButton,#bit-widget-dialog .uiButtonSuppressed:active,#bit-widget-dialog .uiButtonSuppressed:focus,#bit-widget-dialog .uiButtonSuppressed:hover{background:#eee url('http://d38hmgjgf0kofx.cloudfront.net/images/facebook/silver-blue-bg.png') repeat 0 0;border:1px solid #999;border-bottom-color:#888;box-shadow:0 1px 0 rgba(0, 0, 0, .1);-moz-box-shadow:0 1px 0 rgba(0, 0, 0, .1);cursor:pointer;display:-moz-inline-box;display:inline-block;font-size:11px;font-weight:bold;line-height:normal !important;padding:2px 6px;text-align:center;text-decoration:none;vertical-align:top;white-space:nowrap}#bit-widget-dialog .uiButtonConfirm{background-color:#5b74a8;background-position:0 -48px;border-color:#29447e #29447e #1a356e}#bit-widget-dialog .uiButton:active,#bit-widget-dialog .uiButtonDepressed{background:#ddd;border-bottom-color:#999;box-shadow:0 1px 0 rgba(0, 0, 0, .05);-moz-box-shadow:0 1px 0 rgba(0, 0, 0, .05)}#bit-widget-dialog .uiButton .uiButtonText,#bit-widget-dialog .uiButton input{background:none;border:0;color:#333;cursor:pointer;display:-moz-inline-box;display:inline-block;font-family:'Lucida Grande', Tahoma, Verdana, Arial, sans-serif;font-size:11px;font-weight:bold;margin:0;outline:none;padding:1px 0 2px;white-space:nowrap}#bit-widget-dialog .uiButtonLarge,#bit-widget-dialog .uiButtonLarge .uiButtonText,#bit-widget-dialog .uiButtonLarge input{font-size:13px}#bit-widget-dialog .uiButtonSpecial .uiButtonText,#bit-widget-dialog .uiButtonSpecial input,#bit-widget-dialog .uiButtonSpecial.uiButtonDisabled .uiButtonText,#bit-widget-dialog .uiButtonSpecial.uiButtonDisabled input,#bit-widget-dialog .uiButtonConfirm .uiButtonText, #bit-widget-dialog .uiButtonConfirm input, #bit-widget-dialog .uiButtonConfirm.uiButtonDisabled .uiButtonText, #bit-widget-dialog .uiButtonConfirm.uiButtonDisabled input { color: #FFFFFF; }#bit-widget-dialog .uiButtonConfirm:active{background:#4f6aa3;border-bottom-color:#29447e}#bit-widget-dialog .popup-border-outer { z-index: 1; background: none; position: relative; }#bit-widget-dialog .popup-border-inner { background-color: #525252; -moz-opacity: 0.7; opacity: 0.7; position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; padding: 0; filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70); }#bit-widget-dialog .popup-content { position: relative; z-index: 2; }#bit-widget-dialog h2 { padding: 0px; }#bit-widget-dialog .clear { clear: both; }* html #bit-widget-dialog .popup-border-inner  { display: none; }* html #rsvp-dialog-container { position: absolute; }#bit-events[data-bit-widget-id='1456464327512'] { width:100%;}#bit-events[data-bit-widget-id='1456464327512'] {}#bit-events[data-bit-widget-id='1456464327512'] .bit-events, .bit-events-narrow { width:100%;}#bit-events[data-bit-widget-id='1456464327512'] .bit-events td { border-top: 1px solid #E9E9E9;}#bit-events[data-bit-widget-id='1456464327512'] .bit-events-narrow td { border-top: 1px solid #E9E9E9;}#bit-events[data-bit-widget-id='1456464327512'] td{}#bit-events[data-bit-widget-id='1456464327512'] th{}#bit-events[data-bit-widget-id='1456464327512'] td{}#bit-events[data-bit-widget-id='1456464327512'] th{}#bit-events[data-bit-widget-id='1456464327512'] a{}#bit-events[data-bit-widget-id='1456464327512'] .bit-events tr.bit-dashed-border td { border-top: 1px dashed #E9E9E9;}#bit-events[data-bit-widget-id='1456464327512'] .bit-events-narrow tr.bit-dashed-border td.bit-description { border-top: 1px dashed #E9E9E9;}#bit-events[data-bit-widget-id='1456464327512'] .bit-events-narrow tr.no-dates td span{}#bit-events[data-bit-widget-id='1456464327512'] table { border-bottom: 1px solid #E9E9E9;}#bit-events[data-bit-widget-id='1456464327512'] a.bit-track-artist-header {border-top: 1px solid #E9E9E9; border-bottom: 1px solid #E9E9E9; }

/* End Shows Widget
â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“ */

#fancybox-inner {
    overflow-x: hidden;
}

.listen { font-size:0.7em; }

/* YTPlayer */

.player {
    display: inline-block;
    vertical-align: top;
    position: relative;
	width: 500px;
	height: 350px;
	margin-top: 100px;
	left: 0;
	overflow: hidden;
	border-radius: 4px;
	-moz-box-shadow: 0 0 10px rgba(0,0,0,.5);
	box-shadow: 0 0 10px rgba(0,0,0,.5);
}


#jandm {
	position: absolute; 
	bottom: 0px;
	font-size: 0.3em;
	display: block;
	text-align: center;
	margin: 0 auto;
	color:rgba(0, 0, 0, 0.42);
	left: 0;
	right: 0;
	margin-left: 0;
	margin-right: 0;
	vertical-align:bottom; */
}

#mailing-list { font-size: 0.5em !important; color: #231f20 !important; display: block; margin: 0 auto; text-align: center; text-transform: uppercase;
	}
#mailing-list a { color: #000 !important; }
#mailing-list a:hover { color: #fff !important; }

.fullscreen-bg {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    z-index: -100;
    min-width:100%;
	min-height: 100%;
	width: auto;
	height: auto;
}

.fullscreen-bg__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

