@charset "UTF-8";
/* CSS Document */

/* General styles
-------------------------------------------------- */

a {
	color: #0f0e0f;
}

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

hr.blackline {
	border-top-color:#000;
}

/* primary headings, e.g. event detail event title, event tile event title, series title */
.heading-main {
	margin: 0 0 10px;
	/*font: 34px "FranklinGothic ExtraCond", "Helvetica Neue", Helvetica, Arial, sans-serif;*/
	font-size: 52px;
	line-height: 52px;
	font-family: "franklin-gothic-ext-comp-urw", Helvetica, Arial, sans-serif;
	font-weight: 700;
	text-transform: uppercase;
}

.heading-series {
	margin: 0 0 10px;
	color: #fb2d37;
	font: italic 20px "CheltenhamLT BookCondItalic", Georgia, "Times New Roman", serif;
}

.divider {
	height: 30px;
	margin: 0 7px;
	padding: 0;
	border-top: 1px solid #000;
}

.divider.bottom {
	height: 7px;
	border-color: #d4d4d4;
}

/* Speech bubble styles
-------------------------------------------------- */

/* DEFAULT - buy tickets */

.speech-bubble {
	position: relative;
	display: inline-block;
	margin-bottom: 10px;
	padding: 4px 15px 2px;
	background-color: #f41226;
	color: #fff;
	font-size: 16px;
	letter-spacing: 0.04em;
	vertical-align: middle;
	font-family: "nyt-cheltenham", Georgia, serif;
	font-style: italic;
	font-weight: 700;
}

.speech-bubble:hover {
	background-color: #000;
	color: #fff;
	text-decoration: none;
}

.speech-bubble:active {
	opacity: 0.6;
}

.triangle {
	position: absolute;
	z-index: -10;
	height: 0;
	width: 0;
	bottom: -9px;
	left: 6px;
	border-style: solid;
	border-color: transparent;
	border-width: 0 0 9px 9px;
}

.speech-bubble .triangle {
	border-left-color: #f41226;
}

.speech-bubble:hover .triangle {
	border-left-color: #000;
}

/* PAST/SOLDOUT - past and sold out events */

/*.past .speech-bubble, .soldout .speech-bubble {
	background-color: #fff;
}

.past .speech-bubble .triangle, .soldout .speech-bubble .triangle {
	border-left-color: #fff;
}

.past .speech-bubble:hover, .soldout .speech-bubble:hover {
	background-color: #f41226;
}

.past .speech-bubble:hover .triangle, .soldout .speech-bubble:hover .triangle {
	border-left-color: #f41226;
}

.past .speech-bubble:active, .soldout .speech-bubble:active {
	opacity: 1.0;
	background-color: #cb0f20;
}

.past .speech-bubble:active .triangle, .soldout .speech-bubble:active .triangle {
	opacity: 1.0;
	border-left-color: #cb0f20;
}*/

/* ALTERNATE - something other than buy tickets */

.speech-bubble.alternate{
	background-color: #fff;
	color: #f41226;
}

.speech-bubble.alternate .triangle {
	border-left-color: #fff;
}

.speech-bubble.alternate:hover {
	background-color: #f41226;
	color: #fff;
}

.speech-bubble.alternate:hover .triangle {
	border-left-color: #f41226;
}

.speech-bubble.alternate:active {
	opacity: 1.0;
	background-color: #cb0f20;
}

.speech-bubble.alternate:active .triangle {
	opacity: 1.0;
	border-left-color: #cb0f20;
}

/* FEATURED/CALENDAR - featured event or homepage calendar */

/*.featured-event .speech-bubble {
	margin-top: 30px;
}

.featured-event .speech-bubble, .event-calendar .speech-bubble {
	background-color: #000;
	border: 1px solid #fff;
}

.featured-event .speech-bubble:hover, .event-calendar .speech-bubble:hover {
	color: #fff;
}

.featured-event .speech-bubble:active, .event-calendar .speech-bubble:active {
	opacity: 0.6;
}

.featured-event .triangle, .event-calendar .triangle {
	border-left-color: #fff;
}

.featured-event .triangle.inner, .event-calendar .triangle.inner {
	z-index: -5;
	bottom: -6px;
	left: 7px;
	border-left-color: #000;
}*/

/* EVENT STATUS - "Sold Out" speech bubble in top-left corner of tiles */

.event-status {
	display: none;
	position: absolute;
	top: 0;
	width: 78px;
	height: 72px;
	padding: 10px;
	background-color: #000;
	color: #fff;
	text-align: left;
	font-size: 26px;
	line-height: 22px;
	font-family: "nyt-cheltenham", Georgia, serif;
	font-style: italic;	
	font-weight: 100;
}

	.soldout .event-status, .exclusivestream .event-status {
		display: block;
	}

.event-status span {
	color: #f41226;
	font-size: 20px;
	font-weight: 400;
}

.event-status .triangle {
	z-index: 100;
	border-width: 0 9px 9px 0;
	border-right-color: #000;
}

/* EVENT STATUS ALTERNATE */

.event-status.alternate {
	background-color: #f41226;
	color: #fff;
}

.event-status.alternate span {
	color: #fff;
}

.event-status.alternate .triangle {
	border-right-color: #f41226;
}

/* EVENT STATUS ALTERNATE */

.event-status.alternate.wide {
	padding: 10px;
	width: 130px;
}

.event-status.alternate.wide span {
	font-size: 24px;
	line-height: 24px;
	font-weight: 100;
}

/* Header styles
-------------------------------------------------- */

.page-header {
  background: #000;
  margin-top: 0px;
  margin-bottom: 0px;
  padding-top: 13px;
  padding-bottom: 0;
  border-bottom: none;
}

.page-header > .container {
	max-width: 1173px;
	margin: 0 auto;
}

/*.page-header .col-md-3, .page-header .col-md-4, .page-header .col-md-5 {
	padding: 0 7px;
}
*/

.page-header .col-sm-9, .page-header .col-md-3, .page-header .col-sm-3 {
	padding: 0;
}

.page-header .col-md-6 {
	padding: 0 7px;
}

.page-header .col-md-6.tagline {
	margin: 10px 0;
}

.page-header img {
		max-width: 100%;
	}

.page-header-social {
	text-align: right;
	margin: 10px 0;
	padding: 0 7px;
}

.social-icon {
	display: inline-block;
	height: 34px;
	width: 34px;
	margin-left: 8px;
	background: url('../images/sprite-social-icons.png') no-repeat 0 0;
}

.social-icon:hover {
	background-position: 0 -34px;
}

.social-icon:active {
	background-position: 0 -68px;
}

.social-icon.tw {
	background-position: -34px 0;
}

.social-icon.tw:hover {
	background-position: -34px -34px;
}

.social-icon.tw:active {
	background-position: -34px -68px;
}

.social-icon.yt {
	background-position: -68px 0;
}

.social-icon.yt:hover {
	background-position: -68px -34px;
}

.social-icon.yt:active {
	background-position: -68px -68px;
}

.info-page .social-icon {
	height: 51px;
	width: 51px;
	margin: 0 7px;
	background: url('../images/sprite-social-icons-lg.png') no-repeat 0 0;
}

.info-page .social-icon:hover {
	background-position: 0 -51px;
}

.info-page .social-icon:active {
	background-position: 0 -102px;
}

.info-page .social-icon.tw {
	background-position: -51px 0;
}

.info-page .social-icon.tw:hover {
	background-position: -51px -51px;
}

.info-page .social-icon.tw:active {
	background-position: -51px -102px;
}

.info-page .social-icon.yt {
	background-position: -102px 0;
}

.info-page .social-icon.yt:hover {
	background-position: -102px -51px;
}

.info-page .social-icon.yt:active {
	background-position: -102px -102px;
}

@media (min-width: 768px) {

	.page-header {
	  margin-bottom: 14px;
	}

	.page-header-social {
		margin-top: 87px;
	}
}

@media (min-width: 992px) {
	.page-header .col-md-6, .page-header .col-md-6.tagline {
		height: 95px;
		margin: 0;
		padding: 0 7px;
	}

	.tagline img {
		margin-top: 66px;
	}

	.page-header-social {
		margin-top: 45px;
	}
}

/*.tagline {
	margin-top: 66px;
}*/

/* the Email Form */ 

#nav-plus {
	max-width: 1173px;
	margin: 0 auto 7px;
}

#nav-main {
	margin:6px 0;
	padding: 0 7px;
	text-align:center;
}

#nav-main a {
  margin: 0 5px;	
  margin: 0;
  padding: 0;	
  font-size:38px; 
  line-height: 38px;
  text-transform:uppercase; 
  font-family: "franklin-gothic-ext-comp-urw", Helvetica, Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}

#nav-main a.active {
	color: #f41226;
}

#email-box {
	padding: 0 7px;
	text-align: center;
}

.emailCollect {
	height: 52px;
	background: #fff;
	top: 16px;
	right: 0;
	z-index: 100;
}

.emailField {
	vertical-align: bottom;
	width:80%;
	max-width: 400px;	
	padding-left:5%; 
	height: 52px;
	margin: 0;
	border: 1px solid #333;
	border-radius: 0; /* override some browser user-agent stylesheets rounding corners */
	color: #999;
	font-size: 14px;
	font-family: "nyt-cheltenham", Georgia, serif;
	font-style: italic;
}

.emailCollect .submit {
	vertical-align: bottom;
	position:relative;
	background-color: #fb2d37;
	-moz-border-radius: 0px;
	-webkit-border-radius: 0px;
	border-radius:0px;
	color: #fff;
	font-family: 'franklin-gothic-urw-comp';
	font-size: 30px;
	text-decoration: none;
	cursor: poiner;
	border:none;
	width:52px;
	height:52px;
	padding: 0;
	text-align:center;
	border: 1px solid #000;
	border-left:none;
	margin-left:0;
}

.emailCollect .submit:hover {
	background-color: #000;
}

.emailCollect .submit:active {
	background-color: #717071;
}

.emailCollect .submit.alternate {
	width:52px;  
	background:#fff;
	border: none;
	color:#fb2d37;
	font-size:20px; 
	line-height: 24px;
	text-transform:uppercase; 
	font-family: "franklin-gothic-ext-comp-urw", Helvetica, Arial, sans-serif;
	font-weight: 700;
	letter-spacing: 0.02em;
}

.emailCollect .submit.alternate:hover {
	color: #000;
	cursor:pointer; 
}

.emailCollect .submit.alternate:active {
	color: #717071;
}

/* end of Email */ 

@media (min-width: 640px) {
	.emailField {
		font-size: 16px;
	}
}

@media (min-width: 768px) {
/*	#nav-main {
 		padding-right: 5%;
 		padding-left: 5%;
	}
*/
	.col-sm-4 {
		padding: 0 7px;
	}

	#email-box {
		text-align: right;
	}
}

@media (min-width: 992px) {
	/*#nav-main {
 		padding-right: 10%;
 		padding-left: 10%;
	}*/
}


/* Sticky footer styles
-------------------------------------------------- */

html,
body {
  height: 100%;
  /* The html and body elements cannot have any padding or margin. */
}

/* Wrapper for page content to push down footer */
#wrap {
  min-height: 100%;
  height: auto !important;
  height: 100%;
  /* Negative indent footer by its height */
  margin: 0 auto -200px;
  /* Pad bottom by footer height */
  padding: 0 0 200px;
}

/* Set the fixed height of the footer here */
#footer {
  height: 200px;
  padding-top: 23px;
  background-color: #fff;
}

/* Other footer styles
-------------------------------------------------- */

#footer > .container {
	margin: 0 auto;
}

#footer .col-sm-3, #footer .col-sm-9 {
	padding: 0 7px;
}

p.disclaimer {
	font-family: "nyt-cheltenham", Georgia, serif;
	font-style: italic;
}


#footer ul {
	display: block;
	margin: 20px 0;
	padding: 0;
	position: relative;
	
}

#footer ul li {
	margin: 0 10px 10px 0;
	padding: 0 10px 0 0;
	position: relative;
	list-style: none;	
}

#footer li a {
	font-size: 18px;
	font-family: "franklin-gothic-ext-comp-urw", Helvetica, Arial, sans-serif;
	font-weight: 700;
	color: #000;
	text-transform: uppercase;	
}

#footer ul li:last-of-type {
	border: none;
	text-decoration:none;
}

#footer ul li a:hover {
	color: #f41226;
	text-decoration:none;
}

.footer-sponsors {
	margin: 14px 0;
	text-align: center;
}

.footer-sponsors-title {
	margin-top: 0;
	font-size: 16px;
	font-family: "nyt-cheltenham", Georgia, serif;
	font-weight: 700;
	font-style: italic;
}

@media (min-width: 768px) {

	#footer ul {
		height: 30px;
		margin-bottom: 0;
		text-align: center;
	}
	
	#footer ul li {
		margin: 0 10px 0 0;
		float: left;
		border-right: 1px solid #fb2d37;
	}

	#footer .footer-disclaimer-container {
		padding-right: 14px;
		border-right: 1px solid #121212;
	}

	.footer-sponsors {
		margin: 0;
	}
}


/* Custom page CSS
-------------------------------------------------- */
/* Not required for template or sticky footer method. */


.container {
	padding: 0;
	max-width: 1173px;
}

.row {
	margin: 0;
}

#header > .container {
	padding: 0;
	max-width: 1280px;
}

.noShow {
	display:none;
}
