@charset "utf-8";
/* CSS Document */

/** ************************************ DEFINIZIONE HTML, BODY **/
html {
	height: 100%;
}
body {
	position: relative;
	width: 100%;
	height: 100%;
	background-color: #FFF;
	font-family: Arial;
	font-size: 12px;
	color: #686868;
	text-align: center;
}
/** ************************************ DEFINIZIONE DIV STRUTTURALI ********************************************* **/

div#container {
	width: 300px;
	height: 200px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -100px;
	margin-left: -150px;
}
