@import url(http://fonts.googleapis.com/css?family=Roboto);

body {
  height: 2000px;
  font-family: Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.row{
    margin-bottom:30px
}

h1, h2 {
  text-align: center;
}

h1 {
  color: #222;
}

ul {
    margin-bottom: 2em;
}

img.charts, img.diagram {
    display: block;
     margin-top: 2em;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2em;
}

figcaption {
    margin-top: 0.5em;
    margin-bottom: 1.5em;
    float: right;
    font-style: italic;
    background: rgba(0,0,0,0.1);
    padding: 7px;
    border-radius: 4px;
}

.emphasis{
	font-style:italic;
	margin:1em 2em;
}

.bullets img {
    width: 75%;
    display: block;
    margin-left: auto;
    margin-right: auto;
	padding-bottom: 1em;
	max-width:600px
}

div.icon{
    height: 10em;
	margin-top: 2em;
   position: relative
}
.icon img {
	float:left;
	max-width:100px;
}
.icon p {
      margin: 0;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    margin-left: 8em;
    font-size: large;
}

.support img {
    width: 75%;
    display: block;
    max-width: 400px;
    float: right;
    padding: 10px 10px;
}

.btn {
    background: #666;
	float: right;
}

.btn:hover {
    background: #000;
	color:#eee
}

.header {
    background-image: url(../images/section5/preparation-sport.jpg);
    background-size: cover;
    margin: 0px;
    width: 100%;
    height: 30em;
    background-position: center;
	}
	
.question {
    background: #333;
    padding: 1em;
	    margin-bottom: 3em;
}

.question.OnGrey {
    background: #333;
    padding: 1em;
	color:white;
}


nav#menu {

  background: #5c6bc0;
  text-align: center;
  height: 50px;
  width: 100%;
  border-bottom:10px solid #fff;
  font-size:8pt;
}

nav#menu ul {
  padding: 0;
  background: white;
  margin: 0 auto;
  display: inline-block;
  height: 50px;
}

nav#menu ul li {
  float: left;
  padding: 0 20px;
  background: #5c6bc0;
  list-style: none;
  margin-right: 5px;
  line-height: 50px;
  height: 50px;
  border-bottom:10px solid #fff;;
  
  /*
   * This element will get an alternative style
   * once we apply the "scrolled" class.
   * We also want a nice animation so we can
   * simply set CSS3 transitions for this.
   */
  transition: margin 0.1s ease-in-out;
}

nav#menu ul li:nth-child(1) {
  margin-left: 5px;
}

nav#menu ul li:hover {
  border-bottom:solid 10px #666;
}

nav#menu ul li.active {
  background: #343B64;
  border-bottom:solid 10px #bbb;
}

nav#menu ul li a {
  color: white;
  text-decoration: none;
  font-size: 1.3em;
}

nav#menu h1#sitename {
  font-size: 1.2em;
  line-height: 50px;
  margin: 0;
  position: absolute;
  left: 0.5em;
  color: white;
  opacity: 0;
  
  /*
   * Same thing here as with the menu items.
   * This element will be animated into its
   * alt. state with the transition property
   */
  transition: opacity 0.1s ease-in-out;
}


/*********************************************
 * Once the 'scrolled' class is toggled 
 * we can set any alternative styling that we
 * want for the menu bar 
 *********************************************/

nav#menu.scrolled {
  margin: 0;
  position: fixed;
  top: 0;
  z-index:10;
}

nav#menu.scrolled ul li {
  margin: 0;
}

nav#menu.scrolled h1#sitename {
  opacity: 1;
}


section {
  padding-top: 40px;
  min-height: 1200px;
  width: 100%;
  background-color:#CCCCCC;
  color: black}
  section .content {
    margin: 0px auto;
    max-width: 100%; }	

section:nth-child(odd) {
  background-color: #343B64;
  color: white; }
  section:nth-child(odd) a {
    color: white; }
	
	
section h2 {
    text-align: left;
}	
	
/*===============================================*/	
	

.perspective {
  -webkit-perspective: 76em;
          perspective: 76em;
  -webkit-perspective-origin: 50% 50px;
          perspective-origin: 50% 50px;
  width: 494px;
  margin: 0 auto;
  color: #fff;
  text-align: center;
}

input {
  display: none;
}

.tab {
  position: absolute;
  width: 80px;
  height: 70px;
  background: pink;
  right: -85px;
  line-height: 70px;
  font-weight: 300;
}
.tab:nth-child(1) {
  top: -5px;
  background: #000000;
}
.tab:nth-child(2) {
  top: 71px;
  background: #333333;
}
.tab:nth-child(3) {
  top: 146px;
  background: #666666;
}

.cube {
  position: relative;
  margin: 10px -130px 40px;
  width: 300px;
  height: 200px;
  -webkit-transform-origin: 0 100px;
          transform-origin: 0 100px;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-transition: -webkit-transform 0.5s ease-in;
  transition: -webkit-transform 0.5s ease-in;
  transition: transform 0.5s ease-in;
  transition: transform 0.5s ease-in, -webkit-transform 0.5s ease-in;
}

.tab-content {
    width: 600px;
    height: 200px;
    position: absolute;
}
.tab-content h1 {
  font-size: 25px;
  margin: 15px 0 10px;
  font-weight: 300;
  color: #fff;
}
.tab-content p {
  font-size: 12px;
  margin: auto 10px;
  text-align: left;
}

.tab-content:nth-child(1) {
  -webkit-transform: rotateX(-270deg) translateY(-100px);
          transform: rotateX(-270deg) translateY(-100px);
  -webkit-transform-origin: top left;
          transform-origin: top left;
  background: #000000;
}
.tab-content:nth-child(2) {
  -webkit-transform: translateZ(100px);
          transform: translateZ(100px);
  background: #333333;
}

.tab-content:nth-child(3) {
  -webkit-transform: rotateX(-90deg) translateY(100px);
          transform: rotateX(-90deg) translateY(100px);
  -webkit-transform-origin: bottom center;
          transform-origin: bottom center;
  background: #666666;
}

#tab-top:checked ~ .cube {
  -webkit-transform: rotateX(-90deg);
          transform: rotateX(-90deg);
}

#tab-front:checked ~ .cube {
  -webkit-transform: rotateX(0deg);
          transform: rotateX(0deg);
}

#tab-bottom:checked ~ .cube {
  -webkit-transform: rotateX(90deg);
          transform: rotateX(90deg);
}
	
/*===============================================*/		
	
.modal-content {
    color: #000;
    padding: 1em;
    margin-top: 12em;
}	
	



/*===============================================*/		

table {
    background: #666;
    margin: auto;
    margin-bottom: 2em;
	cursor:  url('../images/open-table.ico'), default;
	}

th, td {
    border: solid 1px white;
    padding: 10px;
}

th{
    background:#333
}

table.OnGrey {
    background: #5c6bc0;
    margin: auto;
    margin-bottom: 2em;
}

.OnGrey th, .OnGrey td {
    border: solid 1px white;
    padding: 10px;
	color:white;
}

.OnGrey th{
    background:#343B64
}

/*===============================================*/		



ul.explore li {
	list-style: none;
	display: inline-block;
	margin: 0;
	width: 320px;
	margin-bottom: 50px;
}

.img-box {
	width: 300px;
	height: 300px;
	background-color: white;
	margin: 0 auto;
	overflow: hidden;
	box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
	position: relative;
	cursor: pointer;
}

.img {
/*	background-image: url('https://dl.dropboxusercontent.com/u/35851734/rollover-img/img/1.jpg');
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: cover;*/
	width: 100%;
	height: 99.94%;
	position: absolute;
	-webkit-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
}

.img.active {
	width: 25%;
	height: 25%;
	-webkit-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
}

.headline {
	width: 50%;
	height: 25%;
	position: absolute;
	top: -10px;
	left:-15px;
	-webkit-transform: translate(210%, 0px);
	-ms-transform: translate(210%, 0px);
	-o-transform: translate(210%, 0px);
	transform: translate(210%, 0px);
	-webkit-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
}

.headline.active {
	-webkit-transform: translate(70%, 0px);
	-ms-transform: translate(70%, 0px);
	-o-transform: translate(70%, 0px);
	transform: translate(70%, 0px);
	-webkit-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
}

.headline h2 {

	font-weight: 300;
	color: #333;
	font-size: 1.3em;
	width: 135%; 
}

.text {
	width: 100%;
	height: 75%;
	background-color: #ECECEC;
	display: block;
	margin-top: 100%;
	-webkit-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
}

.text.active {
	margin-top: 25%;
	-webkit-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
}

.text p {

	font-weight: 400;
	color: #333;
	font-size: 1em;
	width: 80%;
	margin: 10px auto;
	padding-top: 20px;
}


ul.img_list {
	padding-top:20px;
	padding-bottom:10px
}

ul.img_list li {
	font-weight: 400;
	color: #333;
	font-size: 1em;
	width: 90%;
	margin: 2px auto;
	display: list-item;
	list-style:disc;
}



.text a {
	text-decoration: none;
	font-weight: 700;
	width: 80%;
	margin-left: 10%;
	margin-top:20px;
	color: #343B64!important;
}

/*===============================================*/		

                            .st0{fill:#333333; cursor:pointer}
                            .st1{fill:#666766; cursor:pointer}
                            .st2{fill:#999999;cursor:pointer}
                            .st3{fill:none;}
                            .st4{fill:#FFFFFF;}
                            .st5{font-family:'MyriadPro-Regular';}
                            .st6{font-size:36px;}
                            svg p {font-size: 14pt;}
                            svg text {
                            -webkit-user-select: none;
                               -moz-user-select: none;
                                -ms-user-select: none;
                                    user-select: none;
									cursor:pointer}
                            svg text::selection {background: none;}
							
/*===============================================*/		



.bottom-link {
  margin-top: 80px;
  font-style: italic; }

.gist-meta {
  display: none; }

.file-data {
  font-size: 14px; }

/*Burger callapse*/  
  .navbar-toggle .icon-bar {
    display: block;
    width: 25px;
    height: 2px;
    border-radius: 1px;
}

button.navbar-toggle.collapsed {
    margin: 3px auto;
}

.navbar-inverse .navbar-toggle {
    border-color: #333;
    margin: 3px auto;
}


  

  
.scroll-top {
   position:fixed;
   bottom:0;
   right:2%;
   z-index:100;
   background: #888;
   font-size:24px;
   border-top-left-radius:3px;
   border-top-right-radius:3px;
}
.scroll-top a:link,.scroll-top a:visited {
   color:#222;
   border-top-left-radius:3px;
   border-top-right-radius:3px;
   background: #fff;
} 

.to-home {
   position:fixed;
   top:2%;
   left:0%;
   z-index:100;
   background: #888;
   font-size:20px;
   border-top-right-radius:3px;
   border-bottom-right-radius:3px;
}
.to-home a:link, .to-home a:visited {
   color:#222;
   border-top-right-radius:3px;
   border-bottom-right-radius:3px;
   background: #fff;
} 

#footer {
    height: 60px;
    margin-top: 0;
    padding-top: 20px;
    padding-bottom: 20px;
}
#footer {
    background-color: #333;
}

.text-muted {
    color: #fff;
}

.text-muted a{
    color: #9999cb;
}

.brand img {
    margin-top: 1.5em;
    float: right;
}


.title h1{
	margin-top: 13%;
    font-size: 60px;
    text-align: left;
    font-weight: 800;
    text-decoration: none;
    color: #fff;
	background:rgba(0,0,0,0.4);
	padding:10px;
	border-radius: 3px;
}

.title h2 {

    font-size: 30px;
    text-align: right;
    font-weight: 800;
    text-decoration: none;
    color: #000;
	background:rgba(255,255,255,0.4);
	padding:10px;
	border-radius: 3px;
}

  tbody tr:not(.collapsible-table-headline) {
    display: none;
  }
  

/*==========  Non-Mobile First Method  ==========*/

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {

}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {

}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
    .navbar-collapse.collapse {
        display: none !important;
    }
    .navbar-collapse.collapse.in {
        display: block !important;
    }
    .navbar-header .collapse, .navbar-toggle {
        display:block !important;
    }
    .navbar-header {
        float:none;
    }
	.navbar-toggle {
		float:none;
	}
	nav#menu ul li {
    float: none;
    display: -webkit-inline-box;
    width: 100%;
	text-align:center;

	}	
	
	nav#menu ul li a {
    font-size: 1.3em;
	}
	img.wide-img{
	width:100%;
	}
	img.diagram, img.charts{
		width: 100%;
		}
			.brand img{
		max-width:150px
	}
}

/* Extra Small Devices, Phones */ 
@media only screen and (max-width : 480px) {
	
}

/* Custom, iPhone Retina */ 
@media only screen and (max-width : 320px) {

}

