@charset "UTF-8";
/* Contenuto fluido semplice
   Nota: per i contenuti di tipo fluido è necessario rimuovere gli attributi di altezza e larghezza del contenuto dal codice HTML
   http://www.alistapart.com/articles/fluid-images/ 
*/

/* IE 6 non supporta max-width, quindi viene usata per impostazione predefinita la larghezza 100% */
.ie6 img {
	width:100%;
}

/*
	Proprietà griglia fluida Dreamweaver
	----------------------------------
	dw-num-cols-mobile:		3;
	dw-num-cols-tablet:		3;
	dw-num-cols-desktop:	3;
	dw-gutter-percentage:	25;
	
	Ispirato da "Responsive Web Design" di Ethan Marcotte 
	http://www.alistapart.com/articles/responsive-web-design
	
	e Golden Grid System di Joni Korpi
	http://goldengridsystem.com/
*/

/* Layout mobile: 480 px e inferiori. */

.gridContainer {
	margin-left: auto;
	margin-right: auto;
	width: 84.9333%;
	padding-left: 3.0333%;
	padding-right: 3.0333%;
	max-width:50%; }
}
#LayoutDiv1 {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
}


p {
	font-family: Futura, 'Trebuchet MS', Arial, sans-serif;
	color: white;
	font-size:14px;
	line-height: normal;
	}

body {
	background:#fff url("images/background.jpg");
	background-repeat: no-repeat;
	background-attachment: fixed;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	text-align:center;

}

.link {
	max-width: 15%;
	margin: 15px 0px 25px 0px;
}

#logo {
margin: 22px 0px 10px 0px;
max-width: 80%;
}

footer {background-color: #332429;
	height:30px;
	width:100%;
	position:fixed;
	bottom:0;}

/* Layout tablet: da 481 px a 768 px. Eredita stili da: Layout mobile. */

@media only screen and (min-width: 481px) {
.gridContainer {
	width: 86.8%;
	padding-left: 3.1%;
	padding-right: 3.1%;
}
#LayoutDiv1 {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
}
p {margin: 50px 0px 50px 0px;
   font-size:16px;}

#logo {
margin: 30px 0px 50px 0px;
}
}

/* Layout desktop: da 769 px a 1232 px max.  Eredita stili da: Layout mobile e Layout tablet. */

@media only screen and (min-width: 769px) {
.gridContainer {
	width: 84%;
	max-width: 1232px;
	padding-left: 3%;
	padding-right: 3%;
	margin: auto;
}
#LayoutDiv1 {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
}

p {	margin: 30px 0px 30px 0px;
	font-size: 18px;
}

}
