/* *******************************************************************************************************
   CONTENITORI GENERICI PER IL LAYOUT DELLA PAGINA
   *******************************************************************************************************/

html, body {
	margin:0px;
	padding:0px;
	font-family:Arial, Verdana, Helvetica, Tahoma, sans-serif;
	font-size:14px;
	background-image:url(../img/background.jpg);
	background-position:top left;
	background-repeat:repeat;
}

/* div esterni per centratura della pagina */
div#body-contents{
	float:left;
	width:100%;
}
.wrapper{
	width:1000px;
	margin-left:auto; 
	margin-right:auto;
}

/* div principali per i contenuti */
div#main {
	float:left;
	width:1000px;
}
div#main > .top {
	float:left;
	width:1000px;
	height:21px;
	background-image:url(../img/box-top.png);
	background-position:top left;
	background-repeat:no-repeat;
}
div#main > .content {
	float:left;
	width:949px;
	padding-left:26px;
	padding-right:25px;
	padding-top:4px;
	padding-bottom:4px;
	background-image:url(../img/box-content.png);
	background-position:top left;
	background-repeat:repeat-y;
	min-height:300px;
	height:auto !important;
	height:300px;
}
div#main > .bottom {
	float:left;
	width:1000px;
	height:27px;
	background-image:url(../img/box-bottom.png);
	background-position:top left;
	background-repeat:no-repeat;
}

/* contenitori generici tarati sulle larghezze del sito */
.standard-container{
	float:left;
	width:949px;
}
.standard-container-tab{
	float:left;
	width:774px;
}



