@font-face {
	font-family: "myriad";
	src: url('MyriadPro-Light.eot');
	src: url('MyriadPro-Light.eot');
	/* IE9 Compat Modes */
	src: url('MyriadPro-Light.eot?#iefix') format('embedded-opentype'),
		/* IE6-IE8 */
		url('MyriadPro-Light.woff') format('woff'),
		/* Modern Browsers */
		url('MyriadPro-Light.ttf') format('truetype'),
		/* Safari, Android, iOS */
		url('MyriadPro-Light.svg#svgFontName') format('svg');
	/* Legacy iOS */
}


#video {
	height: 100%;
	width: 100%;
	box-sizing: border-box;
	position: fixed;
	z-index: 99999;
	background: #000000;
	display: flex;
	align-items: center;
	justify-content: center;
}

#video video {
	position: relative;
	background: #000000;
	max-width: 100%;
	height: 100%;
	z-index: 999999;
}

#video div {
	background-color: white;
	position: absolute;
	visibility: hidden;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

#video div a {
	font-family: myriad;
	font-size: 0.9rem;
	text-decoration: none;
	border: 1px solid black;
	display: inline-block;
	text-align: center;
	padding: 10px 0 7px 0;
	margin: 1rem;
	width: 14rem;
	letter-spacing: 0.1rem;
	color: gray;
	font-weight: 700;
	transition: 100ms;
}

#video div.darkmode {
	background-color: black;
}

#video div.darkmode a {
	border: 1px solid whitesmoke;
}

#video div a span {
	color: black;
}

#video div a:hover {
	color: #40b9e9cc;
	border-color: #40BAE9;
}

#video div a:hover span {
	color: #40BAE9;
}

#video div.darkmode a span {
	color: whitesmoke;
}

#video .button {
	position: absolute;
	text-decoration: none;
	color: antiquewhite;
	top: 0;
	right: 0;
	z-index: 9999999;
	padding: 10px 30px;
	margin: 30px;
	cursor: pointer;
	border-radius: 20px;
	background-color: rgba(0, 0, 0, 0.4);
}

#play.button {
	left: 0;
	right: 0;
	width: 25rem;
	margin: auto;
	display: none;
	font-size: 2rem;
	top: 50%;
	text-align: center;
	margin-top: -3rem;
	font-family: myriad;
}

.btn {
	border-radius: 2px;
	border: solid .5px black;
}


#link_alti.btn_round > a:hover {
	border-color: #40BAE9;
	color: #40BAE9;
}

#link_alti.btn_round > a {
	display: block;
	width: auto;
	border-radius: 20px;
	padding: 8px 12px 5px 12px;
	overflow: auto;
	border: solid 1px #6B7C8B;
	font-size: 0.65rem;
}

body {
	max-width: 100%;
	padding: 0 0 0 0;
	margin: 0 0 0 0;
	background-color: #ffffff;
}

#content-all {
	max-width: 100%;
	padding: 0 0 0 0;
	margin: 0 0 0 0;
	background-color: #ffffff;
}

img {
	border: none;
}



/* Desktops and laptops ---------------------------------------------------------- */
@media only screen and (min-width : 320px) {

	@keyframes animate {
		0% {
			left: -100%;
			opacity: 0;
		}

		/* 33% {
			left: -100%;
			opacity: 0;
		} */

		100%{
			left: 0;
			opacity: 1;
		}
	}

	@keyframes out {
		from {
			left: -99%;
			opacity: -0.1;
		}

		to {
			left: -100;
			opacity: 0;
		}
	}

	@keyframes solve {
		60% {
			opacity: 1;
		}

		100% {
			opacity: 0;
		}
	}

	#mobile .animate_out {
		position: relative;
		animation-duration: .1s;
		animation-name: out;
		animation-fill-mode: forwards;

	}

	#mobile .animate_in {
		position: relative;
		animation-duration: 1s;
		animation-name: animate;
		animation-fill-mode: forwards;

	}

	#mobile .animate_in.time_1 {
		animation-duration: 1.5s;
	}

	#mobile .animate_in.time_2 {
		animation-duration: 2s;
	}

	#mobile .animate_in.time_3 {
		animation-duration: 3s;
	}


	#mobile *,
	#cookieChoiceInfo {
		box-sizing: border-box;
	}

	#mobile,
	#cookieChoiceInfo {
		font-family: myriad, Arial, Tahoma, Helvetica;
	}
	#mobile_home img {
		animation-duration: 0s;
		animation-name: solve;
		animation-fill-mode: forwards;
		display: block;
	}
	#mobile_home{
		background: url('../img/mobile_home.jpg');
		background-size: cover;
		background-position: center top;
		padding: 0;
	}

	#mobile p,
	#mobile h4,
	#mobile h3,
	#mobile h2 {
		font-weight: 100;
		letter-spacing: 0.05rem;
		line-height: 1.7rem;

	}

	#mobile nav {
		display: table;
		width: 100%;
		padding: 10px 15px 5px 15px;
	}

	#mobile .menu_icon {
		cursor: pointer;
		margin-right: -0.2rem;
		width: 35px;
		margin-top: .3rem;
		color: #656565;
	}

	#menu_items {
		position: absolute;
		width: 100%;
		left: -100%;
		padding-left: 1rem;
		top: 0;
		padding: 1rem;
		margin-left: -1rem;
		height: auto;
		background-color: white;
	}

	#menu_items li {
		padding-left: 2rem;
		display: block;
		width: 100%;
		float: none;
	}

	#menu_items li a {
		color: #656565;
		display: block;
		padding: 0.8rem 2rem;
		letter-spacing: 1.5px;
		float: none;
	}

	#mobile nav div {
		display: table-row;
	}

	#mobile nav div span {
		display: table-cell;
		vertical-align: middle;
		text-align: right;
	}

	#mobile nav span a {
		text-decoration: none;
		color: #656565;
		font-size: .8rem;
		padding: 5px;
		display: inline-block;
	}

	#mobile nav span.logo {
		text-align: left;
	}

	#mobile nav span.logo img {
		width: 15rem;
	}

	#mobile section img {
		width: 100%;
	}

	#mobile section article {
		padding: 15px 20px;
		color: #656565;
	}


	#mobile section article a {
		text-decoration: none;
		color: #009DE0;
		font-weight: bold;
	}

	#mobile .center {
		text-align: center;
	}

	#mobile section article.colored {
		background-color: #9DA9B5;
		color: white;
	}

	#mobile a.button {
		font-size: .8rem;
		text-decoration: none;
		border: 1px solid white;
		display: inline-block;
		text-align: center;
		padding: 20px 0 17px 0;
		margin: 5px;
		width: 10rem;
		color: white;
		font-weight: 100;
	}

	#mobile section article.colored img {
		width: 250px;
	}



	#mobile footer {
		background-color: #9DA9B5;
		padding: 15px;
		text-align: center;
		color: #ffffff;
	}

	#mobile footer .social {
		margin-bottom: 3rem;
	}

	#mobile footer .social a.fa {
		padding: 10px;
		font-size: 20px;
		width: 43px;
		text-align: center;
		text-decoration: none;
		color: white;
		border: 1px solid;
		border-radius: 100%;
		margin: 5px;
	}

	b {
		text-shadow: 0 0 0.07rem;
	}

	#mobile b,
	#mobile .bold {
		text-shadow: 0 0 0.07rem;
		text-shadow: none;
		font-weight: 900;
	}

	#mobile nav b,
	#mobile h4 b,
	#mobile h2 b {
		text-shadow: 0 0 0.1rem;
	}
	

	#desktop {
		display: none;
	}

	#linea {
		position: fixed;
		background-image: url('../img/linea.png');
		top: 64px;
		width: 100%;
		height: 1px;
		z-index: +2;
	}

	#sfondino {
		/* position:fixed; */
		position: relative;
		background-image: url('../img/linea_g.jpg');
		width: 100%;
		height: 64px;
		margin: 0 0 0 0;
		z-index: 3;
	}

	/*  effetto scorrimento verticale */

	ul {
		width: 100%;
		height: 60px;
		background-color: #ffffff;
		padding: 0 0 0 0;
		margin: 0 0 0 0;
		top: 0;
		list-style-type: none;
		left: 50%;
		margin-left: -490px;
		position: fixed;
		z-index: +1;
		border: 0px;
		outline: none;
	}

	table.barra {
		margin: -6px 0 0 0;
		border: 0px;
	}

	td.barra {
		border: 0px;
	}

	tr.barra {
		border: 0px;
	}

	img.logo {
		width: 290px;
		margin-top: 4px;
	}

	img.coll {
		width: 60%;
		margin-top: 15px;
	}

	img.coll2 {
		width: 71%;
		margin-top: 0px;
	}

	img.collspc {
		width: 60px;
	}

	img.hp {
		width: 180px;
		margin-top: -30px;
		display: none;
	}

	img.freccia {
		width: 28px;
		display: none;

	}

	img.sfondo {
		width: 100%;
	}

	li {
		float: left;
		display: inline;
		margin: 0 0 0 0;
		padding: 0 0 0 0;
	}

	li a {
		float: left;
		color: #009DE0;
		text-decoration: none;
		text-shadow: none;
	}

	li a.current {
		color: #009DE0;
		text-shadow: none;
	}

	#logo-twitter {
		position: relative;
		margin-left: 75px;
	}

	#logo-twitter-home {
		position: absolute;
		left: 50%;
		margin-left: -410px;
		margin-top: -18px;
		z-index: +100;
	}

	#logo-twitter-art {
		position: absolute;
		left: 50%;
		margin-left: -410px;
		margin-top: -18px;
		z-index: +100;


	}

	#general {
		max-width: 100%;
		padding-top: 60px;
		padding-left: 0;
		padding-right: 0;
		margin-right: 0;
		margin-left: 0;
		background-color: #ffffff;
	}

	#general-home {
		max-width: 100%;
		padding-top: 60px;
		padding-left: 0;
		padding-right: 0;
		margin-right: 0;
		margin-left: 0;
		background-color: #9DA9B5;
	}

	#box-img {
		position: relative;
		margin: 0 0 0 0;
		padding: 0 0 0 0;

	}

	#box-tit {
		position: absolute;
		width: 700px;
		top: 30px;
		left: 50%;
		margin-left: -350px;
		font-family: myriad, Arial, Tahoma, Helvetica;
		text-align: center;
		letter-spacing: 1px;
		font-size: 14px;
		color: #000000;
	}

	#box-pun {
		position: absolute;
		width: 700px;
		top: 36px;
		left: 50%;
		margin-left: -350px;
		font-family: myriad, Arial, Tahoma, Helvetica;
		text-align: center;
		font-size: 22px;
		color: #000000;
	}

	#box-txt {
		position: absolute;
		width: 700px;
		top: 70px;
		left: 50%;
		margin-left: -350px;
		font-family: myriad, Arial, Tahoma, Helvetica;
		text-align: center;
		font-size: 12px;
		color: #6B7C8B;
	}


	#box-tit_home {
		position: absolute;
		width: 600px;
		top: 220px;
		left: 50%;
		margin-left: -150px;
		font-family: myriad, Arial, Tahoma, Helvetica;
		text-align: center;
		letter-spacing: 1px;
		font-size: 14px;
		color: #ffffff;
	}

	#box-pun_home {
		position: absolute;
		width: 600px;
		top: 235px;
		left: 50%;
		margin-left: -150px;
		font-family: myriad, Arial, Tahoma, Helvetica;
		text-align: center;
		font-size: 22px;
		color: #ffffff;
	}

	#box-txt_home {
		position: absolute;
		width: 600px;
		top: 280px;
		left: 50%;
		margin-left: -150px;
		font-family: myriad, Arial, Tahoma, Helvetica;
		text-align: center;
		font-size: 12px;
		color: #ffffff;
		border: 0px;

	}

	#box-txt-ps {
		position: absolute;
		width: 900px;
		top: 190px;
		left: 50%;
		margin-left: -450px;
	}

	#box-txt_twitter {
		position: absolute;
		width: 600px;
		top: 200px;
		left: 50%;
		margin-left: -320px;
		font-family: myriad, Arial, Tahoma, Helvetica;
		text-align: left;
		font-size: 12px;
		color: #6B7C8B;
	}

	#box-twitter {
		position: absolute;
		top: 200px;
		width: 900px;
		left: 50%;
		margin-left: -450px;

	}

	#box-txt_iconebook {
		position: absolute;
		width: 120px;
		top: 0px;
		left: 100%;
		margin-left: -10px;
		font-family: myriad, Arial, Tahoma, Helvetica;
		text-align: center;
		font-size: 8px;
		color: #6B7C8B;
	}

	#art_loghi {
		position: relative;
		background-image: url('../img/art_loghi_p.png');
		width: 900px;
		height: 104px;
		left: 50%;
		margin-left: -450px;
		margin-top: 5px;
	}

	#link_veloci a {
		font-family: myriad, Arial, Tahoma, Helvetica;
		text-align: center;
		font-size: 12px;
		text-decoration: none;
		color: #40BAE9;
	}

	#box-table {
		position: relative;
		width: 992px;
		left: 50%;
		margin-left: -496px;
	}

	#credit {
		font-size: 10px;
	}

	#link_veloci_scuro {
		color: #656565;
	}


	#link_inglese a:link,
	a:visited {
		position: fixed;
		text-decoration: none;
		font-family: myriad, Arial, Tahoma, Helvetica;
		top: 45px;
		left: 100%;
		margin-left: -50px;
		font-size: 10px;
		color: #6B7C8B;
		z-index: +4;
	}

	#link_inglese a:hover {
		color: #40BAE9;
	}

	#break {
		position: relative;
		height: 450px;
	}


	/* tabella photoshoot */

	table {
		margin-top: 40px;
	}

	td {
		border: 3px solid #ffffff;
	}


	img.artdir {
		width: 100%;
	}

	img.spcps {
		width: 8px;
	}

	img.ps {
		width: 115px;
	}

	img.twitter_2 {
		width: 900px;

	}

	#testo_esterno {
		position: relative;
		margin: 0 0 0 0;
		padding: 0 0 0 0;
	}

	#testo_interno_1 {
		position: absolute;
		font-family: myriad, Arial, Tahoma, Helvetica;
		width: 320px;
		height: 124px;
		font-size: 0px;
		color: #000000;
		margin: -208px 0 0 0;
		padding: 80px 0 0 0;
	}

	#testo_interno_1:hover {
		font-size: 22px;
		font-weight: bold;
		text-align: center;
		color: #ffffff;
		background-image: url('../img/fondo_p.png');
		background-repeat: repeat;

	}

	#testo_interno_2 {
		position: absolute;
		font-family: myriad, Arial, Tahoma, Helvetica;
		width: 320px;
		height: 134px;
		font-size: 0px;
		color: #000000;
		margin: -80px 0 0 0;
		padding: 70px 0 0 0;

	}

	#testo_interno_2:hover {
		font-size: 14px;
		color: #6B7C8B;
		height: 110px;
		margin: -110px 0 0 0;
		padding: 100px 0 0 0;
	}

	.sm-hide {
		display: none;
	}

	/* Menu */
	#link_alti a {
		width: 104px;
		max-height: 75px;
		text-decoration: none;
		font-family: myriad, Arial, Tahoma, Helvetica;
		text-align: center;
		font-size: 12px;
		letter-spacing: 1px;
		color: #6B7C8B;
	}

	#link_alti a:hover {
		color: #40BAE9;
	}
}

/* Desktops and laptops ---------------------------------------------------------- */
@media only screen and (min-width : 480px) {

	#linea {
		position: fixed;
		background-image: url('../img/linea.png');
		top: 64px;
		width: 100%;
		height: 1px;
		z-index: +2;
	}

	#sfondino {
		position: fixed;
		background-image: url('../img/linea_g.jpg');
		width: 100%;
		height: 64px;
		margin: 0 0 0 0;
		z-index: 3;
	}

	/*  effetto scorrimento verticale */

	ul {
		width: 100%;
		height: 60px;
		background-color: #ffffff;
		padding: 0 0 0 0;
		margin: 0 0 0 0;
		top: 0;
		list-style-type: none;
		left: 50%;
		margin-left: -490px;
		position: fixed;
		z-index: +1;
		border: 0px;
		outline: none;
	}

	#mobile .menu_icon {
		margin-right: -1rem;
	}

	table.barra {
		margin: -6px 0 0 0;
		border: 0px;
	}

	td.barra {
		border: 0px;
	}

	tr.barra {
		border: 0px;
	}

	img.logo {
		width: 290px;
		margin-top: 4px;
	}

	img.coll {
		width: 60%;
		margin-top: 15px;
	}

	img.coll2 {
		width: 71%;
		margin-top: 0px;
	}

	img.collspc {
		width: 60px;
	}

	img.hp {
		width: 180px;
		margin-top: -30px;
		display: none;
	}

	img.freccia {
		width: 28px;
		display: none;

	}

	img.sfondo {
		width: 100%;
	}

	li {
		float: left;
		display: inline;
		margin: 0 0 0 0;
		padding: 0 0 0 0;
	}

	li a {
		float: left;
		color: #009DE0;
		text-decoration: none;
		text-shadow: none;
	}

	li a.current {
		color: #009DE0;
		text-shadow: none;
	}

	#logo-twitter {
		position: relative;
		margin-left: 75px;
	}

	#logo-twitter-home {
		position: absolute;
		left: 50%;
		margin-left: -410px;
		margin-top: -18px;
		z-index: +100;
	}

	#logo-twitter-art {
		position: absolute;
		left: 50%;
		margin-left: -410px;
		margin-top: -18px;
		z-index: +100;


	}

	#general {
		max-width: 100%;
		padding-top: 60px;
		padding-left: 0;
		padding-right: 0;
		margin-right: 0;
		margin-left: 0;
		background-color: #ffffff;
	}

	#general-home {
		max-width: 100%;
		padding-top: 60px;
		padding-left: 0;
		padding-right: 0;
		margin-right: 0;
		margin-left: 0;
		background-color: #9DA9B5;
	}

	#box-img {
		position: relative;
		margin: 0 0 0 0;
		padding: 0 0 0 0;

	}

	#box-tit {
		position: absolute;
		width: 700px;
		top: 30px;
		left: 50%;
		margin-left: -350px;
		font-family: myriad, Arial, Tahoma, Helvetica;
		text-align: center;
		letter-spacing: 1px;
		font-size: 14px;
		color: #000000;
	}

	#box-pun {
		position: absolute;
		width: 700px;
		top: 36px;
		left: 50%;
		margin-left: -350px;
		font-family: myriad, Arial, Tahoma, Helvetica;
		text-align: center;
		font-size: 22px;
		color: #000000;
	}

	#box-txt {
		position: absolute;
		width: 700px;
		top: 70px;
		left: 50%;
		margin-left: -350px;
		font-family: myriad, Arial, Tahoma, Helvetica;
		text-align: center;
		font-size: 12px;
		color: #6B7C8B;
	}


	#box-tit_home {
		position: absolute;
		width: 600px;
		top: 220px;
		left: 50%;
		margin-left: -150px;
		font-family: myriad, Arial, Tahoma, Helvetica;
		text-align: center;
		letter-spacing: 1px;
		font-size: 14px;
		color: #ffffff;
	}

	#box-pun_home {
		position: absolute;
		width: 600px;
		top: 235px;
		left: 50%;
		margin-left: -150px;
		font-family: myriad, Arial, Tahoma, Helvetica;
		text-align: center;
		font-size: 22px;
		color: #ffffff;
	}

	#box-txt_home {
		position: absolute;
		width: 600px;
		top: 280px;
		left: 50%;
		margin-left: -150px;
		font-family: myriad, Arial, Tahoma, Helvetica;
		text-align: center;
		font-size: 12px;
		color: #ffffff;
		border: 0px;

	}

	#box-txt-ps {
		position: absolute;
		width: 900px;
		top: 190px;
		left: 50%;
		margin-left: -450px;
	}

	#box-txt_twitter {
		position: absolute;
		width: 600px;
		top: 200px;
		left: 50%;
		margin-left: -320px;
		font-family: myriad, Arial, Tahoma, Helvetica;
		text-align: left;
		font-size: 12px;
		color: #6B7C8B;
	}

	#box-twitter {
		position: absolute;
		top: 200px;
		width: 900px;
		left: 50%;
		margin-left: -450px;

	}

	#box-txt_iconebook {
		position: absolute;
		width: 120px;
		top: 0px;
		left: 100%;
		margin-left: -10px;
		font-family: myriad, Arial, Tahoma, Helvetica;
		text-align: center;
		font-size: 8px;
		color: #6B7C8B;
	}

	#art_loghi {
		position: relative;
		background-image: url('../img/art_loghi_p.png');
		width: 900px;
		height: 104px;
		left: 50%;
		margin-left: -450px;
		margin-top: 5px;
	}

	#link_veloci a {
		font-family: myriad, Arial, Tahoma, Helvetica;
		text-align: center;
		font-size: 12px;
		text-decoration: none;
		color: #40BAE9;
	}

	#box-table {
		position: relative;
		width: 992px;
		left: 50%;
		margin-left: -496px;
	}

	#credit {
		font-size: 10px;
	}

	#link_veloci_scuro {
		color: #656565;
	}


	#link_inglese a:link,
	a:visited {
		position: fixed;
		text-decoration: none;
		font-family: myriad, Arial, Tahoma, Helvetica;
		top: 45px;
		left: 100%;
		margin-left: -50px;
		font-size: 10px;
		color: #6B7C8B;
		z-index: +4;
	}

	#link_inglese a:hover {
		color: #40BAE9;
	}

	#break {
		position: relative;
		height: 450px;
	}


	/* tabella photoshoot */

	table {
		margin-top: 40px;
	}

	td {
		border: 3px solid #ffffff;
	}


	img.artdir {
		width: 100%;
	}

	img.spcps {
		width: 8px;
	}

	img.ps {
		width: 115px;
	}

	img.twitter_2 {
		width: 900px;

	}

	#testo_esterno {
		position: relative;
		margin: 0 0 0 0;
		padding: 0 0 0 0;
	}

	#testo_interno_1 {
		position: absolute;
		font-family: myriad, Arial, Tahoma, Helvetica;
		width: 320px;
		height: 124px;
		font-size: 0px;
		color: #000000;
		margin: -208px 0 0 0;
		padding: 80px 0 0 0;
	}

	#testo_interno_1:hover {
		font-size: 22px;
		font-weight: bold;
		text-align: center;
		color: #ffffff;
		background-image: url('../img/fondo_p.png');
		background-repeat: repeat;

	}

	#testo_interno_2 {
		position: absolute;
		font-family: myriad, Arial, Tahoma, Helvetica;
		width: 320px;
		height: 134px;
		font-size: 0px;
		color: #000000;
		margin: -80px 0 0 0;
		padding: 70px 0 0 0;

	}

	#testo_interno_2:hover {
		font-size: 14px;
		color: #6B7C8B;
		height: 110px;
		margin: -110px 0 0 0;
		padding: 100px 0 0 0;
	}

	/* Styles */
}

/* Desktops and laptops ---------------------------------------------------------- */
@media only screen and (min-width : 640px) {

	#linea {
		position: fixed;
		background-image: url('../img/linea.png');
		top: 64px;
		width: 100%;
		height: 1px;
		z-index: +2;
	}

	#sfondino {
		position: fixed;
		background-image: url('../img/linea_g.jpg');
		width: 100%;
		height: 64px;
		margin: 0 0 0 0;
		z-index: 3;
	}

	/*  effetto scorrimento verticale */

	ul {
		width: 100%;
		height: 60px;
		background-color: #ffffff;
		padding: 0 0 0 0;
		margin: 0 0 0 0;
		top: 0;
		list-style-type: none;
		left: 50%;
		margin-left: -490px;
		position: fixed;
		z-index: +1;
		border: 0px;
		outline: none;
	}

	#mobile .menu_icon {
		margin-right: -1.5rem;
	}

	table.barra {
		margin: -6px 0 0 0;
		border: 0px;
	}

	td.barra {
		border: 0px;
	}

	tr.barra {
		border: 0px;
	}

	img.logo {
		width: 290px;
		margin-top: 4px;
	}

	img.coll {
		width: 60%;
		margin-top: 15px;
	}

	img.coll2 {
		width: 71%;
		margin-top: 0px;
	}

	img.collspc {
		width: 60px;
	}

	img.hp {
		width: 180px;
		margin-top: -30px;
		display: none;
	}

	img.freccia {
		width: 28px;
		display: none;

	}

	img.sfondo {
		width: 100%;
	}

	li {
		float: left;
		display: inline;
		margin: 0 0 0 0;
		padding: 0 0 0 0;
	}

	li a {
		float: left;
		color: #009DE0;
		text-decoration: none;
		text-shadow: none;
	}

	li a.current {
		color: #009DE0;
		text-shadow: none;
	}

	#logo-twitter {
		position: relative;
		margin-left: 75px;
	}

	#logo-twitter-home {
		position: absolute;
		left: 50%;
		margin-left: -410px;
		margin-top: -18px;
		z-index: +100;
	}

	#logo-twitter-art {
		position: absolute;
		left: 50%;
		margin-left: -410px;
		margin-top: -18px;
		z-index: +100;


	}

	#general {
		max-width: 100%;
		padding-top: 60px;
		padding-left: 0;
		padding-right: 0;
		margin-right: 0;
		margin-left: 0;
		background-color: #ffffff;
	}

	#general-home {
		max-width: 100%;
		padding-top: 60px;
		padding-left: 0;
		padding-right: 0;
		margin-right: 0;
		margin-left: 0;
		background-color: #9DA9B5;
	}

	#box-img {
		position: relative;
		margin: 0 0 0 0;
		padding: 0 0 0 0;

	}

	#box-tit {
		position: absolute;
		width: 700px;
		top: 30px;
		left: 50%;
		margin-left: -350px;
		font-family: myriad, Arial, Tahoma, Helvetica;
		text-align: center;
		letter-spacing: 1px;
		font-size: 14px;
		color: #000000;
	}

	#box-pun {
		position: absolute;
		width: 700px;
		top: 36px;
		left: 50%;
		margin-left: -350px;
		font-family: myriad, Arial, Tahoma, Helvetica;
		text-align: center;
		font-size: 22px;
		color: #000000;
	}

	#box-txt {
		position: absolute;
		width: 700px;
		top: 70px;
		left: 50%;
		margin-left: -350px;
		font-family: myriad, Arial, Tahoma, Helvetica;
		text-align: center;
		font-size: 12px;
		color: #6B7C8B;
	}


	#box-tit_home {
		position: absolute;
		width: 600px;
		top: 220px;
		left: 50%;
		margin-left: -150px;
		font-family: myriad, Arial, Tahoma, Helvetica;
		text-align: center;
		letter-spacing: 1px;
		font-size: 14px;
		color: #ffffff;
	}

	#box-pun_home {
		position: absolute;
		width: 600px;
		top: 235px;
		left: 50%;
		margin-left: -150px;
		font-family: myriad, Arial, Tahoma, Helvetica;
		text-align: center;
		font-size: 22px;
		color: #ffffff;
	}

	#box-txt_home {
		position: absolute;
		width: 600px;
		top: 280px;
		left: 50%;
		margin-left: -150px;
		font-family: myriad, Arial, Tahoma, Helvetica;
		text-align: center;
		font-size: 12px;
		color: #ffffff;
		border: 0px;

	}

	#box-txt-ps {
		position: absolute;
		width: 900px;
		top: 190px;
		left: 50%;
		margin-left: -450px;
	}

	#box-txt_twitter {
		position: absolute;
		width: 600px;
		top: 200px;
		left: 50%;
		margin-left: -320px;
		font-family: myriad, Arial, Tahoma, Helvetica;
		text-align: left;
		font-size: 12px;
		color: #6B7C8B;
	}

	#box-twitter {
		position: absolute;
		top: 200px;
		width: 900px;
		left: 50%;
		margin-left: -450px;

	}

	#box-txt_iconebook {
		position: absolute;
		width: 120px;
		top: 0px;
		left: 100%;
		margin-left: -10px;
		font-family: myriad, Arial, Tahoma, Helvetica;
		text-align: center;
		font-size: 8px;
		color: #6B7C8B;
	}

	#art_loghi {
		position: relative;
		background-image: url('../img/art_loghi_p.png');
		width: 900px;
		height: 104px;
		left: 50%;
		margin-left: -450px;
		margin-top: 5px;
	}

	#link_veloci a {
		font-family: myriad, Arial, Tahoma, Helvetica;
		text-align: center;
		font-size: 12px;
		text-decoration: none;
		color: #40BAE9;
	}

	#box-table {
		position: relative;
		width: 992px;
		left: 50%;
		margin-left: -496px;
	}

	#credit {
		font-size: 10px;
	}

	#link_veloci_scuro {
		color: #656565;
	}


	#link_inglese a:link,
	a:visited {
		position: fixed;
		text-decoration: none;
		font-family: myriad, Arial, Tahoma, Helvetica;
		top: 45px;
		left: 100%;
		margin-left: -50px;
		font-size: 10px;
		color: #6B7C8B;
		z-index: +4;
	}

	#link_inglese a:hover {
		color: #40BAE9;
	}


	#break {
		position: relative;
		height: 450px;
	}


	/* tabella photoshoot */

	table {
		margin-top: 40px;
	}

	td {
		border: 3px solid #ffffff;
	}


	img.artdir {
		width: 100%;
	}

	img.spcps {
		width: 8px;
	}

	img.ps {
		width: 115px;
	}

	img.twitter_2 {
		width: 900px;

	}

	#testo_esterno {
		position: relative;
		margin: 0 0 0 0;
		padding: 0 0 0 0;
	}

	#testo_interno_1 {
		position: absolute;
		font-family: myriad, Arial, Tahoma, Helvetica;
		width: 320px;
		height: 124px;
		font-size: 0px;
		color: #000000;
		margin: -208px 0 0 0;
		padding: 80px 0 0 0;
	}

	#testo_interno_1:hover {
		font-size: 22px;
		font-weight: bold;
		text-align: center;
		color: #ffffff;
		background-image: url('../img/fondo_p.png');
		background-repeat: repeat;

	}

	#testo_interno_2 {
		position: absolute;
		font-family: myriad, Arial, Tahoma, Helvetica;
		width: 320px;
		height: 134px;
		font-size: 0px;
		color: #000000;
		margin: -80px 0 0 0;
		padding: 70px 0 0 0;

	}

	#testo_interno_2:hover {
		font-size: 14px;
		color: #6B7C8B;
		height: 110px;
		margin: -110px 0 0 0;
		padding: 100px 0 0 0;
	}


	/* Styles */
}

/* Desktops and laptops ---------------------------------------------------------- */
@media only screen and (min-width : 768px) {

	#linea {
		position: fixed;
		background-image: url('../img/linea.png');
		top: 64px;
		width: 100%;
		height: 1px;
		z-index: +2;
	}

	#sfondino {
		position: fixed;
		background-image: url('../img/linea_g.jpg');
		width: 100%;
		height: 64px;
		margin: 0 0 0 0;
		z-index: 3;
	}

	/*  effetto scorrimento verticale */

	ul {
		width: 100%;
		height: 60px;
		background-color: #ffffff;
		padding: 0 0 0 0;
		margin: 0 0 0 0;
		top: 0;
		list-style-type: none;
		left: 50%;
		margin-left: -490px;
		position: fixed;
		z-index: +1;
		border: 0px;
		outline: none;
	}

	table.barra {
		margin: -6px 0 0 0;
		border: 0px;
	}

	td.barra {
		border: 0px;
	}

	tr.barra {
		border: 0px;
	}

	img.logo {
		width: 290px;
		margin-top: 4px;
	}

	img.coll {
		width: 60%;
		margin-top: 15px;
	}

	img.coll2 {
		width: 71%;
		margin-top: 0px;
	}

	img.collspc {
		width: 60px;
	}

	img.hp {
		width: 180px;
		margin-top: -30px;
		display: inline;
	}

	img.freccia {
		width: 28px;
		display: none;

	}

	img.sfondo {
		width: 100%;
	}

	li {
		float: left;
		display: inline;
		margin: 0 0 0 0;
		padding: 0 0 0 0;
	}

	li a {
		float: left;
		color: #009DE0;
		text-decoration: none;
		text-shadow: none;
	}

	li a.current {
		color: #009DE0;
		text-shadow: none;
	}

	#logo-twitter {
		position: relative;
		margin-left: 75px;
	}

	#logo-twitter-home {
		position: absolute;
		left: 50%;
		margin-left: -410px;
		margin-top: -18px;
		z-index: +100;
	}

	#logo-twitter-art {
		position: absolute;
		left: 50%;
		margin-left: -410px;
		margin-top: -18px;
		z-index: +100;


	}

	#general {
		max-width: 100%;
		padding-top: 60px;
		padding-left: 0;
		padding-right: 0;
		margin-right: 0;
		margin-left: 0;
		background-color: #ffffff;
	}

	#general-home {
		max-width: 100%;
		padding-top: 60px;
		padding-left: 0;
		padding-right: 0;
		margin-right: 0;
		margin-left: 0;
		background-color: #9DA9B5;
	}

	#box-img {
		position: relative;
		margin: 0 0 0 0;
		padding: 0 0 0 0;

	}

	#box-tit {
		position: absolute;
		width: 700px;
		top: 30px;
		left: 50%;
		margin-left: -350px;
		font-family: myriad, Arial, Tahoma, Helvetica;
		text-align: center;
		letter-spacing: 1px;
		font-size: 20px;
		color: #000000;
	}

	#box-pun {
		position: absolute;
		width: 700px;
		top: 40px;
		left: 50%;
		margin-left: -350px;
		font-family: myriad, Arial, Tahoma, Helvetica;
		text-align: center;
		font-size: 32px;
		color: #000000;
	}

	#box-txt {
		position: absolute;
		width: 700px;
		top: 82px;
		left: 50%;
		margin-left: -350px;
		font-family: myriad, Arial, Tahoma, Helvetica;
		text-align: center;
		font-size: 17px;
		color: #6B7C8B;
	}


	#box-tit_home {
		position: absolute;
		width: 600px;
		top: 220px;
		left: 50%;
		margin-left: -150px;
		font-family: myriad, Arial, Tahoma, Helvetica;
		text-align: center;
		letter-spacing: 1px;
		font-size: 24px;
		color: #ffffff;
	}

	#box-pun_home {
		position: absolute;
		width: 600px;
		top: 235px;
		left: 50%;
		margin-left: -150px;
		font-family: myriad, Arial, Tahoma, Helvetica;
		text-align: center;
		font-size: 32px;
		color: #ffffff;
	}

	#box-txt_home {
		position: absolute;
		width: 600px;
		top: 280px;
		left: 50%;
		margin-left: -150px;
		font-family: myriad, Arial, Tahoma, Helvetica;
		text-align: center;
		font-size: 17px;
		color: #ffffff;
		border: 0px;

	}

	#box-txt-ps {
		position: absolute;
		width: 900px;
		top: 190px;
		left: 50%;
		margin-left: -450px;
	}

	#box-txt_twitter {
		position: absolute;
		width: 600px;
		top: 200px;
		left: 50%;
		margin-left: -320px;
		font-family: myriad, Arial, Tahoma, Helvetica;
		text-align: left;
		font-size: 18px;
		color: #6B7C8B;
	}

	#box-twitter {
		position: absolute;
		top: 200px;
		width: 900px;
		left: 50%;
		margin-left: -450px;

	}

	#box-txt_iconebook {
		position: absolute;
		width: 120px;
		top: 0px;
		left: 100%;
		margin-left: -10px;
		font-family: myriad, Arial, Tahoma, Helvetica;
		text-align: center;
		font-size: 12px;
		color: #6B7C8B;
	}

	#art_loghi {
		position: relative;
		background-image: url('../img/art_loghi_p.png');
		width: 900px;
		height: 104px;
		left: 50%;
		margin-left: -450px;
		margin-top: 5px;
	}

	#link_veloci {
		max-width: 540px;
		margin: auto;
	}

	#link_veloci a {
		font-family: myriad, Arial, Tahoma, Helvetica;
		text-align: center;
		font-size: 17px;
		text-decoration: none;
		color: #40BAE9;
	}

	#box-table {
		position: relative;
		width: 992px;
		left: 50%;
		margin-left: -496px;
	}

	#credit {
		font-size: 12px;
	}

	#link_veloci_scuro {
		color: #656565;
	}

	#link_inglese a:link,
	a:visited {
		position: fixed;
		text-decoration: none;
		font-family: myriad, Arial, Tahoma, Helvetica;
		top: 45px;
		left: 100%;
		margin-left: -50px;
		font-size: 14px;
		color: #6B7C8B;
		z-index: +4;
	}

	#link_inglese a:hover {
		color: #40BAE9;
	}

	#break {
		position: relative;
		height: 450px;
	}


	/* tabella photoshoot */

	table {
		margin-top: 40px;
	}

	td {
		border: 3px solid #ffffff;
	}


	img.artdir {
		width: 100%;
	}

	img.spcps {
		width: 8px;
	}

	img.ps {
		width: 115px;
	}

	img.twitter_2 {
		width: 900px;

	}

	#testo_esterno {
		position: relative;
		margin: 0 0 0 0;
		padding: 0 0 0 0;
	}

	#testo_interno_1 {
		position: absolute;
		font-family: myriad, Arial, Tahoma, Helvetica;
		width: 320px;
		height: 124px;
		font-size: 0px;
		color: #000000;
		margin: -208px 0 0 0;
		padding: 80px 0 0 0;
	}

	#testo_interno_1:hover {
		font-size: 22px;
		font-weight: bold;
		text-align: center;
		color: #ffffff;
		background-image: url('../img/fondo_p.png');
		background-repeat: repeat;

	}

	#testo_interno_2 {
		position: absolute;
		font-family: myriad, Arial, Tahoma, Helvetica;
		width: 320px;
		height: 134px;
		font-size: 0px;
		color: #000000;
		margin: -80px 0 0 0;
		padding: 70px 0 0 0;

	}

	#testo_interno_2:hover {
		font-size: 14px;
		color: #6B7C8B;
		height: 110px;
		margin: -110px 0 0 0;
		padding: 100px 0 0 0;
	}

	.sm-hide {
		display: block;
	}

	/* Styles */
}


/* Desktops and laptops ---------------------------------------------------------- */
@media only screen and (min-width : 1024px) {

	#desktop {
		display: block;
	}

	#mobile {
		display: none;
	}

	#linea {
		position: fixed;
		background-image: url('../img/linea.png');
		top: 64px;
		width: 100%;
		height: 1px;
		z-index: +2;
	}

	#sfondino {
		position: fixed;
		background-image: url('../img/linea_g.jpg');
		width: 100%;
		height: 64px;
		margin: 0 0 0 0;
		z-index: 3;
	}

	/*  effetto scorrimento verticale */

	ul {
		width: 100%;
		height: 60px;
		background-color: #ffffff;
		padding: 0 0 0 0;
		margin: 0 0 0 0;
		top: 0;
		list-style-type: none;
		left: 50%;
		margin-left: -490px;
		position: fixed;
		z-index: +1;
		border: 0px;
		outline: none;
	}

	.btn_round {
		margin-left: 30px;
	}

	table.barra {
		margin: -6px 0 0 0;
		border: 0px;
	}

	td.barra {
		border: 0px;
	}

	tr.barra {
		border: 0px;
	}

	img.logo {
		width: 290px;
		margin-top: 4px;
	}

	img.coll {
		width: 60%;
		margin-top: 15px;
	}

	img.coll2 {
		width: 71%;
		margin-top: 0px;
	}

	img.collspc {
		width: 60px;
	}

	img.hp {
		width: 180px;
		margin-top: -30px;
		display: inline;
	}

	img.freccia {
		width: 28px;
		display: none;

	}

	img.sfondo {
		width: 100%;
	}

	li {
		float: left;
		display: inline;
		margin: 0 0 0 0;
		padding: 0 0 0 0;
	}

	li a {
		float: left;
		color: #009DE0;
		text-decoration: none;
		text-shadow: none;
	}

	li a.current {
		color: #009DE0;
		text-shadow: none;
	}

	#logo-twitter {
		position: relative;
		margin-left: 75px;
	}

	#logo-twitter-home {
		position: absolute;
		left: 50%;
		margin-left: -410px;
		margin-top: -18px;
		z-index: +100;
	}

	#logo-twitter-art {
		position: absolute;
		left: 50%;
		margin-left: -410px;
		margin-top: -18px;
		z-index: +100;


	}

	#general {
		max-width: 100%;
		padding-top: 60px;
		padding-left: 0;
		padding-right: 0;
		margin-right: 0;
		margin-left: 0;
		background-color: #ffffff;
	}

	#general-home {
		max-width: 100%;
		padding-top: 60px;
		padding-left: 0;
		padding-right: 0;
		margin-right: 0;
		margin-left: 0;
		background-color: #9DA9B5;
	}

	#box-img {
		position: relative;
		margin: 0 0 0 0;
		padding: 0 0 0 0;

	}

	#box-tit {
		position: absolute;
		width: 700px;
		top: 30px;
		left: 50%;
		margin-left: -350px;
		font-family: myriad, Arial, Tahoma, Helvetica;
		text-align: center;
		letter-spacing: 1px;
		font-size: 20px;
		color: #000000;
	}

	#box-pun {
		position: absolute;
		width: 700px;
		top: 40px;
		left: 50%;
		margin-left: -350px;
		font-family: myriad, Arial, Tahoma, Helvetica;
		text-align: center;
		font-size: 32px;
		color: #000000;
	}

	#box-txt {
		position: absolute;
		width: 700px;
		top: 82px;
		left: 50%;
		margin-left: -350px;
		font-family: myriad, Arial, Tahoma, Helvetica;
		text-align: center;
		font-size: 17px;
		color: #6B7C8B;
	}


	#box-tit_home {
		position: absolute;
		width: 600px;
		top: 220px;
		left: 50%;
		margin-left: -150px;
		font-family: myriad, Arial, Tahoma, Helvetica;
		text-align: center;
		letter-spacing: 1px;
		font-size: 24px;
		color: #ffffff;
	}

	#box-pun_home {
		position: absolute;
		width: 600px;
		top: 235px;
		left: 50%;
		margin-left: -150px;
		font-family: myriad, Arial, Tahoma, Helvetica;
		text-align: center;
		font-size: 32px;
		color: #ffffff;
	}

	#box-txt_home {
		position: absolute;
		width: 600px;
		top: 280px;
		left: 50%;
		margin-left: -150px;
		font-family: myriad, Arial, Tahoma, Helvetica;
		text-align: center;
		font-size: 17px;
		color: #ffffff;
		border: 0px;

	}

	#box-txt-ps {
		position: absolute;
		width: 900px;
		top: 190px;
		left: 50%;
		margin-left: -450px;
	}

	#box-txt_twitter {
		position: absolute;
		width: 600px;
		top: 200px;
		left: 50%;
		margin-left: -320px;
		font-family: myriad, Arial, Tahoma, Helvetica;
		text-align: left;
		font-size: 18px;
		color: #6B7C8B;
	}

	#box-twitter {
		position: absolute;
		top: 200px;
		width: 900px;
		left: 50%;
		margin-left: -450px;

	}

	#box-txt_iconebook {
		position: absolute;
		width: 120px;
		top: 0px;
		left: 100%;
		margin-left: -10px;
		font-family: myriad, Arial, Tahoma, Helvetica;
		text-align: center;
		font-size: 12px;
		color: #6B7C8B;
	}

	#art_loghi {
		position: relative;
		background-image: url('../img/art_loghi_p.png');
		width: 900px;
		height: 104px;
		left: 50%;
		margin-left: -450px;
		margin-top: 5px;
	}

	#link_veloci a {
		font-family: myriad, Arial, Tahoma, Helvetica;
		text-align: center;
		font-size: 17px;
		text-decoration: none;
		color: #40BAE9;
	}

	#box-table {
		position: relative;
		width: 992px;
		left: 50%;
		margin-left: -496px;
	}

	#credit {
		font-size: 12px;
	}

	#link_veloci_scuro {
		color: #656565;
	}

	#link_inglese a:link,
	a:visited {
		position: fixed;
		text-decoration: none;
		font-family: myriad, Arial, Tahoma, Helvetica;
		top: 45px;
		left: 100%;
		margin-left: -50px;
		font-size: 14px;
		color: #6B7C8B;
		z-index: +4;
	}

	#link_inglese a:hover {
		color: #40BAE9;
	}

	#break {
		position: relative;
		height: 450px;
	}


	/* tabella photoshoot */

	table {
		margin-top: 40px;
	}

	td {
		border: 3px solid #ffffff;
	}


	img.artdir {
		width: 100%;
	}

	img.spcps {
		width: 8px;
	}

	img.ps {
		width: 115px;
	}

	img.twitter_2 {
		width: 900px;

	}

	#testo_esterno {
		position: relative;
		margin: 0 0 0 0;
		padding: 0 0 0 0;
	}

	#testo_interno_1 {
		position: absolute;
		font-family: myriad, Arial, Tahoma, Helvetica;
		width: 320px;
		height: 124px;
		font-size: 0px;
		color: #000000;
		margin: -208px 0 0 0;
		padding: 80px 0 0 0;
	}

	#testo_interno_1:hover {
		font-size: 22px;
		font-weight: bold;
		text-align: center;
		color: #ffffff;
		background-image: url('../img/fondo_p.png');
		background-repeat: repeat;

	}

	#testo_interno_2 {
		position: absolute;
		font-family: myriad, Arial, Tahoma, Helvetica;
		width: 320px;
		height: 134px;
		font-size: 0px;
		color: #000000;
		margin: -80px 0 0 0;
		padding: 70px 0 0 0;

	}

	#testo_interno_2:hover {
		font-size: 14px;
		color: #6B7C8B;
		height: 110px;
		margin: -110px 0 0 0;
		padding: 100px 0 0 0;
	}


	/* Styles */
}

/* Desktops and laptops -------------------------------------------------------- */
@media only screen and (min-width : 1224px) {
	#linea {
		position: fixed;
		background-image: url('../img/linea.png');
		top: 78px;
		width: 100%;
		height: 1px;
		z-index: +2;
	}

	#sfondino {
		position: fixed;
		background-image: url('../img/linea_g.jpg');
		width: 100%;
		height: 78px;
		margin: 0 0 0 0;
		z-index: 3;
	}

	/*  effetto scorrimento verticale */

	ul {
		width: 100%;
		height: 78px;
		background-color: #ffffff;
		padding: 0 0 0 0;
		margin: 0 0 0 0;
		top: 0;
		list-style-type: none;
		left: 50%;
		margin-left: -515px;
		position: fixed;
		z-index: +1;
		border: 0px;
		outline: none;
	}

	.btn_round {
		margin-left: 120px;
	}

	table.barra {
		margin: -6px 0 0 0;
		padding: 0 0 0 0;
		border: 0px;
	}

	td.barra {
		border: 0px;
	}

	tr.barra {
		border: 0px;
	}

	img.logo {
		width: 290px;
		margin-top: 8px;

	}

	img.coll {
		width: 75%;
		margin-top: 18px;

	}

	img.coll2 {
		width: 85%;
		margin-top: 0px;
	}

	img.collspc {
		width: 60px;
		display: inline;
	}

	img.hp {
		width: 201px;
		margin-top: 0px;
		display: inline;
	}

	img.freccia {
		width: 28px;
		display: inline;
	}

	img.sfondo {
		width: 100%;
	}

	li {
		float: left;
		display: inline;
		margin: 0 0 0 0;
		padding: 0 0 0 0;
		border: 0px;
	}

	li a {
		float: left;
		color: #009DE0;
		text-decoration: none;
		text-shadow: none;
	}

	li a.current {
		color: #009DE0;
		text-shadow: none;
	}

	#logo-twitter {
		position: relative;
		margin-left: 75px;
	}

	#logo-twitter-home {
		position: absolute;
		left: 50%;
		margin-left: -435px;
		margin-top: -26px;
		z-index: +100;
	}

	#logo-twitter-art {
		position: absolute;
		left: 50%;
		margin-left: -425px;
		margin-top: -25px;
		z-index: +100;

	}

	#general {
		max-width: 100%;
		padding-top: 78px;
		padding-left: 0;
		padding-right: 0;
		margin-right: 0;
		margin-left: 0;
		background-color: #ffffff;
	}

	#general-home {
		max-width: 100%;
		padding-top: 78px;
		padding-left: 0;
		padding-right: 0;
		margin-right: 0;
		margin-left: 0;
		background-color: #9DA9B5;
	}

	#box-img {
		position: relative;
		margin: 0 0 0 0;
		padding: 0 0 0 0;
	}

	#box-tit {
		position: absolute;
		width: 700px;
		top: 35px;
		left: 50%;
		margin-left: -350px;
		font-family: myriad, Arial, Tahoma, Helvetica;
		text-align: center;
		letter-spacing: 1px;
		font-size: 20px;
		color: #000000;
	}

	#box-pun {
		position: absolute;
		width: 700px;
		top: 40px;
		left: 50%;
		margin-left: -350px;
		font-family: myriad, Arial, Tahoma, Helvetica;
		text-align: center;
		font-size: 42px;
		color: #000000;
	}

	#box-txt {
		position: absolute;
		width: 700px;
		top: 100px;
		left: 50%;
		margin-left: -350px;
		font-family: myriad, Arial, Tahoma, Helvetica;
		text-align: center;
		font-size: 16px;
		color: #6B7C8B;

	}


	#box-tit_home {
		position: absolute;
		width: 800px;
		top: 320px;
		left: 50%;
		margin-left: -400px;
		font-family: myriad, Arial, Tahoma, Helvetica;
		text-align: center;
		letter-spacing: 2px;
		font-size: 22px;
		color: #ffffff;
	}

	#box-pun_home {
		position: absolute;
		width: 800px;
		top: 330px;
		left: 50%;
		margin-left: -400px;
		font-family: myriad, Arial, Tahoma, Helvetica;
		text-align: center;
		font-size: 38px;
		color: #ffffff;
	}

	#box-txt_home {
		position: absolute;
		width: 800px;
		top: 380px;
		left: 50%;
		margin-left: -400px;
		font-family: myriad, Arial, Tahoma, Helvetica;
		text-align: center;
		font-size: 16px;
		color: #ffffff;

	}

	#box-txt-ps {
		position: absolute;
		width: 900px;
		top: 190px;
		left: 50%;
		margin-left: -450px;
	}

	#box-txt_twitter {
		position: absolute;
		width: 700px;
		top: 200px;
		left: 50%;
		margin-left: -350px;
		font-family: myriad, Arial, Tahoma, Helvetica;
		text-align: left;
		font-size: 14px;
		color: #6B7C8B;
	}

	#box-twitter {
		position: absolute;
		top: 200px;
		width: 900px;
		left: 50%;
		margin-left: -450px;

	}

	#box-txt_iconebook {
		position: absolute;
		width: 120px;
		top: 0px;
		left: 100%;
		margin-left: -10px;
		font-family: myriad, Arial, Tahoma, Helvetica;
		text-align: center;
		font-size: 12px;
		color: #6B7C8B;
	}

	#art_loghi {
		position: relative;
		background-image: url('../img/art_loghi_g.png');
		width: 1224px;
		height: 148px;
		left: 50%;
		margin-left: -612px;
		margin-top: 5px;
	}

	#link_veloci a {
		font-family: myriad, Arial, Tahoma, Helvetica;
		text-align: center;
		font-size: 16px;
		text-decoration: none;
		color: #40BAE9;
	}

	#box-table {
		position: relative;
		width: 992px;
		left: 50%;
		margin-left: -496px;
	}

	#credit {
		font-size: 12px;
	}

	#link_veloci_scuro {
		color: #656565;
	}

	#link_inglese a:link,
	a:visited {
		position: fixed;
		text-decoration: none;
		font-family: myriad, Arial, Tahoma, Helvetica;
		top: 60px;
		left: 100%;
		margin-left: -50px;
		font-size: 14px;
		color: #6B7C8B;
		z-index: +4;
	}

	#link_inglese a:hover {
		color: #40BAE9;
	}

	#break {
		position: relative;
		height: 350px;
	}


	/* tabella photoshoot */

	table {
		margin-top: 40px;
	}

	td {
		border: 3px solid #ffffff;
	}


	img.artdir {
		width: 100%;
	}

	img.spcps {
		width: 5px;
	}

	img.ps {
		width: 115px;
	}

	img.twitter_2 {
		width: 900px;
	}

	#testo_esterno {
		position: relative;
		margin: 0 0 0 0;
		padding: 0 0 0 0;
	}

	#testo_interno_1 {
		position: absolute;
		font-family: myriad, Arial, Tahoma, Helvetica;
		width: 320px;
		height: 124px;
		font-size: 0px;
		color: #000000;
		margin: -208px 0 0 0;
		padding: 80px 0 0 0;
	}

	#testo_interno_1:hover {
		font-size: 22px;
		font-weight: bold;
		text-align: center;
		color: #ffffff;
		background-image: url('../img/fondo_p.png');
		background-repeat: repeat;

	}

	#testo_interno_2 {
		position: absolute;
		font-family: myriad, Arial, Tahoma, Helvetica;
		width: 320px;
		height: 134px;
		font-size: 0px;
		color: #000000;
		margin: -80px 0 0 0;
		padding: 70px 0 0 0;

	}

	#testo_interno_2:hover {
		font-size: 14px;
		color: #6B7C8B;
		height: 110px;
		margin: -110px 0 0 0;
		padding: 100px 0 0 0;
	}

	/* Menu */
	#link_alti a {
		max-height: 90px;
	}

}

/* Large screens ------------------------------------------------------------- */
@media only screen and (min-width : 1824px) {
	#linea {
		position: fixed;
		background-image: url('../img/linea.png');
		top: 78px;
		width: 100%;
		height: 1px;
		z-index: +2;
	}

	#sfondino {
		position: fixed;
		background-image: url('../img/linea_g.jpg');
		width: 100%;
		height: 78px;
		margin: 0 0 0 0;
		z-index: 3;
	}

	/*  effetto scorrimento verticale */

	ul {
		width: 100%;
		height: 78px;
		background-color: #ffffff;
		padding: 0 0 0 0;
		margin: 0 0 0 0;
		top: 0;
		list-style-type: none;
		left: 50%;
		margin-left: -515px;
		position: fixed;
		z-index: +1;
		border: 0px;
		outline: none;
	}

	table.barra {
		margin: -6px 0 0 0;
		padding: 0 0 0 0;
		border: 0px;
	}

	td.barra {
		border: 0px;
	}

	tr.barra {
		border: 0px;
	}

	img.logo {
		width: 290px;
		margin-top: 8px;

	}

	img.coll {
		width: 75%;
		margin-top: 18px;

	}

	img.coll2 {
		width: 85%;
		margin-top: 0px;
	}

	img.collspc {
		width: 120px;
		display: inline;
	}

	img.hp {
		width: 201px;
		margin-top: 0px;
		display: inline;
	}

	img.freccia {
		width: 28px;
		display: inline;
	}

	img.sfondo {
		width: 100%;
	}

	li {
		float: left;
		display: inline;
		margin: 0 0 0 0;
		padding: 0 0 0 0;
		border: 0px;
	}

	li a {
		float: left;
		color: #009DE0;
		text-decoration: none;
		text-shadow: none;
	}

	li a.current {
		color: #009DE0;
		text-shadow: none;
	}

	#logo-twitter {
		position: relative;
		margin-left: 75px;
	}

	#logo-twitter-home {
		position: absolute;
		left: 50%;
		margin-left: -435px;
		margin-top: -26px;
		z-index: +100;
	}

	#logo-twitter-art {
		position: absolute;
		left: 50%;
		margin-left: -425px;
		margin-top: -25px;
		z-index: +100;

	}

	#general {
		max-width: 100%;
		padding-top: 78px;
		padding-left: 0;
		padding-right: 0;
		margin-right: 0;
		margin-left: 0;
		background-color: #ffffff;
	}

	#general-home {
		max-width: 100%;
		padding-top: 78px;
		padding-left: 0;
		padding-right: 0;
		margin-right: 0;
		margin-left: 0;
		background-color: #9DA9B5;
	}

	#box-img {
		position: relative;
		margin: 0 0 0 0;
		padding: 0 0 0 0;
	}

	#box-tit {
		position: absolute;
		width: 700px;
		top: 35px;
		left: 50%;
		margin-left: -350px;
		font-family: myriad, Arial, Tahoma, Helvetica;
		text-align: center;
		letter-spacing: 1px;
		font-size: 20px;
		color: #000000;
	}

	#box-pun {
		position: absolute;
		width: 700px;
		top: 40px;
		left: 50%;
		margin-left: -350px;
		font-family: myriad, Arial, Tahoma, Helvetica;
		text-align: center;
		font-size: 42px;
		color: #000000;
	}

	#box-txt {
		position: absolute;
		width: 700px;
		top: 100px;
		left: 50%;
		margin-left: -350px;
		font-family: myriad, Arial, Tahoma, Helvetica;
		text-align: center;
		font-size: 16px;
		color: #6B7C8B;

	}


	#box-tit_home {
		position: absolute;
		width: 800px;
		top: 320px;
		left: 50%;
		margin-left: -400px;
		font-family: myriad, Arial, Tahoma, Helvetica;
		text-align: center;
		letter-spacing: 2px;
		font-size: 22px;
		color: #ffffff;
	}

	#box-pun_home {
		position: absolute;
		width: 800px;
		top: 330px;
		left: 50%;
		margin-left: -400px;
		font-family: myriad, Arial, Tahoma, Helvetica;
		text-align: center;
		font-size: 38px;
		color: #ffffff;
	}

	#box-txt_home {
		position: absolute;
		width: 800px;
		top: 380px;
		left: 50%;
		margin-left: -400px;
		font-family: myriad, Arial, Tahoma, Helvetica;
		text-align: center;
		font-size: 16px;
		color: #ffffff;

	}

	#box-txt-ps {
		position: absolute;
		width: 900px;
		top: 190px;
		left: 50%;
		margin-left: -450px;
	}

	#box-txt_twitter {
		position: absolute;
		width: 700px;
		top: 200px;
		left: 50%;
		margin-left: -350px;
		font-family: myriad, Arial, Tahoma, Helvetica;
		text-align: left;
		font-size: 14px;
		color: #6B7C8B;
	}

	#box-twitter {
		position: absolute;
		top: 200px;
		width: 900px;
		left: 50%;
		margin-left: -450px;

	}

	#box-txt_iconebook {
		position: absolute;
		width: 120px;
		top: 0px;
		left: 100%;
		margin-left: -10px;
		font-family: myriad, Arial, Tahoma, Helvetica;
		text-align: center;
		font-size: 12px;
		color: #6B7C8B;
	}

	#art_loghi {
		position: relative;
		background-image: url('../img/art_loghi_g.png');
		width: 1224px;
		height: 148px;
		left: 50%;
		margin-left: -612px;
		margin-top: 5px;
	}

	#link_veloci a {
		font-family: myriad, Arial, Tahoma, Helvetica;
		text-align: center;
		font-size: 16px;
		text-decoration: none;
		color: #40BAE9;
	}

	#box-table {
		position: relative;
		width: 992px;
		left: 50%;
		margin-left: -496px;
	}

	#credit {
		font-size: 12px;
	}

	#link_veloci_scuro {
		color: #656565;
	}

	#link_inglese a:link,
	a:visited {
		position: fixed;
		text-decoration: none;
		font-family: myriad, Arial, Tahoma, Helvetica;
		top: 60px;
		left: 100%;
		margin-left: -50px;
		font-size: 14px;
		color: #6B7C8B;
		z-index: +4;
	}

	#link_inglese a:hover {
		color: #40BAE9;
	}

	#break {
		position: relative;
		height: 350px;
	}


	/* tabella photoshoot */

	table {
		margin-top: 40px;
	}

	td {
		border: 3px solid #ffffff;
	}


	img.artdir {
		width: 100%;
	}

	img.spcps {
		width: 5px;
	}

	img.ps {
		width: 115px;
	}

	img.twitter_2 {
		width: 900px;
	}

	#testo_esterno {
		position: relative;
		margin: 0 0 0 0;
		padding: 0 0 0 0;
	}

	#testo_interno_1 {
		position: absolute;
		font-family: myriad, Arial, Tahoma, Helvetica;
		width: 320px;
		height: 124px;
		font-size: 0px;
		color: #000000;
		margin: -208px 0 0 0;
		padding: 80px 0 0 0;
	}

	#testo_interno_1:hover {
		font-size: 22px;
		font-weight: bold;
		text-align: center;
		color: #ffffff;
		background-image: url('../img/fondo_p.png');
		background-repeat: repeat;

	}

	#testo_interno_2 {
		position: absolute;
		font-family: myriad, Arial, Tahoma, Helvetica;
		width: 320px;
		height: 134px;
		font-size: 0px;
		color: #000000;
		margin: -80px 0 0 0;
		padding: 70px 0 0 0;

	}

	#testo_interno_2:hover {
		font-size: 14px;
		color: #6B7C8B;
		height: 110px;
		margin: -110px 0 0 0;
		padding: 100px 0 0 0;
	}

	/* Styles */

}