﻿.container {
		position:    absolute;
		margin: 0px;
		top:-10px;
	

	width: calc(100% - 10px);
	height: calc(100% + 10px);
	
	padding: 0px;
	overflow-x:hidden;
	overflow-y: visible;
	
}
.splitlayout {
	position: absolute;
	overflow-x: hidden;
	min-height: 100%;
	width: 100%;
		overflow:hidden;

}
/* Intro sides */
.side {
	position: fixed;
	top: 0;
	z-index: 100;
	width: 50%;
	height: 100%;
	text-align: center;
	-webkit-backface-visibility: hidden;

}
.open-left .side, .open-right .side {
	cursor: default;
}
.overlay {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 499;
	visibility: hidden;
	width: 100%;
	height: 100%;
	opacity: 0;
}
.side-left .overlay {
	background: rgba(0,0,0,0.7);
}
.side-right .overlay {
	background: rgba(0,0,0,0.3);
}
.side-left {

	left: 0;
	background: #47a3da;
	color: #fff;
	outline: 1px solid #47a3da; /* avoid gap */
}
.side-right {
	right: 0;

	background: #fff;
	color: #47a3da;
	outline: 1px solid #fff; /* avoid gap */
}
#bottons {
	z-index: 99;

	top: 340px;
	position: absolute;
 text-align:left;	
	 right:17px;

}
#bottons a {
	background: #47a3da;
	color: #fff;
	box-shadow: -10px 10px 10px rgba(0,0,0,0.05);

 	padding: 0.1em 0.3em 0.3em 1em;
	font-size: 1em;
	margin: 0.2em 0;

	float:none;
	clear:both;
	width: 180px;;

		display:block;
		border-top-left-radius: 10px;
 border-bottom-left-radius : 10px;
	
}
.botton:hover {
	background: #47a3da;
	color: black;
}
#coaches a {
	background: #47a3da;
	color: #fff;
	text-shadow: -5px 5px 5px rgba(0,0,0,0.2);
	box-shadow: -10px 10px 10px rgba(0,0,0,0.2);
	display: inline-block;
	padding: 0.2em 1em;
	right: 0px;
	top: 300px;
	position: absolute;
	font-size: 1.5em;
	
}
/* Intro content, profile image and name, back button */
.intro-content {
	position: absolute;
	top: 57%;
	left: 50%;
	padding: 0 1em;
	width: 50%;
	cursor: pointer;
	-webkit-transform: translateY(-50%) translateX(-50%);
	transform: translateY(-50%) translateX(-50%);
}
.profile {
	margin: 0 auto;
}
.profile img {
	max-width: 100%;
}
.intro-content h1 > span {
	display: block;
	white-space: normal;
	text-align: center;
	text-shadow: -7px 7px 7px rgba(0,0,0,0.2);
	letter-spacing: 7px;
}
.intro-content h1 > span:first-child {
	font-weight: 300;
	font-size: 1.5em;
	text-align: center;
}
.intro-content h1 > span:nth-child(2):before {
	position: absolute;
	top: 0;
	left:0px;
	width: 100%;
	height: 2px;
	background: #fff;
	content: '';
}
.intro-content h1 > span:nth-child(2) {
	position: relative;
	margin-top: 0.5em;
	padding: 0.8em;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 0.5em;
}
.intro-content h1 > span:nth-child(3) {
	 display:inline-block;
	position: relative;
	margin-top: 0.5em;
	padding: 0.6em  1em ;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 0.4em;

	border-radius: 10px;
	box-shadow: -1px 1px 1px rgba(0,0,0,0.8);
	color: white;
	border: 2px solid rgba(255,255,255,0.9);
	background: rgba(255,255,255,0.4);
}
.side-right  .intro-content h1 > span:nth-child(3) {
	display:inline-block;
	position: relative;
	margin-top: 0.5em;
	padding: 0.6em  1em ;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 0.4em;

	border-radius: 10px;
	box-shadow: -1px 1px 1px rgba(0,0,0,0.8);
	color: #47a3da;
	border: 2px solid rgba(71,163,218,0.9);
	background: rgba(255,255,255,0.4);
	
	
}
.side-right .intro-content h1 > span:nth-child(2):before {
	background: #47a3da;
}
.back {
	position: fixed;
	top: 6em;
	z-index: 500;
	display: block;
	visibility: hidden;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	color: #47a3da;
	text-align: center;
	font-size: 22px;
	line-height: 44px;
	opacity: 0;
	pointer-events: none;
}
.mobile-layout .back {
	/* fixed positioning will make this not clickable after scrolling on some mobile devices */
	position: absolute;
}
.back-left {
	left: 12.5%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}
.back-right {
	right: 12.5%;
	-webkit-transform: translateX(50%);
	transform: translateX(50%);
	color: #fff;
	background-color:#47a3da;
  
}
.open-right .back-left, .open-left .back-right {
	visibility: visible;
	opacity: 1;
	-webkit-transition-delay: 0.3s;
	transition-delay: 0.3s;
	pointer-events: auto;
	text-decoration: none;
	top: 200px;
	font-size: 2.5em;
	font-weight: bolder;
}
.back:hover {
	color: #ddd;
}
/* Pages */
.page {
	position: relative;
	overflow: auto;
	min-height: 100%;
	width: 75%;
	height: auto;
	font-size: 1.4em;
	-webkit-backface-visibility: hidden;
}
.page-right {
	left: 25%;

	outline: 5px solid #ecf0f1; /* avoid rounding gaps */;
	background: #ecf0f1;
	color: #97a8b2;
	-webkit-transform: translateX(100%);
	transform: translateX(100%);


}
.splitlayout.open-right {
	background: #ecf0f1;
}
.page-left {
	left: 0;
	background: white;
	color: #47a3da;
	text-align: left;
	-webkit-transform: translateX(-100%);
	transform: translateX(-100%);
}
.splitlayout.open-left {
	background: white;
}
/* Inner page content */
.page-inner {
	padding: 1em;

}
.page-inner .onecol-style tr:nth-child(odd) { background-image:url('../../share/transparent_png/black10.png')}
.page-inner .onecol-style {
	text-align: left;
	text-transform: uppercase;
	border-collapse : collapse;
}
.page-inner .onecol-style td {
	border-top: 1px solid #ccc;
	padding: 2px 7px;
}
.onecol-style tr:hover td {
	background: #FFF;
	color: black;
}
.page-inner section {
	padding-bottom: 1em;
}
.page-inner h2 {
	font-size: 0.9em;
	color: #47a3da;
	text-shadow: -5px 5px 5px rgba(0,0,0,0.1);
}
.page-inner h3 {
	font-size: 0.7em;
}

.page-inner b {
	font-size: 0.8em;
	color: #47a3da;
	text-shadow: -5px 5px 5px rgba(0,0,0,0.2);
}
.page-left .page-inner p {
	font-size: 0.6em;
	color: gray;
}
.page-left .page-inner img {
	float: right;
}
.page-right .page-inner p {
	font-size: 0.6em;
	color: black;
}
.page-right .page-inner img {
	float: right;
}
/* All transitions */
.side, .page {
	-webkit-transition: -webkit-transform 0.6s;
	transition: transform 0.6s;
}
.overlay {
	-webkit-transition: opacity 0.6s, visibility 0.1s 0.6s;
	transition: opacity 0.6s, visibility 0.1s 0.6s;
}
.intro-content {
	-webkit-transition: -webkit-transform 0.6s, top 0.6s;
	transition: transform 0.6s, top 0.6s;
}
.intro-content h1, .back {
	-webkit-transition: opacity 0.3s;
	transition: opacity 0.3s;
}
/* Open and close */
/* We need to set the position and overflow for the respective page scroll */
.reset-layout .page, .splitlayout.open-right .page-left, .splitlayout.open-left .page-right, .splitlayout.close-right .page-left, .splitlayout.close-left .page-right {
	position: absolute;
	overflow: hidden;
	height: 100%;
}
.splitlayout.open-right .page-right, .splitlayout.open-left .page-left {
	position: relative;
	overflow: auto;
	height: auto;
}
.open-right .side-left .overlay, .open-left .side-right .overlay {
	visibility: visible;
	opacity: 1;
	-webkit-transition: opacity 0.6s;
	transition: opacity 0.6s;
}
/* Right side open */
.open-right .side-left {
	-webkit-transform: translateX(-60%);
	transform: translateX(-60%);
}
.open-right .side-right {
	z-index: 200;
	-webkit-transform: translateX(-150%);
	transform: translateX(-150%);
}
.close-right .side-right {
	z-index: 200;
}
.open-right .side-right .intro-content {
	-webkit-transform: translateY(-50%) translateX(0%) scale(0.6);
	transform: translateY(-50%) translateX(0%) scale(0.6);
}
.open-right .page-right {
	-webkit-transform: translateX(0%);
	transform: translateX(0%);
}
/* Left side open */
.open-left .side-right {
	-webkit-transform: translateX(60%);
	transform: translateX(60%);
}
.open-left .side-left {
	z-index: 200;
	-webkit-transform: translateX(150%);
	transform: translateX(150%);
}
.close-left .side-left {
	z-index: 200;
}
.open-left .side-left .intro-content {
	-webkit-transform: translateY(-50%) translateX(-100%) scale(0.6);
	transform: translateY(-50%) translateX(-100%) scale(0.6);
}
.open-left .codropsheader {
	opacity: 0;
	visibility: hidden;
	-webkit-transition: opacity 0.3s, visibility 0.1s 0.3s;
	transition: opacity 0.3s, visibility 0.1s 0.3s;
}
.open-left .page-left {
	-webkit-transform: translateX(0%);
	transform: translateX(0%);
}
