

@import url(http://fonts.googleapis.com/css?family=Voltaire);

@charset "utf-8";
body {
	margin: 0;
	padding: 0;
	color: #000;
	font-family: Arial, Helvetica, sans-serif;
	font-size: medium;
	line-height: 1.4;
	width: 100%;  
    height: 100%;    
    overflow: hidden;
}


/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 15px;
	padding-left: 0px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
}
a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}

/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color:#F90;
	text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
a:visited {
	color: #F90;
	text-decoration: underline;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
}

/* ~~ contenitore generale all'interno del quale inserire tutti i contenuti e gli altri contenitori ~~ */
.contenitore {
	width: 1260px;
	/*max-width: 1260px; max-width può essere impostata per evitare che la finestra si deformi eccessivamente sugli schermi widescreen. IE6 non supporta questa opzione. 
	min-width: 960px;*/
	height: 600px;
	margin-top: -300px;
	/*margin-right: auto;*/
	margin-bottom: -300px;
	
	position: absolute;
	left: 50%;
	margin-left: -630px;
	top: 50%;
	z-index: 0;
}

/* ~~ Questo è il div all'interno del quale si trova l'intestazione della pagina  ~~ */
.header {
	height: 25px;
	/* ~~larghezza non specificata, si allrga all'intera larghezza del browser~~ */
}

/* ~~ This is the layout information. ~~ 

1) Padding is only placed on the top and/or bottom of the div. The elements within this div have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.

*/

/* ~~ Questo è il div all'interno del quale si trovano i contenuti veri e propri della pagina  ~~ */
.contenuto {
	height: 480px;
	padding-top: 10px;
	padding-right: 0;
	padding-bottom: 10px;
	padding-left: 0;
	margin-top: auto;
	margin-bottom: auto;
	color: #FFF;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	z-index: 5;
}

/* ~~ This grouped selector gives the lists in the .content area space ~~ */
.contenuto ul, .content ol { 
	padding: 0 15px 15px 40px; /* this padding mirrors the right padding in the headings and paragraph rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to create the indention. These may be adjusted as you wish. */
}

/* ~~ Questo è il div all'interno del quale si trova il piè di pagina  ~~ */
.footer {
	height: 70px;
	padding-top: 5px;
	padding-right: 0;
	padding-bottom: 5px;
	padding-left: 10px;
	width: 100%;
}


/* ~~ miscellaneous float/clear classes ~~ */
.fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
	clear:both;
	height:0;
	font-size: 18px;
	line-height: 0px;
}
.menu {
	font-family: Voltaire, Arial, Helvetica, sans-serif;
	font-size: 17px;
	font-style: normal;
	float: right;
	padding-top: 0px;
	list-style-type: none;
	font-weight: lighter;
	padding-right: 20px;
}
.menu ul{
	margin: 0;
	padding: 0;
	float: left;
}

.menu ul li{
	display: inline;
}

.menu ul li a{
	float: left;
	color: #333;
	text-decoration: none;
	padding-right: 11px;
	padding-left: 11px;
}

.menu ul li a:visited{

}

.menu ul li a:hover{
	color: #F63 ; /*text color of selected and active item*/
	padding-top: 0px; /*shift text down 1px for selected and active item*/	
}

.menu  ul li .current{
	color: #F60;

}
#intestazione {
	font-family: Voltaire;
	float: left;
	font-size: 36px;
	color: #F90;
	font-weight: lighter;
}
.Left_Block {
	float: left;
	width: 25%;
	border-right-width: thin;
	border-right-color: #FFF;
	border-right-style: dotted;
	height: 480px;
	z-index: 5;
}
.Left_Gallery {
	float: left;
	width: 120px;
	/*border-right-width: thin;
	border-right-color: #FFF;
	border-right-style: dotted;*/
	height: 480px;
	z-index: 5;

}

.In_Left_Block {
	float: right;
	width: 220px;
	margin-top: 20px;
	z-index: 5;
}

.In_Left_Gallery {
	float: right;
	width: 100px;
	margin-top: 15px;
	z-index: 5;
}


.Right_Block {
	float: left;
	width: 690px;
	margin-left: 20px;
	overflow: auto;
	height: 480px;
	z-index: 5;

}
.Right_Gallery {
	height: 450px;
	position: absolute;
	bottom: 0px;
	top: 50px;
	left: 250px;

}

#sfondo{
	position:absolute;
	height:500px;
	width: 100%;
	margin: 0;
	padding: 0;
	top: 25px;
	z-index: -1;
}  

#sfondogen{  
    position:absolute;  
    height:100%;  
    width: 100%;  
    margin: 0;  
    padding: 0;  
}

.Logo_index {
	height: 100px;
	width: 100px;
	position: absolute;
	left:50%;
	margin-left:-50px;
	padding-top: 5px;
}

.Slide_index {
	height: 300px;
	width: 100%;
	position: absolute;
	margin-top:110px
    
}

.Footer_index {
	height: 80px;
	width: 100%;
	position: absolute;
	left:50%;
	margin-left:-140px;
	margin-bottom:5px    
}