@import url(http://fonts.googleapis.com/css?family=Nunito:700|Carme);
@font-face {
	font-family: 'Myriad Pro Regular';
	font-style: normal;
	font-weight: normal;
	src: local('Myriad Pro Regular'), url('../fonts/MYRIADPRO-REGULAR.woff') format('woff');
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
	background-color: white;
}
div.outer {
	position: relative;
	min-width: 320px;
	margin: 0 auto;
}
/****************************************************************************/
/*     HEADER STUFF                                                         */
/****************************************************************************/
span.icon:before {
	font-family: 'Glyphicons Halflings';
	content: "\e003";
	font-size: 12px;
    display: inline-block;
    color: black;
}
form.search {
	display: inline-block;
}
div.search {
	display: block;
	background-color: #10fefe;
	width: 220px;
	border-radius: 12px;
	color: black;
	margin: 10px;
}
div.search input {
	display: inline;
	font-size: 12px;
	padding: 2px 0;
}
button.search {
	background-color: #10fefe;
	border: none;
}
button.search:hover {
	background-color: #10c0ff;
	border: none;
}
.label.search {
	padding: 5px;
	color: black;
	font-size: 12px;
}
div.top-menu ul {
	margin-top: 0px;
	margin-bottom: 0px;
	font-size: 0;
}
div.top-menu li {
	display: inline-block;
	list-style-type: none;
	margin: 0 5px;
}
div.top-menu a {
	display: inline-block;
	font-size: 12px;
	font-weight: bold;
	text-align: center;
	color: black;
	background-color: #10fefe;
	width: 88px;
	height: 33px;
	float: right;
	padding-top: 8px;
	border-bottom: none;
	border-radius: 10px 10px 0 0;
}
div.top-menu a:hover {
	color: white;
	text-decoration: none;
}
div.title1 {
	position: absolute;
	top: 20px;
	left: 10px;
	text-shadow: 10px 0 20px #888888, 3px 3px 1px black;
	font-size: 6rem;
	color: white;
	z-index: 2;
}
/****************************************************************************/
/*     CAROUSEL STUFF                                                       */
/****************************************************************************/
.container {
	position: relative;
	top: 0px;
	clear: both;
	padding: 0;
}
/****************************************************************************/
/*     VERTICAL TABS STUFF                                                  */
/****************************************************************************/
.tabs {
  position: relative;
  min-height: 300px;
}
.tab div {						/* the content area */
  position: absolute;
  top: 0px;
  left: 120px;
  padding: 1rem 5px;
  font-size: 1.0rem;
  font-family: carme, sans-serif;
  line-height: 1.1;
  height: 256px;
  overflow: auto;
  border-bottom: 2px solid #808080;
  /* transition: all 1s ease; */
 }
.tab label:hover {					/* highlights the tab text */
  color: white;
}
.tab label {			/* sets the style for each tab */
  position: relative;
  display: inline-block;
  top: 0px;
  width: 100px;
  height: 64px;
  min-width: 80px;
  padding-top: 18px;
  padding-bottom: 22px;
  background: #b0b0b0;
  text-decoration: none;
  font-family: nunito, sans-serif;
  font-size: 1.5em;
  color: black;
  text-align: center;
  margin-bottom: 0;			/* override bootstrap */
  /* transition: all .5s ease; */
}
.tab [type=radio] {
  display: none;
}
[type=radio]:checked ~ label {		/* all label elements following a checked radio button */
  background: #10fefe;
  display: inline-block;
}
[type=radio] ~ span {		/* all span elements following a checked radio button */
  position: absolute;
  display: inline-block;
  left: 100px;
  border-right: 20px solid white;
  border-left: 20px solid white;
  border-top: 30px solid white;
  border-bottom: 30px solid white;
}
[type=radio]:checked ~ span {		/* all span elements following a checked radio button */
  left: 100px;
  border-left: 20px solid #10fefe;
}
[type=radio]:checked ~ label ~ .content {
  z-index: 1;
}
[type=radio]:checked ~ label ~ .content > * {
  opacity: 1;

  -webkit-transform: translateX(0);
  -moz-transform:    translateX(0);
  -ms-transform:     translateX(0);
  -o-transform:      translateX(0);
}
.content {
  position: absolute;
  top:0;
  left: 169px;		/* sets the left position of the main body */
  background: white;
  right: 0;
  bottom: 0;
  padding: 20px;
  overflow: auto;
}
.content > * {		/* all elements whose parent is .content */
  opacity: 0.5;

  -webkit-transform: translate3d(0, 0, 0);

  -webkit-transform: translateX(-100%);
  -moz-transform:    translateX(-100%);
  -ms-transform:     translateX(-100%);
  -o-transform:      translateX(-100%);

  -webkit-transition: all 0.6s ease;
  -moz-transition:    all 0.6s ease;
  -ms-transition:     all 0.6s ease;
  -o-transition:      all 0.6s ease;
}
.tab h2 {
  font-family:'Myriad Pro Regular';
  font-size: 1.5rem;
  color: #ff5f01;
}
.content p {
  font-size: 1.25rem;
  padding-bottom: 10px;
  line-height: 1.1;	
}
/****************************************************************************/
/*     OVERLAY STUFF                                                        */
/****************************************************************************/
article.main {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}
div.about {
	position: relative;
	top: 50px;
	left: 10%;
	width: 80%;
	height: 500px;
	border: 1px solid red;
	background-color: white;
	overflow: auto;
	z-index: 5;
}
div.about h1 {
	position: relative;
	top: -20px;
	display: block;
	font-family: Gothic;
	font-size: 18px;
	font-weight: bold;
	margin: 0 20px;
    color: #ff5f01;
}
div.about p {
	font-size: 14px;
	font-family: carme, sans-serif;
	line-height: 1.1;
	margin: 0 20px;
}
.player {
	margin: 0.5em 2em;
	max-width: 80%;
}
div.location {
	position: relative;
	top: 50px;
	left: 10%;
	width: 80%;
	height: 500px;
	border: 1px solid red;
	background-color: white;
	overflow: auto;
	z-index: 5;
}
div.location h1 {
	position: relative;
	top: -20px;
	display: block;
	font-family: Gothic;
	font-size: 18px;
	font-weight: bold;
	margin: 0 20px;
    color: #ff5f01;
}
div.map {
	width: 100%;
	/* float: none; */
	height: 350px;
	border: 1px solid green;
}
#map {
	height: 88%;
}
div.contact {
	position: relative;
	top: 50px;
	left: 10%;
	width: 80%;
	height: 500px;
	border: 1px solid red;
	background-color: white;
	overflow: auto;
	font-family: Gothic;
	z-index: 5;
}
div.contact h1 {
	position: relative;
	top: -20px;
	display: block;
	font-family: Gothic;
	font-size: 18px;
	font-weight: bold;
	margin: 0 20px;
    color: #ff5f01;
}
.index-label {
	display: inline-block;
	width: 80px;
	line-height: 2.0;
	font-size: 14px;
	margin-left: 10px;
}
.btn-close {
	position: relative;
	left: 85%;
	margin-top: 10px;
	z-index: 20;
}
@media screen and (min-width:720px)
 {
	div.outer {
		width: 720px;
		margin: 0 auto;
	}
	div.top-menu {
		float: right;
	}
	div.top-menu ul {
		margin-top: 15px;
		margin-bottom: 0px;
		font-size: 0;
	}
	.tab h2 {
	  font-size: 4.0rem;
	}	
	.tab div {						/* the content area */
		  left: 28%;
		  padding: 1rem 5px;
		  font-size: 1.0rem;
		  line-height: 1.1;
		  height: 384px;
	 }
	.tab label {			/* sets the style for each tab */
		width: 25%;
		height: 96px;
		min-width: 140px;
		padding-top: 25px;
		padding-bottom: 29px;
		font-size: 24px;
	}
	.content {
		left: 28%;		/* sets the left position of the main body */
		width: 72%
	}
	.content p {
		font-size: 1.8rem;
	}
	[type=radio] ~ span {		/* all span elements following a checked radio button */
		left: 25%;
		border-right: 20px solid white;
		border-left: 20px solid white;
		border-top: 30px solid white;
		border-bottom: 30px solid white;
	}
	[type=radio]:checked ~ span {		/* all span elements following a checked radio button */
		left: 25%;
		border-right: 20px solid white;
		border-left: 20px solid #10fefe;
		border-top: 48px solid white;
		border-bottom: 48px solid white;
}
	div.about {
		height: 800px;
	}
	div.about h1 {
		font-size: 20px;
		font-weight: bold;
		margin: 0 20px;
	}
	div.about p {
		font-size: 16px;
		font-family: carme, sans-serif;
		line-height: 1.1;
	}
}