@charset "utf-8";
/**
 *
 * CSS generico per pagine pubbliche
 *
 * 
 */

* {
	margin:0;
	padding:0;
}

/** General Style Info **/
body {
	background: #003d4c;
	color: #fff;
	font-family: face_regular,sans-serif;
	font-size:90%;
	margin: 0;
}
a {
	color: #ddd;
	text-decoration: none;
	font-weight: normal;
}
a:hover {
	color: #fdd;
	text-decoration:none;
}
a img {
	border:none;
}
h1, h2, h3, h4 {
	font-family: face_regular, sans-serif;
	margin-bottom:0.5em;
}
h1 {
	color: #EEE;
	font-size: 400%;
	text-shadow: #000 5px 5px 10px;
	
}
h2 {
	color: #EEE;
	font-size: 190%;
}
h3 {
	color: #EEE;
	font-size: 150%;
}
h4 {
	color: #EEE;
	font-size: 130%;
}

h5 {
	color: #EEE;
	font-size: 110%;
}
ul, li {
	margin: 0 12px;
}
p {
	margin: 0 0 1em 0;
}

/** Layout **/
#container {
	width:960px;
	margin: auto;
}

#header{
	padding: 10px 20px;
	border:0px;
	border-bottom:1px solid #c33;
}
#main
	{
	width: 100%;
	clear: both;
	overflow: auto;
	}

#cont_1, #cont_2, #cont_3
	{
	float: left;
	width: 470px;
	padding: 5px;
	text-align:center;
	}

	
#buttonlink
	{
	display: block;
	color:#000;
	font-family: face_regular, sans-serif;
	font-size: 180%;
	background: #666;
	padding:4px;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#666), to(#eee));
	background-image: -webkit-linear-gradient(top, #666, #eee);
	background-image: -moz-linear-gradient(top, #666, #eee);
	background-image: -ms-linear-gradient(top, #666, #eee);
	background-image: -o-linear-gradient(top, #666, #eee);
	background-image: linear-gradient(top, #666, #eee);
	text-shadow: #eee 0px 1px 0px;
	-moz-box-shadow: inset 0 1px 4px rgba(3, 3, 3, 0.3);
	-webkit-box-shadow: inset 0 1px 4px rgba(3, 3, 3, 0.3);
	box-shadow: inset 0 1px 4px rgba(3, 3, 3, 0.3);
	border-color: #333;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	text-decoration: none;
	text-align:center;
	}
	
#buttonlink:hover
	{
	background: #c03;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#c03), to(#901));
	background-image: -webkit-linear-gradient(top, #c03, #901);
	background-image: -moz-linear-gradient(top, #c03, #901);
	background-image: -ms-linear-gradient(top, #c03, #901);
	background-image: -o-linear-gradient(top, #c03, #901);
	background-image: linear-gradient(top, #c03, #901);
	color: #ccc;
	text-shadow: #333 0px 1px 0px;
	-moz-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.3);
	-webkit-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.3);
	box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.3);
	}


#footer {
	clear: both;
	padding: 6px 10px;
	text-align: right;
	border:0px;
	border-top:1px solid #c33;
}


