/* 
  HTML5 ✰ Boilerplate 
  
  style.css contains a reset, font normalization and some base styles.
  
  credit is left where credit is due.
  much inspiration was taken from these projects: 
    yui.yahooapis.com/2.8.1/build/base/base.css
    camendesign.com/design/
    praegnanz.de/weblog/htmlcssjs-kickstart
*/
/* 
  html5doctor.com Reset Stylesheet (Eric Meyer's Reset Reloaded + HTML5 baseline)
  v1.4 2009-07-27 | Authors: Eric Meyer & Richard Clark
  html5doctor.com/html-5-reset-stylesheet/
*/
/* Make everything conform to a standard box-model */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

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

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

img {
  line-height: 0;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

/* tables still need cellspacing="0" in the markup */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

/* END RESET CSS */
/* fonts.css from the YUI Library: developer.yahoo.com/yui/
   Refer to developer.yahoo.com/yui/3/cssfonts/ for font sizing percentages

  There are three custom edits: 
   * remove arial, helvetica from explicit font stack
   * we normalize monospace styles ourselves
   * table font-size is reset in the HTML5 reset above so there is no need to repeat
*/
body {
  font: 13px/1.231 sans-serif;
  *font-size: small;
}

/* hack retained to preserve specificity */
select, input, textarea, button {
  font: 99% sans-serif;
}

/* normalize monospace sizing 
 * en.wikipedia.org/wiki/MediaWiki_talk: Common.css/Archive_11#Teletype_style_fix_for_Chrome
 */
pre, code, kbd, samp {
  font-family: monospace, sans-serif;
}

/* 
 * minimal base styles 
 */
body, select, input, textarea {
  /* #444 looks better than black: twitter.com/H_FJ/statuses/11800719859 */
  color: #444;
  /* set your base font here, to apply evenly */
  /* font-family: Georgia, serif;  */
}

/* Headers (h1,h2,etc) have no default font-size or margin,
   you'll want to define those yourself. */
h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
}

/* always force a scrollbar in non-IE */
html {
  overflow-y: scroll;
}

/* Accessible focus treatment: people.opera.com/patrickl/experiments/keyboard/test */
a:hover, a:active {
  outline: none;
}

ul, ol {
  list-style: none;
}

ol {
  list-style-type: decimal;
}

/* Remove margins for navigation lists */
nav ul, nav li {
  margin: 0;
}

small {
  font-size: 85%;
}

strong, th {
  font-weight: bold;
}

td, td img {
  vertical-align: top;
}

sub {
  vertical-align: sub;
  font-size: smaller;
}

sup {
  vertical-align: super;
  font-size: smaller;
}

pre {
  padding: 15px;
  /* www.pathf.com/blogs/2008/05/formatting-quoted-code-in-blog-posts-css21-white-space-pre-wrap/ */
  white-space: pre;
  /* CSS2 */
  white-space: pre-wrap;
  /* CSS 2.1 */
  white-space: pre-line;
  /* CSS 3 (and 2.1 as well, actually) */
  word-wrap: break-word;
  /* IE */
}

textarea {
  overflow: auto;
}

/* thnx ivannikolic! www.sitepoint.com/blogs/2010/08/20/ie-remove-textarea-scrollbars/ */
.ie6 legend, .ie7 legend {
  margin-left: -7px;
}

/* thnx ivannikolic! */
/* align checkboxes, radios, text inputs with their label
   by: Thierry Koblentz tjkdesign.com/ez-css/css/base.css  */
input[type="radio"] {
  vertical-align: text-bottom;
}

input[type="checkbox"] {
  vertical-align: bottom;
}

.ie7 input[type="checkbox"] {
  vertical-align: baseline;
}

.ie6 input {
  vertical-align: text-bottom;
}

/* hand cursor on clickable input elements */
label, input[type=button], input[type=submit], button {
  cursor: pointer;
}

/* webkit browsers add a 2px margin outside the chrome of form elements */
button, input, select, textarea {
  margin: 0;
}

/* colors for form validity */
input:invalid, textarea:invalid {
  border-radius: 1px;
  -moz-box-shadow: 0px 0px 5px red;
  -webkit-box-shadow: 0px 0px 5px red;
  box-shadow: 0px 0px 5px red;
}

.no-boxshadow input:invalid,
.no-boxshadow textarea:invalid {
  background-color: #f0dddd;
}

/* These selection declarations have to be separate.
   No text-shadow: twitter.com/miketaylr/status/12228805301 
   Also: hot pink. */
/*  j.mp/webkit-tap-highlight-color */
a:link {
  -webkit-tap-highlight-color: #FF5E99;
}

/* make buttons play nice in IE:    
   www.viget.com/inspire/styling-the-button-element-in-internet-explorer/ */
button {
  width: auto;
  overflow: visible;
}

/* bicubic resizing for non-native sized IMG: 
   code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/ */
.ie7 img {
  -ms-interpolation-mode: bicubic;
}

/* Clearfix
======================================================== */
/* >> The Magnificent CLEARFIX: Updated to prevent margin-collapsing on child elements << j.mp/bestclearfix */
.clearfix:before, .clearfix:after {
  content: "\0020";
  display: block;
  height: 0;
  visibility: hidden;
}

.clearfix:after {
  clear: both;
}

/* Fix clearfix: blueprintcss.lighthouseapp.com/projects/15318/tickets/5-extra-margin-padding-bottom-of-page */
.clearfix {
  zoom: 1;
}

.ui-block:last-child,
.ui-block.last {
  margin-right: 0;
}

/* !============================================= */
/* ! Variables						  			  */
/* !============================================= */
/* !-- Universal ------------------------------------ */
/* !-- Project ------------------------------------ */
/* !============================================= */
/* ! General Mixins			   			  		  */
/* !============================================= */
/* !== Transitions ==================================== */
/* !== Sprites ==================================== */
.sprite-sprite, .sprite-edit-off {
  background: url('../_img/sprite-s98ed23216c.png') no-repeat;
}

.sprite-edit-off {
  background-position: 0 0;
  height: 1px;
  width: 1px;
}

/* !== Paul Irish HTML5 Helpers =================== */
/* Hide for both screenreaders and browsers
   css-discuss.incutio.com/wiki/Screenreader_Visibility */
/* Hide only visually, but have it available for screenreaders 
   www.webaim.org/techniques/css/invisiblecontent/  &  j.mp/visuallyhidden  */
/* Extends the .visuallyhidden class to allow the element to be focusable when navigated to via the keyboard: drupal.org/node/897638 */
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

/* Hide visually and from screenreaders, but maintain layout */
/* !============================================= */
/* ! Patterns			   			  		  	  */
/* !============================================= */
/* NOTE: Uncomment only one of these imports below, 
   uncommenting both may result in a scenario too 
   horrible to comprehend. */
/* !============================================= */
/* ! Custom Fonts					   			  */
/* !============================================= */
/* Follow this format, y'hear:

	@font-face { 
		font-family: "Knockout 32"; 
		src: font-url('knockout/knockout-32.eot');
		src: local(':)'), 
			 font-url('knockout/knockout-32.woff') format('woff'), 
			 font-url('knockout/knockout-32.ttf') format('truetype'), 
			 font-url('knockout/knockout-32.svg#webfontABgg4EO0') format('svg'); }	
*/
/* ============================================= */
/*	Universal						   			 */
/* ============================================= */
a {
  text-decoration: none;
  color: inherit;
}

body {
  overflow: hidden;
}

/* ============================================= */
/*	Typography						   			 */
/* ============================================= */
strong, .strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

@font-face {
  font-family: 'ONRAMPRegular';
  src: url("../_fonts/onramp-webfont.eot");
  src: url("../_fonts/onramp-webfont.eot?#iefix") format("embedded-opentype"), url("../_fonts/onramp-webfont.woff") format("woff"), url("../_fonts/onramp-webfont.ttf") format("truetype"), url("../_fonts/onramp-webfont.svg#ONRAMPRegular") format("svg");
  font-weight: normal;
  font-style: normal;
}

h1 {
  max-width: 636px;
  margin: 0 auto;
  font: normal 1.23077em/150% Arial, Helvetica, Verdana, sans-serif;
  color: #000;
  text-align: center;
  display: inline;
}
@media (min-width: 420px) {
  h1 {
    font: normal 1.46154em/150% Arial, Helvetica, Verdana, sans-serif;
  }
}

h2, h3, h4, h5 {
  font-weight: normal;
}

h4 {
  font: 24px/137% "alternate-gothic-no-3-d", Arial, Helvetica, Verdana, sans-serif;
  margin-bottom: 20px;
}

.p-txt {
  text-align: left;
  font: 300 14px/182% "superclarendon", Georgia, Times, Times New Roman, serif;
  color: #ccc;
}
@media (min-width: 600px) {
  .p-txt {
    font-size: 18px;
  }
}

.topper-txt-mod {
  max-width: 900px;
  margin: 0 auto;
  vertical-align: middle;
}

.topper-h2 {
  font: 36px/145% "alternate-gothic-no-3-d", Arial, Helvetica, Verdana, sans-serif;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  border: 6px solid;
  border-color: #fff;
  width: 100%;
  margin: 0 auto;
  padding: 10px 30px;
}
@media (min-width: 600px) {
  .topper-h2 {
    font-size: 75px;
    border: 7px solid;
  }
}

.topper-h3 {
  font: 24px/137% "alternate-gothic-no-3-d", Arial, Helvetica, Verdana, sans-serif;
  text-align: left;
  letter-spacing: 1px;
  color: #fff;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 25px;
}
@media (min-width: 600px) {
  .topper-h3 {
    font-size: 37px;
  }
}

.alt-h2 {
  text-align: left;
  text-indent: -0.35em;
  border: 0px;
  width: auto;
  font: 24px/140% "alternate-gothic-no-3-d", Arial, Helvetica, Verdana, sans-serif;
  color: #333;
}
@media (min-width: 600px) {
  .alt-h2 {
    font: 39px/130% "alternate-gothic-no-3-d", Arial, Helvetica, Verdana, sans-serif;
  }
}
@media (min-width: 900px) {
  .alt-h2 {
    font: 43px/130% "alternate-gothic-no-3-d", Arial, Helvetica, Verdana, sans-serif;
  }
}

.attribution {
  font: 22px/140% "alternate-gothic-no-3-d", Arial, Helvetica, Verdana, sans-serif;
  text-align: center;
  color: #555;
  margin-top: 12px;
}
@media (min-width: 600px) {
  .attribution {
    font: 30px/140% "alternate-gothic-no-3-d", Arial, Helvetica, Verdana, sans-serif;
  }
}

.wf-inactive .tour-cities li {
  font-family: Arial, Helvetica, Verdana, sans-serif;
  font-size: 15px;
  font-weight: bold;
}

.title-mod {
  margin: 0 auto;
}

.btn-txt {
  margin-top: 40px;
  text-align: center;
  font: 22px/140% "alternate-gothic-no-3-d", Arial, Helvetica, Verdana, sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ============================================= */
/*	Nav					   			             */
/* ============================================= */
.nav {
  background-color: #000;
  padding: 6px;
  width: 500px;
  position: fixed;
  top: 0px;
  z-index: 2000;
  margin: 0 auto;
  text-align: center;
  left: 0px;
  right: 0px;
}

.nav-mod {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.nav-item {
  display: inline;
  color: #b4b558;
  margin-right: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font: 15px/145% "alternate-gothic-no-3-d", Arial, Helvetica, Verdana, sans-serif;
}
.nav-item:last-child {
  margin-right: 0px;
}
.nav-item img {
  max-width: 15px;
}

.nav-side {
  position: fixed;
  top: 172px;
  right: 25px;
  z-index: 2000;
  display: none;
}
@media (min-width: 800px) {
  .nav-side {
    display: block;
    right: 35px;
  }
}

#nav-side-mod {
  position: relative;
  opacity: 0;
}

.fadein-nav {
  animation: fadein-2 2.5s;
  -webkit-animation: fadein-2 2.5s;
  -webkit-animation-fill-mode: forwards;
}

.show-nav-immediately {
  animation: fadein-fast 0.1s;
  -webkit-animation: fadein-fast 0.1s;
  -webkit-animation-fill-mode: forwards;
}

.nav-side-item {
  position: relative;
}

.nav-side-item {
  position: relative;
}

.nav-side-item a {
  border: 2px solid;
  border-color: #FDD63D;
  width: 15px;
  height: 15px;
  margin-bottom: 20px;
  -webkit-border-radius: 90px;
  -moz-border-radius: 90px;
  -ms-border-radius: 90px;
  -o-border-radius: 90px;
  border-radius: 90px;
  display: block;
}
.nav-side-item a:hover {
  background-color: #FDD63D;
}

.anchorlink {
  text-indent: 400000px;
}

.nav-side-item:after {
  border-right: 2px solid #FAB149;
  content: '\0020';
  height: 22px;
  position: absolute;
  left: 7px;
  margin-top: 15px;
  top: 0px;
}
.nav-side-item:after:last-child {
  border-right: 0px;
}

.nav-side-item:last-child:after {
  border-right: 0px;
}

.nav-side-item.active {
  background-color: #FDD63D;
  -webkit-border-radius: 90px;
  -moz-border-radius: 90px;
  -ms-border-radius: 90px;
  -o-border-radius: 90px;
  border-radius: 90px;
}

.nav-hit-area {
  width: 20px;
  height: 20px;
  display: block;
}

nav.menu {
  position: fixed;
  z-index: 10;
  right: 30px;
  top: 240px;
}

nav.menu ul.navigation li:last-child:after {
  border: none !important;
}

nav.menu ul.navigation li {
  list-style: none;
  margin: 24px 0;
  position: relative;
}

@media (max-width: 768px) {
  nav.menu ul.navigation li {
    text-indent: -9999px;
  }
}
nav.menu ul.navigation li:after {
  border-right: 2px solid #d1b271;
  content: '';
  height: 24px;
  position: absolute;
  left: 7px;
}

nav.menu ul.navigation li a {
  color: #d1b271;
  display: block;
  padding: 5px;
  border: 2px solid #d1b271;
  border-top-left-radius: 100px;
  border-top-right-radius: 100px;
  border-bottom-left-radius: 100px;
  border-bottom-right-radius: 100px;
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px;
  -webkit-transition: all 0.15s ease-in-out;
  -moz-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}

nav.menu ul.navigation li.active a, nav.menu ul.navigation li:hover a {
  border-color: #ed8d6c;
  background: #ed8d6c;
  border-top-left-radius: 100px;
  border-top-right-radius: 100px;
  border-bottom-left-radius: 100px;
  border-bottom-right-radius: 100px;
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px;
}

nav.menu ul.navigation li.active span, nav.menu ul.navigation li:hover span {
  color: #ed8d6c;
}

nav.menu ul.navigation li span {
  display: block;
  left: -100px;
  top: 1px;
  position: absolute;
  font-family: "proxima-nova-alt";
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: 0.625em;
}

/* ============================================= */
/*	Layout 							   			 */
/* ============================================= */
header {
  background-color: #FBF8EC;
  position: relative;
}

header:after {
  content: '\0020';
  background: url(../_img/grn-border-1.png) 50% 50%;
  display: block;
  height: 12px;
  width: 100%;
  position: absolute;
  bottom: 0px;
}

.wrapper {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  *zoom: 1;
  position: relative;
}
.wrapper:after {
  content: "";
  display: table;
  clear: both;
}
@media (min-width: 401px) {
  .wrapper {
    padding: 0 30px;
  }
}
@media (min-width: 800px) {
  .wrapper {
    max-width: 780px;
  }
}
@media (min-width: 1030px) {
  .wrapper {
    max-width: 960px;
  }
}

#banner img {
  max-width: 787px;
  width: 100%;
}

#banner-container {
  max-width: 787px;
  width: 100%;
  max-height: 525px;
  margin: 0 auto;
  margin-bottom: 18px;
}

.hdr-img-container {
  margin: 0 auto;
  display: block;
  max-width: 800px;
  width: 100%;
}

.hdr-img {
  max-width: 225px;
  margin-right: 20%;
  margin-bottom: 10px;
  width: 100%;
}
@media (min-width: 399px) {
  .hdr-img {
    width: 80%;
    max-width: 600px;
    margin-bottom: 15px;
    margin-right: 30px;
  }
}
@media (min-width: 1002px) {
  .hdr-img {
    width: 100%;
    max-width: 787px;
    margin-bottom: 15px;
    margin-right: 0px;
  }
}

.hdr-logo {
  text-indent: -5000px;
  display: block;
  font-size: 1px;
}

.tour-ribbon {
  position: absolute;
  max-width: 53px;
  width: 100%;
  top: 0;
  right: 2%;
  margin-top: -2px;
}
@media (min-width: 500px) {
  .tour-ribbon {
    position: absolute;
    max-width: 70px;
    width: 100%;
    top: 0;
    right: 2%;
  }
}
@media (min-width: 1000px) {
  .tour-ribbon {
    position: absolute;
    max-width: 90px;
    width: 100%;
    top: 0;
    right: 2%;
  }
}
@media (min-width: 1200px) {
  .tour-ribbon {
    position: absolute;
    max-width: 90px;
    width: 100%;
    top: 0;
    right: 10%;
  }
}

.hdr-bg {
  width: 100%;
  max-width: 787px;
  margin-bottom: 15px;
}

.hdr-pin {
  position: absolute;
  float: left;
  height: 100%;
  top: -2px;
  margin-left: 4px;
}

.hdr-pennant {
  background-image: url("../_img/hdr-bg.png");
}

.hdr-sign {
  position: relative;
  z-index: -100;
}

.hdr-map {
  position: relative;
}

.map {
  display: inline;
  position: relative;
  background-image: url("../_img/hdr-bg.png");
}
@media (min-width: 850px) {
  .map {
    display: none;
  }
}

.map-alt {
  display: none;
  position: relative;
}
@media (min-width: 850px) {
  .map-alt {
    display: inline;
  }
}

.hdr-rule {
  width: 100%;
  max-width: 787px;
  margin-bottom: 15px;
}

.hdr-cities {
  width: 100%;
  max-width: 787px;
  margin-bottom: 2px;
}

.tour-cities {
  padding-top: 12px;
  padding-bottom: 13px;
}
.tour-cities li {
  display: inline;
  font-family: "alternate-gothic-no-3-d", Arial, Helvetica, Verdana, sans-serif;
  color: #111;
  font-size: 25px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-right: 7px;
  line-height: 34px;
}
.tour-cities li:after {
  content: "•";
  margin-left: 7px;
  font-size: 20px;
}
.tour-cities li:last-child {
  margin-right: 0px;
}
.tour-cities li:last-child:after {
  content: "";
  margin-left: 0px;
}
.tour-cities li a {
  -webkit-transition: ease-in 0.2s all;
  -moz-transition: ease-in 0.2s all;
  -o-transition: ease-in 0.2s all;
  transition: ease-in 0.2s all;
}
.tour-cities li a:hover {
  color: #707121;
  -webkit-transition: ease-in 0.2s all;
  -moz-transition: ease-in 0.2s all;
  -o-transition: ease-in 0.2s all;
  transition: ease-in 0.2s all;
}

.rule-lrg {
  width: 100%;
}

.tour-map {
  width: 100%;
}

.slider-container {
  max-width: 787px;
  margin: 0 auto;
}

.cities-intro {
  display: none;
}
@media (min-width: 650px) {
  .cities-intro {
    display: block;
  }
}

.home-hdr {
  max-width: 960px;
  width: 95%;
  margin: 0 auto;
  text-align: center;
  position: absolute;
  z-index: 100;
  top: 34%;
  padding: 2px;
  left: 0px;
  right: 0px;
}
@media (min-width: 780px) {
  .home-hdr {
    width: 80%;
    top: 36%;
  }
}
@media (min-width: 900px) {
  .home-hdr {
    width: 85%;
    top: 36%;
  }
}
@media (min-width: 1100px) {
  .home-hdr {
    width: 90%;
  }
}

.home-hdr-img {
  border-color: #000;
  max-width: 950px;
  width: 100%;
  animation: fadein 3.75s;
  -webkit-animation: fadein 3.75s;
}

@-webkit-keyframes fadein {
  0% {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
  }

  50% {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
  }

  100% {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
  }
}

@-moz-keyframes fadein {
  0% {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
  }

  50% {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
  }

  100% {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
  }
}

/* ============================================= */
/*	About     			 			   			 */
/* ============================================= */
.about-topper {
  background: url(../_img/topper-about.jpg) center center no-repeat;
  height: 300px;
  padding: 0px 20px;
  background-size: cover;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media (min-width: 600px) {
  .about-topper {
    padding: 140px 70px;
    height: 682px;
    /*orig 732px*/
  }
}

#about {
  background-color: #000;
  padding-bottom: 25px;
  position: relative;
}
@media (min-width: 600px) {
  #about {
    padding-bottom: 60px;
  }
}

#about:after {
  content: '\0020';
  background: url(../_img/blk-border-1.png) 50% 50%;
  display: block;
  height: 12px;
  width: 100%;
  position: absolute;
  bottom: -10px;
  z-index: 4;
}

.about-intro {
  padding: 45px 20px 0px 20px;
  max-width: 800px;
}
@media (min-width: 700px) {
  .about-intro {
    padding: 45px 40px 0px 40px;
  }
}

/* ============================================= */
/*	Shows    			 			   			 */
/* ============================================= */
.shows-topper {
  background: url(../_img/topper-shows.jpg) center center no-repeat;
  height: 300px;
  padding: 0px 20px;
  background-size: cover;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media (min-width: 600px) {
  .shows-topper {
    padding: 140px 70px;
    height: 682px;
    /*orig 732px*/
  }
}

#shows {
  background-color: #FBF8EC;
  padding-bottom: 25px;
  position: relative;
}
@media (min-width: 600px) {
  #shows {
    padding-bottom: 60px;
  }
}

#shows:after {
  content: '\0020';
  background: url(../_img/tan-border-btm.png) 50% 50%;
  display: block;
  height: 11px;
  width: 100%;
  position: absolute;
  bottom: -11px;
  z-index: 1;
}

.shows-mod {
  margin-top: -80px;
}
@media (min-width: 600px) {
  .shows-mod {
    margin-top: -110px;
  }
}

.shows-inside-mod {
  padding-top: 40px;
}
.shows-inside-mod .shows-mod {
  margin-top: 0px;
}

.show-mod {
  max-width: 200px;
}

@media (min-width: 301px) and (max-width: 500px) {
  .show-grid-list {
    margin-left: -20px;
    *zoom: 1;
  }
  .show-grid-list:after {
    content: "";
    display: table;
    clear: both;
  }
  .show-grid-list .media-block {
    float: left;
    padding-left: 20px;
    width: 50%;
  }
  .show-grid-list .media-block:nth-child(2n+3) {
    clear: left;
  }
  .show-grid-list .media-block.n2 {
    clear: left;
  }
}
@media (min-width: 501px) and (max-width: 700px) {
  .show-grid-list {
    margin-left: -20px;
    *zoom: 1;
  }
  .show-grid-list:after {
    content: "";
    display: table;
    clear: both;
  }
  .show-grid-list .media-block {
    float: left;
    padding-left: 20px;
    width: 33.3333%;
  }
  .show-grid-list .media-block:nth-child(3n+4) {
    clear: left;
  }
  .ie7 .show-grid-list .media-block {
    width: 33%;
  }
  .show-grid-list .media-block.n3 {
    clear: left;
  }
}
@media (min-width: 701px) {
  .show-grid-list {
    margin-left: -20px;
    *zoom: 1;
  }
  .show-grid-list:after {
    content: "";
    display: table;
    clear: both;
  }
  .show-grid-list .media-block {
    float: left;
    padding-left: 20px;
    width: 25%;
  }
  .show-grid-list .media-block:nth-child(4n+5) {
    clear: left;
  }
  .show-grid-list .media-block.n4 {
    clear: left;
  }
}

@media (min-width: 701px) {
  .show-grid-last-row {
    margin-left: 25%;
  }
}

.show-item {
  max-width: 360px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 20px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 9px;
  -moz-box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 9px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 9px;
  border: 1px solid #EDEDED;
  position: relative;
  overflow: hidden;
  -webkit-transition: ease-in 0.2s all;
  -moz-transition: ease-in 0.2s all;
  -o-transition: ease-in 0.2s all;
  transition: ease-in 0.2s all;
}
.show-item:hover {
  -webkit-box-shadow: rgba(0, 0, 0, 0.3) 0px 3px 20px;
  -moz-box-shadow: rgba(0, 0, 0, 0.3) 0px 3px 20px;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 3px 20px;
}
.show-item:hover .show-caption {
  opacity: 1;
  bottom: 0;
}

.show-img-sm {
  width: 100%;
}

.show-caption {
  position: absolute;
  background: #000;
  color: #fff;
  width: 100%;
  padding: 10% 2%;
  opacity: 1;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  bottom: -50%;
  left: 0;
  font: normal 18px/100% "alternate-gothic-no-3-d", Arial, Helvetica, Verdana, sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ============================================= */
/*	Kind-Words    			 			   	     */
/* ============================================= */
.praise-topper {
  background: url(../_img/topper-praise.jpg) center center no-repeat;
  height: 300px;
  padding: 0px 20px;
  background-size: cover;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media (min-width: 600px) {
  .praise-topper {
    padding: 140px 70px;
    height: 682px;
    /*orig 732px*/
  }
}

#praise {
  background-color: #FBF8EC;
  padding-bottom: 25px;
  position: relative;
}
@media (min-width: 600px) {
  #praise {
    padding-bottom: 60px;
  }
}

#praise:after {
  content: '\0020';
  background: url(../_img/tan-border-btm.png) 50% 50%;
  display: block;
  height: 11px;
  width: 100%;
  position: absolute;
  bottom: -11px;
  z-index: 1;
}

.praise-mod {
  margin-top: 50px;
  padding: 10px;
}

.praise-item-mod {
  margin: 0 auto;
}
@media (min-width: 700px) {
  .praise-item-mod {
    margin-left: -100px;
    *zoom: 1;
  }
  .praise-item-mod:after {
    content: "";
    display: table;
    clear: both;
  }
  .praise-item-mod .media-block {
    float: left;
    padding-left: 100px;
    width: 33.3333%;
  }
  .praise-item-mod .media-block:nth-child(3n+4) {
    clear: left;
  }
  .ie7 .praise-item-mod .media-block {
    width: 33%;
  }
  .praise-item-mod .media-block.n3 {
    clear: left;
  }
}

.praise-item {
  margin-bottom: 50px;
}
@media (min-width: 700px) {
  .praise-item {
    margin-bottom: 25px;
  }
}

.praise-item-feat {
  margin-top: -80px;
  margin-bottom: 50px;
  background-color: #FFF;
  padding: 30px 40px 45px 40px;
  background: url(../_img/praise-paper.png) 0% 100%;
  position: relative;
  max-width: 900px;
  background-size: 571px;
  overflow: hidden;
  *zoom: 1;
  height: auto;
}
@media (min-width: 600px) {
  .praise-item-feat {
    padding: 60px 80px 85px 80px;
    background-size: 900px;
    margin-top: -110px;
  }
}
@media (min-width: 700px) {
  .praise-item-feat {
    *zoom: 1;
  }
  .praise-item-feat:after {
    content: "";
    display: table;
    clear: both;
  }
  .praise-item-feat > .ui-block-1,
  .praise-item-feat > .ui-block.first {
    width: 26%;
    display: inline;
    float: left;
  }
  .praise-item-feat > .ui-block-2,
  .praise-item-feat > .ui-block.second {
    width: 67%;
    display: inline;
    float: right;
    margin-right: 0;
  }
}

.praise-item-feat:after {
  content: '\0020';
  background: url(../_img/wht-border-btm.png) 50% 50%;
  display: block;
  height: 11px;
  width: 100%;
  position: absolute;
  bottom: -11px;
  z-index: 1;
  margin-left: -55px;
}
@media (min-width: 600px) {
  .praise-item-feat:after {
    margin-left: -80px;
  }
}

.praise-hero-img {
  max-width: 161px;
  width: 100%;
  margin-bottom: 5px;
  max-width: 210px;
}
@media (min-width: 700px) {
  .praise-hero-img {
    max-width: 200px;
    margin-bottom: 10px;
  }
}

.praise-img {
  max-width: 160px;
  width: 100%;
}

.praise-name {
  font: 25px/140% "alternate-gothic-no-3-d", Arial, Helvetica, Verdana, sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #31A3B3;
}

.praise-studio {
  font: 18px/140% "alternate-gothic-no-3-d", Arial, Helvetica, Verdana, sans-serif;
  color: #666;
  margin-bottom: 10px;
}

.praise-txt {
  text-align: left;
  line-height: 140%;
  font-size: 14px;
  max-width: 240px;
  margin: 0 auto;
}

/* ============================================= */
/*	Select Works    			 			   	 */
/* ============================================= */
.hits-topper {
  background: url(../_img/topper-posters.jpg) center center no-repeat;
  height: 300px;
  padding: 0px 20px;
  background-size: cover;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media (min-width: 600px) {
  .hits-topper {
    padding: 140px 70px;
    height: 682px;
    /*orig 732px*/
  }
}

#hits {
  background-color: #FBF8EC;
  padding-bottom: 60px;
  position: relative;
}

#hits:after {
  content: '\0020';
  background: url(../_img/tan-border-btm.png) 50% 50%;
  display: block;
  height: 11px;
  width: 100%;
  position: absolute;
  bottom: -11px;
  z-index: 1;
}

.hits-mod {
  margin-top: -80px;
}
@media (min-width: 600px) {
  .hits-mod {
    margin-top: -110px;
  }
}

/* ============================================= */
/*	Players    			 			   			 */
/* ============================================= */
#players {
  background-color: #000;
  padding-bottom: 60px;
  position: relative;
}

.players:after {
  content: '\0020';
  background: url(../_img/blk-border-1.png) 50% 50%;
  display: block;
  height: 11px;
  width: 100%;
  position: absolute;
  bottom: -11px;
  z-index: 1;
}

.players-topper {
  background: url(../_img/topper-players.jpg) center center no-repeat;
  height: 300px;
  padding: 0px 20px;
  background-size: cover;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media (min-width: 600px) {
  .players-topper {
    padding: 140px 70px;
    height: 682px;
    /*orig 732px*/
  }
}

.players-mod {
  margin-top: 50px;
}

.players-list-mod {
  background-color: #000;
  margin-top: -80px;
  padding-top: 30px;
}
@media (min-width: 600px) {
  .players-list-mod {
    margin-top: -110px;
  }
}

/* ============================================= */
/*	Contact   			 			   			 */
/* ============================================= */
.info-topper {
  background-color: #b4b558;
}

.contact {
  padding: 60px;
  position: relative;
  text-align: center;
  color: #fff;
  margin: 0 auto;
  background: url(../_img/npr-bg-cover.png) no-repeat -700px -430px;
  background-color: #171717;
  background-size: 1507px;
}
.contact .btn-submit a {
  max-width: 270px;
  width: 100%;
}

.contact:after {
  content: '\0020';
  background: url(../_img/blk-border-2.png) 50% 50%;
  display: block;
  height: 11px;
  width: 100%;
  position: absolute;
  bottom: -5px;
  z-index: 1;
}

.contact-mod {
  text-align: center;
  margin: 0 auto;
  max-width: 800px;
}
.contact-mod h3 {
  text-align: center;
  font-size: 37px;
}

/* ============================================= */
/*	Page Objects		 			   			 */
/* ============================================= */
.show-alert {
  margin: 0 auto;
  display: -webkit-box;
  -webkit-box-align: center;
  -moz-box-align: center;
}

.alert-txt {
  max-width: 250px;
  margin: 0 auto;
  color: #b4b558;
  margin-top: 10px;
  margin-bottom: 12px;
  animation: fadein-2 4.5s;
  -webkit-animation: fadein-2 4.5s;
}

.alert-txt a {
  padding: 6px 9px;
  display: block;
  background-color: #000;
  font-size: 10px;
}
.alert-txt a:hover {
  -webkit-transition: ease-in 0.2s all;
  -moz-transition: ease-in 0.2s all;
  -o-transition: ease-in 0.2s all;
  transition: ease-in 0.2s all;
  background-color: #514F23;
}
@media (min-width: 401px) {
  .alert-txt a {
    padding: 11px 14px;
    font-size: 12px;
  }
}

.social-mod {
  margin-top: 15px;
  animation: fadein-2 4.5s;
  -webkit-animation: fadein-2 4.5s;
  -webkit-animation-fill-mode: forwards;
}

@-webkit-keyframes fadein-2 {
  0% {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
  }

  75% {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
  }

  100% {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
  }
}

@-moz-keyframes fadein-2 {
  0% {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
  }

  75% {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
  }

  100% {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
  }
}

@-webkit-keyframes fadein-fast {
  0% {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
  }

  75% {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
    opacity: 0.5;
  }

  100% {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
  }
}

@-moz-keyframes fadein-fast {
  0% {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
  }

  75% {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
    opacity: 0.5;
  }

  100% {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
  }
}

.social-mod li {
  display: inline;
  margin-right: 8px;
}
.social-mod li img {
  max-width: 20px;
  width: 20px;
}
.social-mod li:hover {
  -webkit-transition: ease-in 0.2s all;
  -moz-transition: ease-in 0.2s all;
  -o-transition: ease-in 0.2s all;
  transition: ease-in 0.2s all;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  opacity: 0.5;
  border-bottom: 3px solid;
  padding-bottom: 3px;
}
.social-mod li:last-child {
  margin-right: 0px;
}

.scroll-arrow-mod {
  display: none;
  margin: 0 auto;
  text-align: center;
}
@media (min-width: 750px) {
  .scroll-arrow-mod {
    display: block;
    position: absolute;
    left: 50%;
    bottom: 8%;
    animation: fadein-2 4.5s;
    -webkit-animation: fadein-2 4.5s;
    -webkit-animation-fill-mode: forwards;
  }
}

.scroll-down {
  font-family: "alternate-gothic-no-3-d", Arial, Helvetica, Verdana, sans-serif;
  color: #111;
  font-size: 19px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.scroll-arrow {
  max-width: 19px;
  margin-top: 8px;
}

.twit-zone {
  background-color: #111;
  line-height: 1.5;
  padding-top: 60px;
  text-align: center;
  position: relative;
  padding-bottom: 60px;
}

.twit-zone:after {
  content: '\0020';
  background: url(../_img/blk-border-1.png) 50% 50%;
  display: block;
  height: 12px;
  width: 100%;
  position: absolute;
  bottom: -10px;
  z-index: 4;
}

.tweet-container {
  margin: 0 auto;
  margin-top: 10px;
  margin-bottom: 10px;
  text-align: left;
  max-width: 650px;
}

.twit-logo-img {
  max-width: 22px;
  width: 100%;
  display: inline;
  padding-top: 3px;
}

.twit-tar {
  max-width: 50px;
  float: left;
  margin: 0 10px 25px 0;
}
@media (min-width: 401px) {
  .twit-tar {
    max-width: 75px;
    margin: 0 20px 30px 0;
  }
}

#tweet {
  text-align: left;
  font-size: 15px;
  margin-top: 3px;
  color: #f5f0e6;
}
#tweet > ul > li {
  line-height: 1.3em;
}
#tweet > ul > li > a {
  color: #888;
}
#tweet > ul > li > a:hover {
  -webkit-transition: ease-in 0.2s all;
  -moz-transition: ease-in 0.2s all;
  -o-transition: ease-in 0.2s all;
  transition: ease-in 0.2s all;
  color: #b4b558;
}
@media (min-width: 500px) {
  #tweet {
    font-size: 17px;
    line-height: 23px;
  }
}

.twit-name {
  display: none;
}
@media (min-width: 420px) {
  .twit-name {
    text-align: left;
    font-weight: bold;
    font-size: 16px;
    color: #b4b558;
    display: inline;
  }
  .twit-name > a:hover {
    -webkit-transition: ease-in 0.2s all;
    -moz-transition: ease-in 0.2s all;
    -o-transition: ease-in 0.2s all;
    transition: ease-in 0.2s all;
    color: #7c7b3c;
  }
}

.twit-handle {
  display: inline;
  font-size: 16px;
  color: #b4b558;
}
.twit-handle > a:hover {
  -webkit-transition: ease-in 0.2s all;
  -moz-transition: ease-in 0.2s all;
  -o-transition: ease-in 0.2s all;
  transition: ease-in 0.2s all;
  color: #7c7b3c;
}

.slide {
  background-attachment: fixed;
  width: 100%;
  height: 100%;
  position: relative;
}

#intro {
  background-color: #b4b558;
  padding: 40px 0px;
  height: 100%;
  position: relative;
}
@media (min-width: 600px) {
  #intro {
    padding: 60px 0px;
  }
}
@media (min-width: 700px) {
  #intro {
    padding: 75px 0px;
  }
}
@media (min-height: 750px) {
  #intro {
    padding: 120px 0px;
  }
}
@media (min-height: 825px) {
  #intro {
    padding: 130px 0px;
  }
}
@media (min-height: 850px) {
  #intro {
    padding: 150px 0px;
  }
}
@media (min-height: 900px) {
  #intro {
    padding: 180px 0px;
  }
}
@media (min-height: 950px) {
  #intro {
    padding: 200px 0px;
  }
}
@media (min-height: 1000px) {
  #intro {
    padding: 260px 0px;
  }
}
@media (min-height: 1120px) {
  #intro {
    padding: 310px 0px;
  }
}

#intro:after {
  content: '\0020';
  background: url(../_img/grn-border-2.png) 50% 50%;
  display: block;
  height: 12px;
  width: 100%;
  position: absolute;
  bottom: -11px;
  z-index: 200;
}

.intro-img-container {
  margin: 0 auto;
  display: block;
  max-width: 650px;
  width: 100%;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=15);
  opacity: 0.15;
  position: relative;
  margin-top: -11px;
}

.intro-img {
  width: 100%;
  max-width: 650px;
  animation: fadein-3 2.25s;
  -webkit-animation: fadein-3 2.25s;
}

@-webkit-keyframes fadein-3 {
  0% {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
  }

  15% {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
  }

  100% {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
  }
}

@-moz-keyframes fadein-3 {
  0% {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
  }

  15% {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
  }

  100% {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
  }
}

.about-cont {
  max-width: 636px;
  text-align: center;
  margin: 0 auto;
}

.about-txt {
  margin: 0 auto;
  font: normal 1.46154em/150% Arial, Helvetica, Verdana, sans-serif;
  color: #fff;
  text-align: center;
  display: inline;
}

@media screen and (max-width: 420px) {
  .about-txt {
    font: normal 1.23077em/130% Arial, Helvetica, Verdana, sans-serif;
    width: 91%;
  }
}
.post-item-container {
  margin: 0 auto;
  text-align: center;
  padding-top: 60px;
}

.post-item {
  width: 29%;
  display: inline-block;
  margin-right: 6%;
  vertical-align: top;
  color: #000;
}

@media screen and (max-width: 775px) {
  .post-item {
    width: 39%%;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 600px) {
  .post-item {
    width: 76%;
    margin-right: 0px;
  }
  .post-item:last {
    margin-right: 0px;
    margin-bottom: 0px;
  }
}
@media screen and (max-width: 600px) {
  .post-item-single {
    width: 96%;
    margin-right: 0px;
    margin: 0 auto;
  }
}
.post-item.last {
  margin: 0px;
}

.post-item-single {
  margin-left: -gallery-show-cont;
  *zoom: 1;
}
.post-item-single:after {
  content: "";
  display: table;
  clear: both;
}
.post-item-single .media-block {
  float: left;
  padding-left: gallery-show-cont;
  width: 50%;
}
.post-item-single .media-block:nth-child(2n+3) {
  clear: left;
}
.post-item-single .media-block.n2 {
  clear: left;
}

.post-item-content-wht {
  color: #fff;
  font: normal 1.23077em/140% Arial, Helvetica, Verdana, sans-serif;
}

.post-item-content {
  font: normal 1.23077em/140% Arial, Helvetica, Verdana, sans-serif;
}

/*
.texture {
	background: url(../_img/poster-texture.png) 50% 50%;
	width: 100%;
	height: 100%;
	z-index: 100;
}
*/
.press-list {
  font: normal 1.23077em/150% Arial, Helvetica, Verdana, sans-serif;
  color: #fff;
}
.press-list:hover {
  color: #B4B558;
}

.tour-dates {
  background-color: #f5f0e6;
  padding-bottom: 60px;
  padding-top: 60px;
  position: relative;
  *zoom: 1;
}
.tour-dates:after {
  content: "";
  display: table;
  clear: both;
}

.tour-container {
  margin: 0 auto;
  text-align: center;
  max-width: 800px;
  margin-bottom: 40px;
}

.tour-dates:after {
  content: '\0020';
  background: url(../_img/blk-border-2.png) 50% 50%;
  display: block;
  height: 12px;
  width: 100%;
  position: absolute;
  bottom: -3px;
}

.post-item-title.green {
  color: #b4b558;
}

.post-item-title {
  /* 	border-bottom: 1px solid; */
  border-color: #fff;
  color: #fff;
  width: 100%;
  padding-bottom: 8px;
  font: normal 3.46154em/84% "ONRAMPRegular", helvetica, sans-serif;
  letter-spacing: .05em;
}

/*
.post-item-title:after {
	content: '\0020';
	display: block;
	background: url(../_img/wht-rule.png) 50% 50%;
	height: 5px;
	width: 100%;
	margin-top: 12px;
}
*/
@media screen and (max-width: 500px) {
  .post-item-title {
    width: 75%;
    margin: 0 auto;
    text-align: center;
    font-size: 35px;
  }
}
.post-item-title-blk {
  border-color: #000;
  color: #231f20;
  width: 100%;
  padding-bottom: 8px;
  font: normal 3.46154em/84% "ONRAMPRegular", helvetica, sans-serif;
  letter-spacing: .05em;
  /* 	margin-bottom: 20px; */
}

/*
.post-item-title-blk:after {
	content: '\0020';
	display: block;
	background: url(../_img/blk-rule.png) 50% 50%;
	height: 5px;
	width: 100%;
	margin-top: 12px;
}
*/
.post-item-wht-rule {
  display: block;
  background: url(../_img/wht-rule.png) 50% 50%;
  height: 5px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 20px;
}

.post-item-blk-rule {
  display: block;
  background: url(../_img/hdr-rule-single-bk.png) 50% 50%;
  height: 3px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 20px;
}

.post-item-grn-rule {
  display: block;
  background: url(../_img/hdr-rule-single.png) 50% 50%;
  height: 3px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 20px;
}

@media screen and (max-width: 600px) {
  .post-item-wht-rule {
    width: 57%;
  }
}
@media screen and (max-width: 600px) {
  .post-item-blk-rule {
    width: 75%;
  }
}
@media screen and (max-width: 600px) {
  .post-item-grn-rule {
    width: 57%;
  }
}
@media screen and (max-width: 500px) {
  .post-item-title-blk {
    width: 75%;
    margin: 0 auto;
    text-align: center;
    font-size: 35px;
  }
}
@media screen and (max-width: 500px) {
  .post-item-title-blk {
    width: 75%;
    margin: 0 auto;
    text-align: center;
  }
}
.players-container {
  margin: 0 auto;
  text-align: center;
  max-width: 1240px;
}

.link-list {
  display: inline-block;
  color: #B4B558;
  margin-right: 52px;
  max-width: 250px;
  width: 26%;
  text-align: left;
  font: normal 1.15385em/160% Arial, Helvetica, Verdana, sans-serif;
  vertical-align: top;
}

.sponsor-main-list {
  margin-bottom: 0px;
}
@media (min-width: 600px) {
  .sponsor-main-list {
    margin-bottom: 25px;
  }
}

.sponsor-main-item {
  max-width: 75px;
  width: 100%;
  display: inline;
  margin-right: 20px;
  position: relative;
}
.sponsor-main-item > a img {
  max-width: 75px;
  width: 100%;
}

.tooltip {
  position: absolute;
  width: 118px;
  height: 8px;
  line-height: 8px;
  padding: 5px 0px 11px 0px;
  font-size: 11px;
  text-align: center;
  color: white;
  background: #222222;
  border: 4px solid #222222;
  border-radius: 5px;
  text-shadow: rgba(0, 0, 0, 0.09804) 1px 1px 1px;
  box-shadow: rgba(0, 0, 0, 0.09804) 1px 1px 2px 0px;
  opacity: .95;
}

.tooltip:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-width: 9px;
  border-style: solid;
  border-color: #222 transparent transparent transparent;
  top: 17px;
  left: 45px;
}

.sponsors {
  background-color: #f5f0e6;
  line-height: 1.5;
  padding-top: 60px;
  text-align: center;
  position: relative;
  padding-bottom: 60px;
}

.sponsors:after {
  content: '\0020';
  background: url(../_img/blk-border-2.png) 50% 50%;
  display: block;
  height: 12px;
  width: 100%;
  position: absolute;
  bottom: -1px;
  z-index: 4;
}

.sponsor-list-tease {
  display: none;
}
@media (min-width: 600px) {
  .sponsor-list-tease {
    display: inline;
    color: #000;
    font: normal 1.19231em/160% Arial, Helvetica, Verdana, sans-serif;
  }
}

.sponsor-list {
  display: none;
}
@media (min-width: 600px) {
  .sponsor-list {
    display: inline;
    color: #000;
    font: normal 1.19231em/160% Arial, Helvetica, Verdana, sans-serif;
    display: none;
  }
}

.sponsor-list-item {
  display: inline;
  margin-right: 2px;
  white-space: nowrap;
}
.sponsor-list-item:after {
  content: '•';
  margin-left: 2px;
  color: #aaa;
}
.sponsor-list-item > a:hover {
  -webkit-transition: ease-in 0.2s all;
  -moz-transition: ease-in 0.2s all;
  -o-transition: ease-in 0.2s all;
  transition: ease-in 0.2s all;
  color: #B4B558;
}

.sponsor-trigger {
  display: none;
}
@media (min-width: 600px) {
  .sponsor-trigger {
    padding-top: 20px;
    border: 0px;
    background-color: transparent;
    color: #000;
    font: normal 1.15385em/160% Arial, Helvetica, Verdana, sans-serif;
    display: block;
    margin: 0 auto;
  }
  .sponsor-trigger:hover {
    -webkit-transition: ease-in 0.2s all;
    -moz-transition: ease-in 0.2s all;
    -o-transition: ease-in 0.2s all;
    transition: ease-in 0.2s all;
    color: #B4B558;
  }
}

.player-list-item:hover {
  color: #fff;
}

@media screen and (max-width: 573px) {
  .link-list {
    width: 73%;
    margin-right: 0px;
    text-align: center;
  }
}
.link-list.last {
  margin-right: 0px;
}

.image-container {
  margin: 0 auto;
  text-align: center;
  max-width: 795px;
  margin-bottom: 40px;
}

.image-gallery {
  padding-top: 25px;
  position: relative;
  text-align: center;
}
.image-gallery .gallery-wrapper {
  padding: 0;
  margin: 0 5%;
  text-align: center;
  *zoom: 1;
}
.image-gallery .gallery-wrapper:after {
  content: "";
  display: table;
  clear: both;
}
@media (min-width: 401px) {
  .image-gallery .gallery-wrapper {
    padding: 0;
  }
}
.image-gallery .photo-grid {
  margin: 0 auto;
  padding: 0px;
  width: 100%;
  text-align: center;
  position: relative;
  max-width: 1150px;
}
@media (min-width: 600px) {
  .image-gallery .photo-grid {
    width: 87%;
  }
}

.image-gallery:after {
  content: '\0020';
  display: block;
  height: 12px;
  width: 100%;
  position: absolute;
  bottom: -3px;
}

#photo-container {
  margin-bottom: 1.65%;
  margin: 0 auto;
  text-align: center;
}

.photo-grid-img {
  width: 100%;
  float: left;
}
.photo-grid-img:hover {
  opacity: 1;
  -webkit-transition: ease-in 0.05s all;
  -moz-transition: ease-in 0.05s all;
  -o-transition: ease-in 0.05s all;
  transition: ease-in 0.05s all;
}

.photo-grid-item {
  width: 18.7%;
  margin-right: 1.3%;
  margin-bottom: 1.3%;
  padding: 8px;
  background-color: #fafafa;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 9px;
  -moz-box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 9px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 9px;
  border: 1px solid #EDEDED;
  vertical-align: top;
  position: relative;
  display: inline-block;
  overflow: hidden;
}
.photo-grid-item:hover {
  -webkit-box-shadow: rgba(0, 0, 0, 0.3) 0px 3px 20px;
  -moz-box-shadow: rgba(0, 0, 0, 0.3) 0px 3px 20px;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 3px 20px;
}
.photo-grid-item:hover .photo-caption {
  opacity: 1;
  bottom: 0;
}

.photo-caption {
  position: absolute;
  background: #000;
  color: #fff;
  width: 100%;
  padding: 10% 2%;
  opacity: 1;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  bottom: -50%;
  left: 0;
  font: normal 1.53846em/100% "ONRAMPRegular", helvetica, sans-serif;
}

.photo-grid-item-last {
  margin-bottom: 25px;
}

@media screen and (max-width: 900px) {
  .photo-grid-item {
    width: 23.7%;
  }
}
@media screen and (max-width: 600px) {
  .photo-grid-item {
    width: 32%;
  }
}
@media screen and (max-width: 400px) {
  .photo-grid-item {
    width: 48.7%;
  }
}
@media screen and (max-width: 380px) {
  .photo-caption {
    display: none;
  }

  .post-item-title-blk {
    font: normal 2.23077em/80% "ONRAMPRegular", helvetica, sans-serif;
    letter-spacing: .05em;
  }

  .post-item-title {
    font: normal 2.23077em/80% "ONRAMPRegular", helvetica, sans-serif;
    letter-spacing: .05em;
  }
}
.photo-grid-item-name {
  overflow: hidden;
  text-align: center;
  margin: 0 auto;
  position: absolute;
  bottom: -10;
}

footer {
  background-color: #000;
  padding-top: 5px;
  padding-bottom: 100px;
  width: 100%;
}

.logo-grid {
  *zoom: 1;
  padding-left: 5%;
  padding-right: 5%;
  margin-bottom: 10px;
  text-align: center;
  margin-top: 100px;
}
.logo-grid:after {
  content: "";
  display: table;
  clear: both;
}
.logo-grid > .ui-block-1,
.logo-grid > .ui-block.first {
  width: 26.3%;
  display: inline;
  float: left;
  margin-right: 6%;
}
.logo-grid > .ui-block-2,
.logo-grid > .ui-block.second {
  width: 26.3%;
  display: inline;
  float: left;
  margin-right: 6%;
}
.logo-grid > .ui-block-3,
.logo-grid > .ui-block.last {
  width: 26.3%;
  display: inline;
  float: left;
  margin-right: 0;
}

@media screen and (max-width: 700px) {
  .logo-grid {
    margin-top: 60px;
  }
}
.logo-grid-item {
  display: inline-block;
  margin-right: 3%;
}
.logo-grid-item > a {
  display: block;
  text-align: center;
}

.logo-grid-item.last {
  margin-right: 0px;
}

.logo-icon {
  width: 98%;
  max-width: 55px;
}

.logo-icon-lg {
  width: 98%;
  max-width: 110px;
}

.gallery-show-cont {
  width: 100%;
  display: block;
  background-color: #fafafa;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 9px;
  -moz-box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 9px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 9px;
  border: 1px solid #ddd;
  position: relative;
  margin: 0 auto;
  margin-bottom: 35px;
  text-align: center;
  margin-top: 35px;
  z-index: 1;
  max-height: 479px;
}
.gallery-show-cont:hover {
  -webkit-box-shadow: rgba(0, 0, 0, 0.3) 0px 3px 20px;
  -moz-box-shadow: rgba(0, 0, 0, 0.3) 0px 3px 20px;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 3px 20px;
  border-color: #a2a2a2;
}
.gallery-show-cont:hover .gallery-info {
  -webkit-transition: ease-in 0.2s all;
  -moz-transition: ease-in 0.2s all;
  -o-transition: ease-in 0.2s all;
  transition: ease-in 0.2s all;
  width: 325px;
}
@media screen and (min-width: 573px) {
  .gallery-show-cont:hover .gallery-info {
    width: 370px;
  }
}
.gallery-show-cont:hover .gallery-info > p {
  display: none;
}
.gallery-show-cont:hover .gallery-more-info {
  display: block;
}

a.gallery-show-wrap {
  display: block;
}

.gallery-show-cont:before,
.gallery-show-cont:after {
  content: '';
  z-index: -1;
  position: absolute;
  left: 8%;
  bottom: 24px;
  width: 89%;
  height: 2%;
  -webkit-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  -webkit-transform: skew(-35deg) rotate(-4deg);
  -moz-transform: skew(-35deg) rotate(-4deg);
  -ms-transform: skew(-35deg) rotate(-4deg);
  -o-transform: skew(-35deg) rotate(-4deg);
  transform: skew(-35deg) rotate(-4deg);
}

.gallery-show-cont:after {
  left: auto;
  right: 8%;
  -webkit-transform: skew(35deg) rotate(4deg);
  -moz-transform: skew(35deg) rotate(4deg);
  -ms-transform: skew(35deg) rotate(4deg);
  -o-transform: skew(35deg) rotate(4deg);
  transform: skew(35deg) rotate(4deg);
}

.gallery-show-img {
  max-width: 900px;
  width: 100%;
  background-color: #fafafa;
  margin-bottom: -4px;
  height: auto;
}

.show-img {
  max-width: 900px;
  width: 100%;
  background-color: #fafafa;
  margin-bottom: -4px;
  height: auto;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 9px;
  -moz-box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 9px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 9px;
  border: 1px solid #ccc;
  z-index: 1;
  position: relative;
}

.show-img:before,
.show-img:after {
  content: '';
  z-index: -1;
  position: absolute;
  left: 8%;
  bottom: 24px;
  width: 89%;
  height: 2%;
  -webkit-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  -webkit-transform: skew(-35deg) rotate(-4deg);
  -moz-transform: skew(-35deg) rotate(-4deg);
  -ms-transform: skew(-35deg) rotate(-4deg);
  -o-transform: skew(-35deg) rotate(-4deg);
  transform: skew(-35deg) rotate(-4deg);
}

.show-img:after {
  left: auto;
  right: 8%;
  -webkit-transform: skew(35deg) rotate(4deg);
  -moz-transform: skew(35deg) rotate(4deg);
  -ms-transform: skew(35deg) rotate(4deg);
  -o-transform: skew(35deg) rotate(4deg);
  transform: skew(35deg) rotate(4deg);
}

.show-info-front {
  position: absolute;
  z-index: 2;
  right: 0;
  top: 136px;
  background: rgba(0, 0, 0, 0.85);
  width: 250px;
  height: 90px;
  padding: 15px 20px 70px 20px;
  margin: 0 auto;
  float: right;
  border-bottom: 12px solid;
  border-color: #000;
}
.show-info-front > p {
  color: #fff;
  line-height: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-color: #fff;
  padding: 0px 0px 10px 0px;
  font-size: 11px;
  float: left;
  text-align: left;
  margin-top: -2px;
}

.show-info-cont {
  padding: 50px;
  background-color: #fff;
  height: 480px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 9px;
  -moz-box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 9px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 9px;
  border: 1px solid #ccc;
  z-index: 1;
}
.show-info-cont a:hover {
  color: #b4b558;
}

.show-info {
  background-color: #fff;
  float: left;
  max-width: 300px;
  width: 100%;
  border-top: 3px solid;
  text-align: left;
  margin: 0px 60px 15px 0px;
}
.show-info > p {
  font-size: 22px;
  line-height: 30px;
}
.show-info > .city-name {
  font-size: 50px;
}

.show-details {
  background-color: #fff;
  float: left;
  max-width: 335px;
  width: 100%;
  border-top: 3px solid;
  text-align: left;
  padding-top: 15px;
}

.show-details-title {
  font-size: 15px;
  font-weight: bold;
}

.gallery-pin {
  text-align: center;
  margin: 0 auto;
  max-width: 760px;
  width: 100%;
  position: absolute;
  top: -18px;
}

.gallery-info-cont {
  margin: 0 auto;
  position: absolute;
  width: 100%;
}

.gallery-info {
  background: rgba(0, 0, 0, 0.85);
  width: 270px;
  height: 90px;
  position: relative;
  padding: 15px 20px 80px 30px;
  margin: 0 auto;
  float: left;
  margin-top: 12%;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  border-bottom: 12px solid;
  border-color: #000;
}
.gallery-info > p {
  color: #fff;
  line-height: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-color: #fff;
  padding: 0px 0px 10px 0px;
  font-size: 11px;
  float: left;
  text-align: left;
  margin-top: -2px;
}
@media (min-width: 500px) {
  .gallery-info {
    margin-top: 20%;
  }
}

.gallery-more-info {
  display: none;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 30px 0px 10px 0px;
  font-size: 10px;
}

.city-name {
  font: normal 22px/100% "alternate-gothic-no-3-d", Arial, Helvetica, Verdana, sans-serif;
  letter-spacing: 2px;
}
@media (min-width: 700px) {
  .city-name {
    font: normal 27px/100% "alternate-gothic-no-3-d", Arial, Helvetica, Verdana, sans-serif;
  }
}

.date-cont {
  max-height: 44px;
  max-width: 43px;
  width: 100%;
  height: 120%;
  background-color: #fff;
  float: left;
  margin-right: 15px;
}

.date-month {
  background-color: #000;
  color: #fff;
  font-size: 10px;
  height: 100%;
  max-height: 18px;
  padding-top: 2px;
  letter-spacing: 2px;
}

.date-day {
  color: #111;
  padding-top: 2px;
  font-size: 15px;
}

.gallery-info-alt {
  background: rgba(0, 0, 0, 0.85);
  border-radius: 50%;
  width: 206px;
  height: 206px;
  position: relative;
  padding: 60px 25px 40px 25px;
  margin: 0 auto;
  text-align: center;
}
.gallery-info-alt > p {
  color: #fff;
  line-height: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-top: 1px solid;
  border-bottom: 1px solid;
  border-color: #fff;
  padding: 10px 0px 10px 0px;
}

/* ! ============================================= */
/* ! Inside Pages				   				   */
/* ! ============================================= */
.hdr-inside {
  background-color: #000;
  padding: 60px 0px 60px 0px;
}

.event-details {
  background-color: #b4b558;
  position: relative;
  padding: 60px 0px 75px 0px;
  text-align: center;
  margin: 0 auto;
}

.event-details:after {
  content: '\0020';
  background: url(../_img/grn-border-2.png) 50% 50%;
  display: block;
  height: 12px;
  width: 100%;
  position: absolute;
  bottom: -10px;
  z-index: 10;
}

.event-details-title {
  font-size: 19px;
  font-weight: bold;
  padding-top: 12px;
}

.note-card-cont {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  height: auto;
  overflow: visible;
  max-height: 100%;
  margin-bottom: 50px;
}
@media (max-width: 760px) {
  .note-card-cont {
    max-height: 540px;
    overflow: hidden;
  }
}
@media (min-width: 760px) {
  .note-card-cont {
    -webkit-transform: rotate(-1deg);
    -moz-transform: rotate(-1deg);
    -ms-transform: rotate(-1deg);
    -o-transform: rotate(-1deg);
    transform: rotate(-1deg);
  }
}

.ticket {
  display: none;
}
@media (min-width: 760px) {
  .ticket {
    display: block;
    float: left;
    position: absolute;
    max-width: 189px;
    width: 100%;
    z-index: 1000;
    bottom: 9px;
    left: 24px;
  }
}

.event-info-cont {
  position: absolute;
  float: left;
  top: 0px;
  z-index: 4;
  padding: 35px;
  text-align: left;
  left: 0px;
  width: 100%;
  *zoom: 1;
}
.event-info-cont:after {
  content: "";
  display: table;
  clear: both;
}
.event-info-cont a:hover {
  color: #b4b558;
}
.event-info-cont p {
  font-size: 19px;
  line-height: 25px;
}
.event-info-cont .city-name {
  font-size: 32px;
}
@media (min-width: 760px) {
  .event-info-cont .city-name {
    font-size: 50px;
    margin-bottom: -5px;
  }
}
@media (min-width: 500px) {
  .event-info-cont {
    padding: 75px;
  }
}
@media (min-width: 760px) {
  .event-info-cont {
    padding: 45px 44px 45px 55px;
  }
  .event-info-cont p {
    font-size: 20px;
    line-height: 33px;
  }
}

.event-details-title {
  font-size: 16px;
}
@media (min-width: 420px) {
  .event-details-title {
    font-size: 19px;
  }
}

.event-info-main {
  max-width: 700px;
  width: 100%;
  float: left;
  border-bottom: 3px solid;
  border-color: #555;
  margin-bottom: 15px;
  padding-bottom: 20px;
}
@media (min-width: 760px) {
  .event-info-main {
    max-width: 300px;
    margin-right: 45px;
    border-bottom: 0px;
  }
}
.event-info-main .city-name {
  letter-spacing: 0px;
}

.event-info-deets {
  float: left;
  display: inline;
}
.event-info-deets p {
  font-size: 15px;
  line-height: 19px;
  margin-bottom: 10px;
}
@media (min-width: 420px) {
  .event-info-deets p {
    margin-bottom: 15px;
  }
}

.note-card {
  display: none;
}
@media (min-width: 760px) {
  .note-card {
    max-width: 700px;
    width: 100%;
    -webkit-box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 9px;
    -moz-box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 9px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 9px;
    position: relative;
    z-index: 2;
    display: block;
  }
}

.note-card-m {
  max-width: 760px;
  width: 100%;
  -webkit-box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 9px;
  -moz-box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 9px;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 9px;
  position: relative;
  z-index: 2;
  display: block;
}
@media (min-width: 760px) {
  .note-card-m {
    display: none;
  }
}

.note-card:before,
.note-card:after {
  content: '';
  z-index: -1;
  position: absolute;
  left: 8%;
  bottom: 24px;
  width: 89%;
  height: 2%;
  -webkit-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  -webkit-transform: skew(-35deg) rotate(-4deg);
  -moz-transform: skew(-35deg) rotate(-4deg);
  -ms-transform: skew(-35deg) rotate(-4deg);
  -o-transform: skew(-35deg) rotate(-4deg);
  transform: skew(-35deg) rotate(-4deg);
}

.note-card:after {
  left: auto;
  right: 8%;
  -webkit-transform: skew(35deg) rotate(4deg);
  -moz-transform: skew(35deg) rotate(4deg);
  -ms-transform: skew(35deg) rotate(4deg);
  -o-transform: skew(35deg) rotate(4deg);
  transform: skew(35deg) rotate(4deg);
}

.event-details-cont {
  position: absolute;
  float: left;
  top: 0px;
  z-index: 4;
}

.show-content {
  padding: 60px 0px 60px 0px;
  background-color: #f5f0e6;
  position: relative;
}
.show-content a {
  text-decoration: underline;
}

.show-content:after {
  content: '\0020';
  background: url(../_img/blk-border-2.png) 50% 50%;
  display: block;
  height: 12px;
  width: 100%;
  position: absolute;
  bottom: -3px;
}

.show-poster-mod {
  -webkit-box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 9px;
  -moz-box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 9px;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 9px;
  z-index: 15;
}

.show-poster {
  max-width: 800px;
  width: 100%;
  -webkit-box-shadow: 0px 3px 9px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 3px 9px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 3px 9px rgba(0, 0, 0, 0.2);
  z-index: 5;
  position: relative;
  margin: 0 auto;
  text-align: center;
  display: block;
  margin-bottom: 10px;
}
@media (min-width: 420px) {
  .show-poster {
    border-bottom: 0px;
  }
}

.show-poster:before,
.show-poster:after {
  content: '';
  z-index: -1;
  position: absolute;
  left: 8%;
  bottom: 24px;
  width: 89%;
  height: 2%;
  -webkit-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  -webkit-transform: skew(-35deg) rotate(-4deg);
  -moz-transform: skew(-35deg) rotate(-4deg);
  -ms-transform: skew(-35deg) rotate(-4deg);
  -o-transform: skew(-35deg) rotate(-4deg);
  transform: skew(-35deg) rotate(-4deg);
}

.show-poster:after {
  left: auto;
  right: 8%;
  -webkit-transform: skew(35deg) rotate(4deg);
  -moz-transform: skew(35deg) rotate(4deg);
  -ms-transform: skew(35deg) rotate(4deg);
  -o-transform: skew(35deg) rotate(4deg);
  transform: skew(35deg) rotate(4deg);
}

.show-meta {
  background-color: #fff;
  margin: 0 auto;
  max-width: 550px;
  padding: 10px 14px 13px 14px;
  margin-top: -15px;
  line-height: 22px;
  position: relative;
  -webkit-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  z-index: 1;
}
.show-meta a {
  text-decoration: underline;
}
@media (min-width: 420px) {
  .show-meta {
    padding: 20px;
  }
}

.show-meta:after {
  content: '\0020';
  background: url(../_img/meta-border.png) 50% 50%;
  display: block;
  height: 11px;
  width: 100%;
  position: absolute;
  bottom: -4px;
  left: 0px;
}

/* ! ============================================= */
/* ! CSS Animation				   				   */
/* ! ============================================= */
.bounce {
  position: relative;
  -webkit-animation: moveX 1s linear 0s infinite alternate, moveY 1s linear 0s infinite alternate;
  -moz-animation: moveX 1s linear 0s infinite alternate, moveY 1s linear 0s infinite alternate;
  -o-animation: moveX 1s linear 0s infinite alternate, moveY 1s linear 0s infinite alternate;
  animation: moveX 1s linear 0s infinite alternate, moveY 1s linear 0s infinite alternate;
}

@-webkit-keyframes moveY {
  from {
    top: 0;
  }

  to {
    top: 8px;
  }
}

@-moz-keyframes moveY {
  from {
    top: 0;
  }

  to {
    top: 8px;
  }
}

@-o-keyframes moveY {
  from {
    top: 0;
  }

  to {
    top: 8px;
  }
}

@keyframes moveY {
  from {
    top: 0;
  }

  to {
    top: 8px;
  }
}

.animated {
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 3s;
  -moz-animation-duration: 3s;
  -ms-animation-duration: 3s;
  -o-animation-duration: 3s;
  animation-duration: 3s;
}

.animated.hinge {
  -webkit-animation-duration: 2s;
  -moz-animation-duration: 2s;
  -ms-animation-duration: 2s;
  -o-animation-duration: 2s;
  animation-duration: 2s;
}

@-webkit-keyframes swing {
  20%, 40%, 60%, 80%, 100% {
    -webkit-transform-origin: top center;
  }

  20% {
    -webkit-transform: rotate(10deg);
  }

  40% {
    -webkit-transform: rotate(-10deg);
  }

  60% {
    -webkit-transform: rotate(5deg);
  }

  80% {
    -webkit-transform: rotate(-5deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
  }
}

@-moz-keyframes swing {
  20% {
    -moz-transform: rotate(10deg);
  }

  40% {
    -moz-transform: rotate(-10deg);
  }

  60% {
    -moz-transform: rotate(5deg);
  }

  80% {
    -moz-transform: rotate(-5deg);
  }

  100% {
    -moz-transform: rotate(0deg);
  }
}

@-o-keyframes swing {
  20% {
    -o-transform: rotate(10deg);
  }

  40% {
    -o-transform: rotate(-10deg);
  }

  60% {
    -o-transform: rotate(5deg);
  }

  80% {
    -o-transform: rotate(-5deg);
  }

  100% {
    -o-transform: rotate(0deg);
  }
}

@keyframes swing {
  20% {
    transform: rotate(10deg);
  }

  40% {
    transform: rotate(-10deg);
  }

  60% {
    transform: rotate(5deg);
  }

  80% {
    transform: rotate(-5deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

.swing {
  -webkit-transform-origin: top center;
  -moz-transform-origin: top center;
  -o-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  -moz-animation-name: swing;
  -o-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
  }
}

@-moz-keyframes spin {
  from {
    -moz-transform: rotate(0deg);
  }

  to {
    -moz-transform: rotate(360deg);
  }
}

@-ms-keyframes spin {
  from {
    -ms-transform: rotate(0deg);
  }

  to {
    -ms-transform: rotate(360deg);
  }
}

.btn-submit a {
  position: relative;
  color: white;
  text-decoration: none;
  background-color: #b4b558;
  display: block;
  padding: 10px 4px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  -webkit-box-shadow: 0px 4px 0px #868941, 0px 4px 20px rgba(0, 0, 0, 0.7);
  -moz-box-shadow: 0px 4px 0px #868941, 0px 74x 20px rgba(0, 0, 0, 0.7);
  box-shadow: 0px 4px 0px #868941, 0px 4px 20px rgba(0, 0, 0, 0.7);
  margin: 40px auto;
  width: 160px;
  text-align: center;
  -webkit-transition: all .1s ease;
  -moz-transition: all .1s ease;
  -ms-transition: all .1s ease;
  -o-transition: all .1s ease;
  transition: all .1s ease;
}
.btn-submit a:hover {
  -webkit-transition: ease-in 0.2s all;
  -moz-transition: ease-in 0.2s all;
  -o-transition: ease-in 0.2s all;
  transition: ease-in 0.2s all;
  background-color: rgba(180, 181, 88, 0.9);
}
.btn-submit a:active {
  -webkit-box-shadow: 0px 3px 0px #868941, 0px 3px 6px rgba(0, 0, 0, 0.9);
  -moz-box-shadow: 0px 3px 0px #868941, 0px 3px 6px rgba(0, 0, 0, 0.9);
  box-shadow: 0px 3px 0px #868941, 0px 3px 6px rgba(0, 0, 0, 0.9);
  position: relative;
  top: 4px;
}

/* ! ============================================= */
/* ! Media Queries							      */
/* ! ============================================= */
@media all and (orientation: portrait) {
  /* Style adjustments for portrait mode goes here */
}
@media all and (orientation: landscape) {
  /* Style adjustments for landscape mode goes here */
}
/* Grade-A Mobile Browsers (Opera Mobile, iPhone Safari, Android Chrome)  
   Consider this: www.cloudfour.com/css-media-query-for-mobile-is-fools-gold/ */
@media screen and (max-device-width: 480px) {
  /* Uncomment if you don't want iOS and WinMobile to mobile-optimize the text for you
     j.mp/textsizeadjust 
  html { -webkit-text-size-adjust:none; -ms-text-size-adjust:none; } */
}
/* ============================================= */
/*	Print Styles							     
	Inline to avoid required HTTP connection     */
/* ============================================= */
@media print {
  * {
    background: transparent !important;
    color: black !important;
    text-shadow: none !important;
    filter: none !important;
    -ms-filter: none !important;
  }

  /* Black prints faster: sanbeiji.com/archives/953 */
  a, a:visited {
    color: #444 !important;
    text-decoration: underline;
  }

  a[href]:after {
    content: " (" attr(href) ")";
  }

  abbr[title]:after {
    content: " (" attr(title) ")";
  }

  .ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after {
    content: "";
  }

  /* Don't show links for images, or javascript/internal links */
  pre, blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  thead {
    display: table-header-group;
  }

  /* css-discuss.incutio.com/wiki/Printing_Tables */
  tr, img {
    page-break-inside: avoid;
  }

  @page {
    margin: 0.5cm;
}

  p, h2, h3 {
    orphans: 3;
    widows: 3;
  }

  h2, h3 {
    page-break-after: avoid;
  }
}
