/*
 * Based on HTML5 Boilerplate thanks to Nicolas Gallagher, Jonathan Neal Kroc Camen, and the H5BP dev community and team.
 */
.rounded-corners {
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}
.rounded-corners-t {
	-webkit-border-radius: 5px 5px 0 0;
	-moz-border-radius: 5px 5px 0 0;
	border-radius: 5px 5px 0 0;
}
.rounded-corners-b {
	-webkit-border-radius: 0 0 5px 5px;
	-moz-border-radius: 0 0 5px 5px;
	border-radius: 0 0 5px 5px;
}
.rounded-corners-tbr {
	-webkit-border-radius: 0 5px 5px 5px;
	-moz-border-radius: 0 5px 5px 5px;
	border-radius: 0 5px 5px 5px;
}


/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html,
button,
input,
select,
textarea {
	color:#000;
}

body {
	font-size: 1em;
	line-height: 1.4;
}

.imgClass { max-width: 230px; width: 100%; height: auto; margin-bottom:30px}

/*
 * Remove text-shadow in selection highlight: h5bp.com/i
 * These selection declarations have to be separate.
 * Customize the background color to match your design.
 */

::-moz-selection {
	background: #b3d4fc;
	text-shadow: none;
}

::selection {
	background: #b3d4fc;
	text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

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

/*
 * Remove the gap between images and the bottom of their containers: h5bp.com/i/440
 */

img {
	vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
	border: 0;
	margin: 0;
	padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
	resize: vertical;
}

blockquote {
	margin: 1em 0;
	border-left: 2px solid #ccc;
	padding-left: 1em;
}

/* ==========================================================================
   Chrome Frame prompt
   ========================================================================== */

.chromeframe {
	margin: 0.2em 0;
	background: #ccc;
	color: #000;
	padding: 0.2em 0;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */

* { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; }


body {
	background: #eee;
}
html, button, input, select, textarea {
	font-family: sans-serif;
}
.grid-1, .grid-2, .grid-3, .grid-4, .grid-5, .grid-6, .grid-7, .grid-8, .grid-9, .grid-10, .grid-11, .grid-12 {
	width: 100%;
	padding: 0 2em;
}
.container {
	max-width: 700px;
	margin: 0 auto;
}
section {
	clear: both;
}
.menu {
	display: none;
}

.page-title-link {
	max-width: 100%;
}
.event-banner-image {
	display: none;
}
.container.page-content-container {
	background: #fff;
	margin-bottom: 1em;
}
.intro {
	clear: both;
}
.venue {
	margin-bottom: 0;
	float: left;
	width: 100%;
}
.date {
	float: left;
	margin-top: 0;
	width: 100%;
}

.ticket-selection {
	width: 100%;
	font-size: 0.9em;
}
.ticket-selection td,
.ticket-selection th {
	padding: 0.5em;
}

.ticket-selection th {
	text-align: left;
	border-bottom: 1px solid #ccc;
	white-space: nowrap;
}
.ticket-selection tfoot td {
	border-top: 1px solid #ccc;
}
.ticket-selection td.ticket-discription {
	text-align: left;
	padding-top: 0;
}
.ticket-selection select{
	width: 100%;
}
.user-details-hidden {
	display: none;
}
.user-details .f-l {
	width: 100%;
	margin-bottom: 0.5em;
}
.user-details input[type="text"],
.user-details input[type="email"] {
	width: 100%
}
.user-details button {
	float: right;
}
.form-date select {
	float: left;
	width: 30%;
	margin-right: 3%;
}
.form-gender .pure-radio {
	width: 40%;
	float: left;
}
.form-address {
	clear: left;
	width: 100%;
}

button,
.pure-form button {
	color: #000;
	font-weight: bold;
	background: #ccc;
	-webkit-box-shadow: 0 6px rgba(0,0,0,0.5);
	box-shadow: 0 6px  rgba(0,0,0,0.5);
	border: none;
	padding: 0.5em 1em;
	margin-top: 0px;
	margin-bottom: 3px;

	-webkit-border-radius: 4px;
	border-radius: 4px;
	background-clip: padding-box;

}

button:hover,
.pure-form button:hover {
	-webkit-box-shadow: 0 3px rgba(0,0,0,0.5);
	box-shadow: 0 3px  rgba(0,0,0,0.5);
	margin-top: 3px;
	margin-bottom: 0px;
}

.pure-form .button-margin {
	margin-right: 10px;
}

/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Image replacement
 */

.ir {
	background-color: transparent;
	border: 0;
	overflow: hidden;
	/* IE 6/7 fallback */
	*text-indent: -9999px;
}

.ir:before {
	content: "";
	display: block;
	width: 0;
	height: 150%;
}

/*
 * Hide from both screenreaders and browsers: h5bp.com/u
 */

.hidden {
	display: none !important;
	visibility: hidden;
}

/*
 * Hide only visually, but have it available for screenreaders: h5bp.com/v
 */

.visuallyhidden {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}

/*
 * Extends the .visuallyhidden class to allow the element to be focusable
 * when navigated to via the keyboard: h5bp.com/p
 */

.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
 */

.invisible {
	visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

.clearfix:before,
.clearfix:after {
	content: " "; /* 1 */
	display: table; /* 2 */
}

.clearfix:after {
	clear: both;
}

/*
 * For IE 6/7 only
 * Include this rule to trigger hasLayout and contain floats.
 */

.clearfix {
	*zoom: 1;
}

/*
 * Padding/Margin controls
 */

/* no padding top */
.n-p-t {
	padding-top: 0;
}
.n-p-b {
	padding-bottom: 0;
}
.n-p-tb {
	padding-top: 0;
	padding-bottom: 0;
}
.n-m-t {
	margin-top: 0;
}
.n-m-b {
	margin-bottom: 0;
}
.n-m-tb {
	margin-top: 0;
	margin-bottom: 0;
}

/*
 * Float controls
 */
.f-l {
	float: left;
}
.f-r {
	float: right;
}

.lt-ie9 {
	.docs-side-nav .icon-file,
	.docs-example .icon-console{
		display: none;
	}
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   Theses examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (max-width: 720px) {
	/* Mobile(ish) _only_ */
	/* ==========================================================================
	   Helper classes
	   ========================================================================== */

	.mobile-hidden {
		display: none;
	}
	.tablet-only,
	.desktop-only {
		display: none;
	}
}

@media only screen and (min-width: 720px) {
	/* Tablet(ish) and above */
	.grid-1, .grid-2, .grid-3, .grid-4, .grid-5, .grid-6, .grid-7, .grid-8, .grid-9, .grid-10, .grid-11, .grid-12 {
		float: left;
	}
	.grid-1 {
		width: 8.33%;
	}
	.grid-2 {
		width: 16.67%;
	}
	.grid-3 {
		width: 25%;
	}
	.grid-4 {
		width: 33.33%;		
	}
	.grid-5 {
		width: 41.67%;
	}
	.grid-6 {
		width: 50%;
	}
	.grid-7 {
		width: 58.33%;
	}
	.grid-8 {
		width: 66.67%;
	}
	.grid-9 {
		width: 75%;
	}
	.grid-10 {
		width: 83.33%;
	}
	.grid-11 {
		width: 91.67%;
	}
	.grid-12 {
		width: 100%;
	}
	.event-banner-image {
		display: block;
		
	}
	.button,
	.button:link,
	.button:visited{		
		margin-left: 0;
		margin-right: 0;
		display: inline-block;
		text-align: left;
	}

	.venue {
		margin-bottom: 1.33em;
		width: auto;
	}
	.date {
		float: right;
		margin-top: 1.33em;
		width: auto;
	}
	.form-date select {
		float: left;
		width: 25%;
		margin-right: 1em;
	}

	.user-details .f-l {
		width: 50%;
		margin-bottom: 0.5em;
	}
	.user-details input[type="text"],
	.user-details input[type="email"] {
		width: 90%
	}
	.user-details .form-date,
	.user-details .form-gender {
		width: 50%;
	}
	.menu {
		display: block;
		margin: 0;
		text-align: center;
	}
	.menu li {
		margin: 1em 0;
		display: inline-block;
		padding: 0 1em;
		border-right: 1px solid #fff;

	}
	.menu li:last-child {
		border-right: none;
	}
}

@media only screen and (min-width: 720px) and (max-width: 979px) {
	/* Tablet(ish) _only_ */

	body {
		font-size: 0.8em;
		padding: 0;
	}
	.container {
		width: 700px;
		margin: 0 auto;
	}

	/* ==========================================================================
	   Helper classes
	   ========================================================================== */

	.tablet-hidden {
		display: none;
	}
	.mobile-only,
	.desktop-only {
		display: none;
	}

}
@media only screen and (min-width: 980px){
	/* Desktop(ish) and above */
	body {
		padding: 0;
	}
	.container {
		width: 960px;
		max-width: 960px;
		margin: 0 auto;
	}	

	/* ==========================================================================
	   Helper classes
	   ========================================================================== */

	.desktop-hidden {
		display: none;
	}
	.mobile-only,
	.tablet-only {
		display: none;
	}
}

@media print,
	   (-o-min-device-pixel-ratio: 5/4),
	   (-webkit-min-device-pixel-ratio: 1.25),
	   (min-resolution: 120dpi) {
	/* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid required HTTP connection: h5bp.com/r
   ========================================================================== */

@media print {
	* {
		background: transparent !important;
		color: #000 !important; /* Black prints faster: h5bp.com/s */
		box-shadow: none !important;
		text-shadow: none !important;
	}

	a,
	a:visited {
		text-decoration: underline;
	}

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

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

	/*
	 * Don't show links for images, or javascript/internal links
	 */

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

	pre,
	blockquote {
		border: 1px solid #999;
		page-break-inside: avoid;
	}

	thead {
		display: table-header-group; /* h5bp.com/t */
	}

	tr,
	img {
		page-break-inside: avoid;
	}

	img {
		max-width: 100% !important;
	}

	@page {
		margin: 0.5cm;
	}

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

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


