@charset "utf-8";

* { 
	margin:0;
	padding:0;
}

html {
    height: 100%;
    -ms-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    overflow-y: scroll;
}

body {
    height: 100%;
    -ms-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background: url(bg-page.jpg) 50% 50%;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* ---------- GLOBAL CLASSES -----------*/

.clear	         	{ clear:both; }
.float-left    		{ float:left; }
.float-right   		{ float:right; }
 
.text-left     		{ text-align:left; }
.text-right    		{ text-align:right; }
.text-center   		{ text-align:center; }
.text-justify  		{ text-align:justify; }
 
.bold 			{ font-weight:bold; }
.italic        		{ font-style:italic; }
.underline     		{ border-bottom:1px solid; }
 
.nopadding     		{ padding:0; }
.noindent      		{ margin-left:0;padding-left:0; }
.nobullet      		{ list-style:none;list-style-image:none; }

img			  		{ border:0; }
.img-left      		{ float:left;margin:4px 10px 4px 0; }
.img-right     		{ float:right;margin:4px 0 4px 10px; }
.hidden 	        { display: none; }

/* ---------- TYPE -----------*/
#wrapper {
    min-height: 100%;
}

body {
    font-size:62.5%;
    line-height: 1.4em;
    font-family: Geneva, sans-serif;
}

h1, h2 {
    color: #ffffff;
    letter-spacing: 0;
}

#title h1 {
    font-size: 60px;
    line-height: 70px;
    text-shadow: 3px 3px 9px rgba(12, 12, 12, 0.80);
}

#title h2 {
	font-size: 32px;
	line-height: 32px;
}

h1.topic  {
	font-size: 21px;
	font-family: 'TitilliumText22LRegular', Arial, sans-serif;
	margin-bottom: 10px;
	text-shadow:2px 2px 0 rgba(0,0,0,.3);
}

p, ul {
	font-size: 1.2em;
	color: #FFF;
	padding-bottom: 20px;
}

a, a:hover {
	text-decoration: underline;
	color: #FFF;
}

ul li {
	list-style-position: inside;
}

.highlight {
	color: #FFF;
	font-size: 18px;
	line-height: 24px;
}

/* ---------- LAYOUT -----------*/

#header {
    margin:0 auto;
    padding-top: 10px;
    width: 980px;
    height: 140px;
}

#title {
	float: left;
	padding-top: 0;
}

#nav {
	float: right;
	text-align: left;
	padding:15px;
}

#content {
    margin: 0 auto;
    width: 980px;
    padding-top: 140px;
    padding-bottom: 50px;
}

#footer {
    margin: 0 auto;
    width: 980px;
    position: relative;
    margin-top: -50px; /* negative value of footer height */
    height: 50px;
    clear:both;
}

#references {
    float: right;
    text-align: left;
    padding: 15px;
}

ul.tabs li {
	list-style-image: none;
	font-family: 'TitilliumText22LMedium', Arial, sans-serif;
	font-size: 16px;
	list-style-position: inside;
	list-style: none;
	display: inline;
	padding: 15px 15px 0 15px;
	text-shadow:1px 1px 0 rgba(0,0,0,.3);
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

ul.tabs li:hover {
	padding: 15px 15px 30px 15px;
	background: #124670;
}

ul.tabs li a {
	color: #FFF;
	text-decoration: none;
}

.tab_content{ 
	width:650px;
}

