@charset "UTF-8";
/* CSS Document */

body{
margin:0;
padding:0;
border:0;
overflow:hidden;
height:100%; 
max-height:100%; 
background:url(../image/fondo-top.jpg) #000000 0 0 no-repeat fixed;

}

#framecontentTop, #framecontentBottom{
	position: absolute;
	top:0px;
	left:0px;
	width:955px;
	height:185px; /*Height of top frame div*/
	overflow:hidden; /*Disable scrollbars. Set to "scroll" to enable*/
}

#framecontentBottom{
top:auto;
bottom:0; 
height:54px; /*Height of bottom frame div*/
overflow:hidden; /*Disable scrollbars. Set to "scroll" to enable*/
background:url(../image/barra-sotto.jpg) no-repeat;

}

#maincontent{
position:fixed; 
top:185px; /*Set top value to HeightOfTopFrameDiv*/
left:0;
right:0;
bottom:54px; /*Set bottom value to HeightOfBottomFrameDiv*/
overflow:auto; 
}



* html body{ /*IE6 hack*/
padding: 185px 0 54px 0; /*Set value to (HeightOfTopFrameDiv 0 HeightOfBottomFrameDiv 0)*/
}

* html #maincontent{ /*IE6 hack*/
height: 100%; 
width: 100%; 
}

