*{
	margin:0px;
	padding: 0px;
}
html, body {
  max-width: 100%;
  overflow-x: hidden;
} 
body{
	background-color: #ebeef0;
	height: 4000px;
}

.title-wrapper{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 10%;
	padding: 20px 10px 20px 30px;
	border-left: 4px solid #093fa0;
}

.title, .subtitle1{
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 3rem;
    line-height: 1em;
    color: #fff;
    text-shadow: 5px 5px 5px rgba(0,0,0,0.2);
    font-weight: 700;
    margin-bottom: 20px;
}

.subtitle1{
	color: #dddddd;
	font-size: 2.5rem;
}

.subtitle{
	font-family: 'Open Sans', sans-serif;
	font-size: 2rem;
    line-height: 1em;
    color: #fff;
    text-shadow: 5px 5px 5px rgba(0,0,0,0.2);
}

.typed-cursor{
    opacity: 1;
    -webkit-animation: blink 0.7s infinite;
    -moz-animation: blink 0.7s infinite;
    animation: blink 0.7s infinite;
	font-family: 'Open Sans', sans-serif;
	font-size: 2rem;
    line-height: 1em;
    color: #fff;
    text-shadow: 5px 5px 5px rgba(0,0,0,0.2);
}
@keyframes blink{
    0% { opacity:1; }
    50% { opacity:0; }
    100% { opacity:1; }
}
@-webkit-keyframes blink{
    0% { opacity:1; }
    50% { opacity:0; }
    100% { opacity:1; }
}
@-moz-keyframes blink{
    0% { opacity:1; }
    50% { opacity:0; }
    100% { opacity:1; }
}


.nav{
	position: absolute;
	right: 0px;
	top:95%;
	max-width: 200px;
	background-color: #222222;
}

.nav.fixed{
	position: fixed;
	top:30px;
}



.nav li a{
	color: #dddddd;
	font-size: 1.3rem;
	text-indent: -11px;
    padding-left: 35px;
}

.nav li a .fa{
	/*width: 25px;*/
}

.nav>li>a:focus, .nav>li>a:hover{
	color: #444444;
}

.content-wrapper{
	position: absolute;
	top: 100%;
	width: calc(100% - 200px);
}

.content-block{
	background-color: #ffffff;
	width: 90%;
	margin:auto;
	padding:20px;
	margin-bottom: 20px;
	font-size: 1.6rem;
	color: #444444;
}


@media screen and (min-width: 1200px) {
    .title-wrapper{
		top: 50%;
		transform: translateY(-50%);
		left: 10%;
	}

	.title{
		font-size: 5rem;
	    margin-bottom: 20px;
	}

	.subtitle, .typed-cursor{
		font-size: 4rem;
	}


	.subtitle1{
		font-size: 2.5rem;
	}

}

@media screen and (max-width: 1450px) {
    .title-wrapper{
		top: 40%;
	}

	.content-wrapper, .nav{
		top: 70%;
	}

	.title{
		font-size: 4rem;
	    margin-bottom: 20px;
	}

	.subtitle, .typed-cursor, .subtitle1{
		font-size: 3rem;
	}
	
	.subtitle1{
		font-size: 2.5rem;
	}


}


@media screen and (max-width: 1024px) {
    .title-wrapper{
		top: 20%;
		transform: translateY(-30%);
		left: 10%;
	}


	.content-wrapper{
		top: 60%;
		width: 100%;
	}

	.nav{
		display: none;
	}

	.background{
		margin-top: 0;
	}
}



@media screen and (max-width: 900px) {
	.background{
		height: 100%;
		width: auto;
		min-width: 0;
    	max-width: none !important;
    }
    iframe{
    	width:100%;
    }
}


@media screen and (max-width: 500px) {
	.title{
		font-size: 3rem;
	    margin-bottom: 20px;
	}

	.subtitle, .typed-cursor{
		font-size: 2rem;
	}

	.programme thead tr th{
		padding: 3px;
		font-size: 0.8em;
	}
}


.programme th{
	padding:15px 15px;
	background-color:#ebeef0;
}

.programme th a{
	color:#777777;
}

.programme th.active a{
	color: #eeeeee;
}


.programme th.active{
	background-color: #337ab7;
}

.tabs{
	position: absolute;
	width: 100%;  
	border-spacing:0 0.5rem;
	border-collapse:separate;	
	table-layout: fixed;
}

.tabs tr{
	display:table-row;
}

.tabs tr td{
	background-color:#ebeef0;
}

.tabs td {
	padding-top:15px;
	padding-bottom:15px;
padding-right:15px;   
}

.tabs td:first-child {
	color: #555555;
	font-size: 1.7rem;
	padding-left:15px;
	padding-right:0;
	width: 200px;
}

.pag_16868 table tr td{
	padding:5px;
	margin:5px;
	border:1px solid #dddddd;
}

.apply-here {
    position: fixed;
    width: 100%;
    height: 30px;
    z-index: 99;
    width:100%;
    background-color: #cccccc;
    border-bottom: #333333;
    opacity: 0;
    margin-right: 40px;    
}

.button-a a {
    background-color: #ff0033;
    padding: 5px 10px;
    color: #ffffff;
    text-decoration: none;
}

.button-a {
	position: fixed;
    top:5px;
    left: 3px;	
	z-index: 101;
}

.small-title {
    font-family: "Source Sans Pro", Helvetica, sans-serif;
    font-weight: 900;
    font-size: 1.3em;
    text-align: center;
    /*color: #ff0033;*/
    color: #ffffff;
    margin-top: 2px;
}

.small-title.animated, .apply-here.animated  {
    -webkit-animation: opac 1s forwards;
    animation: opac 1s forwards;
}


@-webkit-keyframes opac {
    0% { opacity:0; }
    100% { opacity:1; }
}

@keyframes opac {
	0% { opacity:0; }
    100% {  opacity: 1; }
}

@-webkit-keyframes opachalf {
    0% { opacity:0; }
    100% { opacity:.5; }
}

@keyframes opachalf {
	0% { opacity:0; }
    100% {  opacity: .5; }
}


.fa.fa-bars{
	display: none;
	position: absolute;
	right: 15px;
	top: 10px;
	z-index: 100;
	color: #dddddd;
	cursor: pointer;
}


.fa.fa-times{
	display: none;
	position: absolute;
	right: 15px;
	top: 10px;
	z-index: 1;
	color: #dddddd;
	cursor: pointer;
}

.mobile-nav{
	display: none;
	width: 90%;
	position: absolute;
	z-index: 100;
	right: -90%;
	background-color: #444444;
	padding: 20px;
}

.mobile-nav li{
	list-style-type: none;
	height: 40px;
}
.mobile-nav a{
	color: #dddddd;
}

@media screen and (max-width: 1024px){
	.mobile-nav{
	    display: block;
	}	

	.fa.fa-bars, .fa.fa-times{
		display: block;
	}
}
