@charset "utf-8";
* {
    margin: 0;
    padding: 0;
}
html, body{
	font-size:20px;
	font-family:"Lucida Sans Unicode", "Lucida Grande", sans-serif;
    /*height: 100%;*/
}

.menu{
	position:fixed;
	background-color:#FFF;
	height:80px;
	width:100%;
	text-align:left;
	border-bottom:1px solid #CCC;
	
}

ul, a{
	display:block;
	text-decoration:none;
	list-style:none;
	color:#000;
	
	transition: all linear 0.2s;
}

li{
	float:left;
	margin-left:20px;
	margin-right:20px;
	margin-top:30px;
	margin-bottom:10px;
	
}

ul :hover{
	color:#CCC;
	text-decoration:underline;
}

li#menu-sel{
	text-decoration:underline;
	/*border-bottom::1px solid #000;*/
	/*box-shadow:0 10px 10px -3px #777;*/
}

.footer{
	/*background-color:#FFC;*/
	text-align:center;

	border-top:1px solid #CCC;

	padding-top:10px;
	padding-bottom:10px;
}

.img-head{
	width:100%;
	height:auto;
}

.img-logo{
	display:block;
	opacity:1;
	
	transition: all linear 1.5s;
}

.img-logo-h{
	display:block;
	opacity:0;
	
	transition: all linear 1.5s;
}

.img-dev{
	width:250px;
	height:250px;
	display:block;
	position:relative;
	float: left;
	border: 10px solid #fff;
	overflow: hidden;
}

.img-dev img{
	width:250px;
	height:250px;
	display:block;
	position:relative;
}

.img-dev .maschera{
	opacity: 0;
	width:250px;
	height:250px;
	top:0;
	left:0;
	position: absolute;
	/*border:1px solid #06F;*/
	background-color: rgba(94,134,193, 0.6);
}

.img-dev h1{
	opacity:0;
	
	text-align:center;
	color:#FFF;
	padding-top:3px;
	padding-bottom:3px;
	margin-top:10px;
	font-size:24px;
	background-color: rgba(0,0,0,0.5);
}

.img-dev p{
	opacity: 0;
	
	text-align:center;
	color:#FFF;
	padding-top:10px;
	padding-bottom:10px;
}

.img-dev a{
	opacity:0;
	
	text-align:center;
	text-transform:uppercase;
	padding-top:3px;
	padding-bottom:3px;
	
	margin-left:30px;
	margin-right:30px;
	background-color: rgba(0,0,0,0.8);
	color:#FFF;
}

.img-dev:hover a,
.img-dev:hover h1,
.img-dev:hover p,
.img-dev:hover .maschera{
	opacity:1;
}

.arrow-up{
	width:0;
	height:0;
	
	margin-left:95%;
	
	border-left: 15px solid transparent;
	border-right:15px solid transparent;
	
	border-bottom: 15px solid;
	
	border-bottom-color:#CCC;
	box-shadow:0 8px 6px -6px #666666;
	
	transition: all linear .3s;
}

.arrow-up:hover{
	border-left: 18px solid transparent;
	border-right:18px solid transparent;
	
	border-bottom: 18px solid;
	border-bottom-color:#09F;
	box-shadow:0 8px 6px -6px #009;
}
