@charset "UTF-8";
/* Simple fluid media
   Note: Fluid media requires that you remove the media's height and width attributes from the HTML
   http://www.alistapart.com/articles/fluid-images/ 
*/
img, object, embed, video {
	max-width: 100%;
}
/* IE 6 does not support max-width so default to width 100% */
.ie6 img {
	width:100%;
}

/*
	Dreamweaver Fluid Grid Properties
	----------------------------------
	dw-num-cols-mobile:		5;
	dw-num-cols-tablet:		8;
	dw-num-cols-desktop:	10;
	dw-gutter-percentage:	25;
	
	Inspiration from "Responsive Web Design" by Ethan Marcotte 
	http://www.alistapart.com/articles/responsive-web-design
	
	and Golden Grid System by Joni Korpi
	http://goldengridsystem.com/
*/

/* Mobile Layout: 480px and below. */

body {
	background-color:#069;
}

.gridContainer {
	margin-left: auto;
	margin-right: auto;
	width: 87.36%;
	padding-left: 1.82%;
	padding-right: 1.82%;

}

#corpo {
	max-width: 348px;
	padding: 7px;
	background-color: #FFF;
	border: 2px dashed #7fd875;
	border-radius: 23px;
	top:50px;
	margin: auto;
	position: relative;
}

#corpo:onclick {
	
	-webkit-transition: transform 2s linear .1s;
	-moz-transition: -moz-transform 2s linear .1s;
	-ms-transition: transform 2s linear .1s;
	-o-transition: transform 2s linear .1s;
	transition: transform 2s linear .1s;
	transform: scaleX(3);
}

#logo {
	float: left;
	margin: 5px;
	width: 100px;
}

#dati {
	width: 220px;
	margin-top: 9px;
	margin-left: 110px;	
}

#first {
	color: #5cbd2d;
	line-height: 15px;
	font-size: 14px;
	font-family: cursive;
}

#second {
	color: #00965e;
	line-height: 20px;
	font-size: 10px;
	font-family: fantasy;
}

#third {
	color: rgb(25, 111, 193);
	line-height: 20px;
	font-size: 14px;
	font-family: garamond;
}

#fourth {
	color: rgb(4, 167, 227);
	line-height: 10px;
	font-size: 14px;
	font-family: fantasy;
}

/* Tablet Layout: 481px to 768px. Inherits styles from: Mobile Layout. */

@media only screen and (min-width: 481px) {
body {
	background-color: #007;
	/*background-color: #023;*/
}	
	
.gridContainer {
	width: 90.675%;
	padding-left: 1.1625%;
	padding-right: 1.1625%;
}

#corpo {
	max-width: 348px;
	padding: 7px;
	border: 2px solid #7fd875;
	border-radius: 23px;
	margin-top: 10px; 
	margin: auto;
}

#logo {
	float: left; 
	margin: 2px;"
}

#immage {
	width: 100px;
}

}

/* Desktop Layout: 769px to a max of 1232px.  Inherits styles from: Mobile Layout and Tablet Layout. */

@media only screen and (min-width: 769px) {
body {
	/*background-color: #007;*/
	background-color: #023;
}	
	
.gridContainer {
	width: 88.2%;
	max-width: 1232px;
	padding-left: 0.9%;
	padding-right: 0.9%;
	margin: auto;
}

#corpo {
	max-width: 348px;
	padding: 7px;
	border: 2px dotted #7fd875;
	border-radius: 23px;
	margin-top: 10px; 
	margin: auto;
}

#logo {
	float: left; 
	margin: 2px;"
}

#immage {
	width: 100px;
}

}
