/*----------------------------- GENERAL -----------------------------*/
html, body{
	background-color: #FFF;
	margin: 0px;
	padding: 0px;
	font-family: "Lato", sans-serif;
	font-weight: 300;
}

*{
	outline: none !important;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
	cursor: default;
	-webkit-transition: font 0.4s ease-in-out;
    -moz-transition: font 0.4s ease-in-out;
	-ms-transform: font 0.4s ease-in-out;
    -o-transition: font 0.4s ease-in-out;
    transition: font 0.4s ease-in-out;
}

a{ text-decoration: none; }

b, strong{ font-family: "Lato", sans-serif; font-weight: 700; }

*::selection{ background: #0075C9; color: #FFF; }
*::-moz-selection{ background: #0075C9; color: #FFF; }

header, main, footer{
	width: 100%;
	display: block;
	position: relative;
	margin: 0px;
	padding: 0px;
	overflow: hidden;
}

h1{
	font-size: 57px;
	font-weight: 700;
	line-height: 58px;
}
h2{
	font-size: 25.2px;
	font-weight: 300;
}
h3{
	font-size: 11px;
	font-weight: 300;
}

/*----------------------------- HEADER -----------------------------*/
header{
	width: 100%;
	height: 34%;
	min-height: 200px;
	position: relative;
	margin: 0px;
	padding: 0px;
	overflow: hidden;
}
div#logo{
	width: 100%;
	height: 50%;
	min-height: 100px;
	margin: 0px;
	position: absolute;
	left: 0px;
	top: 25%;
}
div#logo img{
	width: auto;
	height: 100%;
	max-width: 235px;
	max-height: 193px;
	margin: 0px;
	position: absolute;
	left: 120px;
	top: 0px;
}

/*----------------------------- MAIN -----------------------------*/
main{
	height: 48%;
	min-height: 240px;
}
main div#slider{
	width: auto;
	height: auto;
	position: absolute;
	left: 120px;
	right: 120px;
	bottom: 0px;
	top: 40px;
	z-index: 100;
}
main img{
	min-height: 100%;
	min-width: 1300px;
	width: 100%;
	height: auto;
	margin-top: -25%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 50;
}
@media screen and (max-width: 1300px) { /* Specific to this particular image */
	main img{
		left: 50%;
		margin-left: -50%;
	}
}
main div#slider h1, main div#slider h2{ color: #FFF; }
main div#slider h1, main div#slider h2{
	margin: 0px 0px 20px 0px;
	text-shadow: 2px 2px 20px #000;
	filter: dropshadow(color=#000000, offx=2, offy=2);
}

/*----------------------------- FOOTER -----------------------------*/
footer{
	height: 18%;
	min-height: 100px;
}
footer .margin{
	width: auto;
	height: 64%;
	min-height: 60px;
	position: absolute;
	left: 120px;
	right: 120px;
	top: 18%;
}
footer #trame{
	background: url(images/trame.png) no-repeat center top;
	width: 134px;
	height: 29px;
	position: absolute;
	left: -29px;
	bottom: 30px;
}
footer #trame:before, footer #trame:after{
	content: "";
	background: url(images/trame.png) repeat-x;
	width: 10000px;
	height: 29px;
	display: block;
	position: absolute;
	top: 0px;
}
footer #trame:before{
	content: "";
	background-position: right bottom;
	left: -10000px;
}
footer #trame:after{
	content: "";
	background-position: left bottom;
	right: -10000px;
}
footer h3{
	color: #777;
	text-transform: uppercase;
	margin: -13px 0px 0px 0px;
	position: absolute;
	top: 100%;
}
footer h3#copyright{ left: 0px; }
footer h3#author{ right: 0px; }
footer a{
	color: #2483d4 !important;
	cursor: pointer;
}
footer a:hover{ color: #154f81 !important; }
footer h3 span{ color: #0077c3 !important; }


@media all and (max-width: 800px) {
	main div#slider h1{
		font-size: 40px;
		line-height: 39px;
	}
	main div#slider h2{
		font-size: 18px;
	}
}

@media all and (max-width: 700px),
only screen and (min-device-width : 320px)
and (max-device-width : 568px),
only screen and (min-device-width : 320px)
and (max-device-width : 480px) {
	div#logo{
		height: 70%;
		top: 15%;
	}
	div#logo img{ left: 15%; }
	main{
		min-height: 200px;
	}
	main div#slider{ left: 15%; }
	main img{
		min-width: 1000px;
		left: 0px;
		margin-left: 0px;
	}
	main div#slider h1, main div#slider h2{ min-width: 400px; }
	footer .margin{
		min-width: 330px;
		min-height: 80px;
		left: 15%;
		top: auto;
		bottom: 0px;
	}
	footer #trame{
		bottom: 10px;
	}
	footer h3{
		color: #333;
		font-size: 10px;
		margin: 0px 0px 10px 0px;
		position: relative;
		top: auto;
	}
	footer h3#copyright{ left: auto; }
	footer h3#author{ right: auto; }
}