@charset "utf-8";

body{
	background-color: #23698b;
}

.wholepage{
	width: 100%;	
	background-color: #23698b;	
}


/* -------- HEADER --*/
header{
	width: 100%;
	height: 120px;
	padding-top: 20px;
	
	text-align: center;
	
	background: -webkit-linear-gradient(#8bc2d0, #23698b); /* For Safari 5.1 to 6.0 */
	background: -o-linear-gradient(#8bc2d0, #23698b); /* For Opera 11.1 to 12.0 */
	background: -moz-linear-gradient(#8bc2d0, #23698b); /* For Firefox 3.6 to 15 */
	background: linear-gradient(#8bc2d0, #23698b); /* Standard syntax */
}

header div.logo{
	width: 460px;
	margin: auto;
	max-width: 90%;
}

header div.logo img.logo{
	max-width: 100%;
}
/* -------- FOOTER --*/
footer{
	width: 100%;
}

/* -------- MIDDLE --*/
.middle{	
	max-width: 1024px;	
	margin-left: auto;
	margin-right: auto;
	position: relative;
}



/* -------- HEADER NAVIGATION --*/
header ul.mainnav{
	list-style: none;	
	margin-top: 10px;
	margin: auto;
}



header ul.mainnav li{		
	color: white;
	text-align: center;	
	display: inline;
	margin-right: 10px;
}


header ul.mainnav li:after{
    content: " - ";
}




header ul li a{
	color: white;
}



/* -------- LEFT NAVIGATION --*/


nav div.landingitem{
	background-color: #41829f;
	text-align: center;
	font-size: 1.3em;
}

/*language menu */

.languagemenu{
	
	width: 60px;
	height: 20px;
	position: absolute;
	top: 7px;
	right: 0px;
}


/* -------- TABS --*/
ul.tabs{
	list-style: none;
	width: 100%;
	border-bottom: 1px solid #99BFC9;
	height: 30px;
}

ul.tabs li{
	float: left;
	width: 150px;
	height: 25px;
	padding-top: 5px;
	margin-right: 5px;
	background-color:  #99BFC9;
	text-align: center;
	color: white;
	cursor: pointer;
	border-bottom: 1px solid #99BFC9;
	
	-moz-border-radius: 20px 20px 0px 0px;
	-webkit-border-radius: 20px 20px 0px 0px;	
	border-radius: 20px 20px 0px 0px;
}

ul.tabs li a{
	color: white;
}

ul.tabs li.active{
	background-color: #B7DDE8;
	border-bottom: 1px solid #B7DDE8;
	color: #427473;
}

