
/*	-------------------------------------------------------------------------------	*/
/*	MENU IN PAGINA
/*	-------------------------------------------------------------------------------	*/
	.InPageMenu {
		float:right;
		width:20rem;
		overflow-x: hidden;
		box-sizing: border-box;
		margin-left:1rem;
		margin-bottom: 1rem;
	}
	.InPageMenu > UL {
		border:1px solid #cccccc;
	}
	.InPageMenu > UL > LI > UL > LI:last-of-type,
	.InPageMenu > UL > LI:last-of-type {
		border-bottom:0 !important;
	}
	.InPageMenu > UL, 
	.InPageMenu > UL > LI,
	.InPageMenu > UL > LI > UL,
	.InPageMenu > UL > LI > UL > LI {
		margin:0;
		padding:0;
		list-style: none;
		list-style-type: none;
		display: block;
	}
	.InPageMenu > UL > LI,
	.InPageMenu > UL > LI > UL > LI {
		font-size: 1.1rem;
		font-weight: 400;
		line-height: 2em;
		border-bottom: 1px solid #cccccc;
		color: var(--Page_Text_Color);
		padding-left: 1rem;
		padding-right: 1rem;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
		box-sizing: border-box;
		width:100vw;
		-webkit-tap-highlight-color: transparent;
		-webkit-touch-callout: none;
		-webkit-user-select: none;
		-khtml-user-select: none;
		-moz-user-select: none;
		-ms-user-select: none;
		user-select: none;
		background-color: #cccccc;
		color: #333333;
	}
	.InPageMenu > UL > LI > A,
	.InPageMenu > UL > LI > UL > LI > A {
		display: block;
		text-decoration: none;
		color: var(--Page_Text_Color);
		font-size: 1.3rem;
		line-height: 2.6em;
		margin-left: -1rem;
		margin-right: -1rem;
		padding-left: 1rem;
		padding-right: 1rem;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
		box-sizing: border-box;
		outline: none;
		background-color: #fafafa;
	}
	.InPageMenu > UL > LI > UL {
		display: block;
		background-color: #ffffff;
		margin-left: -1rem;
		margin-right: -1rem;
	}
	.InPageMenu > UL > LI > A:ACTIVE,
	.InPageMenu > UL > LI > A:FOCUS,
	.InPageMenu > UL > LI > A:HOVER,
	.InPageMenu > UL > LI > UL > LI > A:ACTIVE,
	.InPageMenu > UL > LI > UL > LI > A:FOCUS,
	.InPageMenu > UL > LI > UL > LI > A:HOVER {
		background-color: var(--Palette1) !important;
		color: #ffffff !important;
	}


/*	-------------------------------------------------------------------------------	*/
/*	IMMAGINE APERTURA
/*	-------------------------------------------------------------------------------	*/
	.PageImage {
		display: block;
		width: 100%;
		height: 22rem;
		overflow: hidden;
		margin-top: 8rem;
	}
	.PageImage IMG {
		width:100%;
	}

/*	-------------------------------------------------------------------------------	*/
/*	CONTENITORE TESTI
/*	-------------------------------------------------------------------------------	*/
	.Container {
	    
	}
	.Container .NewsDate {
		margin-top:2rem;
		margin-bottom: 2rem;
		font-size: 1.1rem;
		font-style: italic;
	}
	.Container .Testo {
		font-size: 1.1rem;
		line-height: 1.6em;
	}
	.Container .ElencoNotizie {
		max-width:71.222rem;
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		grid-column-gap: 2.5rem;
		grid-row-gap: 2.5rem;
		margin-left: auto;
		margin-right: auto;
	}
	.Container H3 {
		display: block;
		margin: 0;
		padding: 0;
		padding-top: 5rem;
		margin-bottom: 3rem;
		font-size: 3.5rem;
		font-weight: 900;
		color: #444444;
		text-align: center;
	}

	.Container .Argomenti {
		display: block;
		margin-top:2rem;
	}
	.Container .Argomenti UL,
	.Container .Argomenti UL LI {
		display: block;
		list-style: none;
		list-style-type: none;
		margin:0;
		padding: 0;
	}
	.Container .Argomenti UL {
		margin-top:0.7rem;
	}
	.Container .Argomenti UL LI {
		display: inline-block;
		margin-right: 0.5rem;
	}
	.Container .Argomenti UL LI A {
		display: block;
		text-decoration: none;
		color: #ffffff;
		background-color: var(--Palette1);
		line-height: 2em;
		font-size:0.9rem;
		padding-left: 1em;
		padding-right: 1em;
	}




/*	Mobile  */
	@media screen and (max-width: 440px) {

		.Container {
			font-size:1.2rem;
			margin-top: 7rem;
		}
		.PageImage {
		    margin-top: 6rem;
		}
		.PageImage IMG {
		    width: unset;
		    margin-top: 0;
		    height: 100%;
		    margin-left: -50%;
		}
		.InPageMenu {
		    float: none;
		    width: 100%;
		    overflow-x: hidden;
		    box-sizing: border-box;
		    margin-left: 0;
		    margin-bottom: 2rem;
		    margin-top: 3rem;
		}
		.Container .Testo {
		    font-size: 1.3rem;
		}

	}