@charset "utf-8";

/*	Desktop sino a 1366 (la maggior parte dei notebook) */
	@media screen and (max-width: 1486px) {

		HTML {
			margin:0px;
			padding:0px;
			width:100%;
			height:100%;
			font-size: 0.815vw;
		}

		#Header {
			font-size: 0.8vw;
		}
		BODY.FakeModal #Content {
		    margin: 0px !important;
		    margin-top: 6.1vw !important;
		    width: calc(100% - 4rem) !important;
		    border: 0 !important;
		    background-color: #fbfbfb !important;
		    -webkit-border-radius: unset !important;
		    -moz-border-radius: unset !important;
		    border-radius: unset !important;
		    -webkit-box-shadow: unset !important;
		    -moz-box-shadow: unset !important;
		    box-shadow: unset !important;
		}

	}

/*	Schermi sopra i 1366 (solitamente fullHD) */
	@media screen and (min-width: 1487px) {

		HTML {
			margin:0px;
			padding:0px;
			width:100%;
			height:100%;
			font-size: 12.11px;
		}
		#Header {
			font-size:11px;
		}
		BODY.FakeModal {
		    padding-bottom: 3rem !important;
		}
		BODY.FakeModal #Content {
		    margin-top: 9rem !important;
		    margin-bottom: 0 !important;
		}

	}


	BODY {
		display:block;	
		font-family:var(--MainFont);
		overflow:hidden;
		background-color:#dddddd;
		overflow-y:scroll;
		position:relative;
		border-right: 1px solid #c0c0c0;
		margin:0px;
		padding:0px;
		min-height: 100%;
	}
	BODY:after {
		content: "";
		position: fixed;
		right: 0px;
		top: 0px;
		bottom: 0px;
		width: 1px;
		background-color: #c0c0c0;
		z-index: 55555;
	}
	.grayscale {
		filter: grayscale(100%);
		-webkit-filter: grayscale(100%); 
		-moz-filter: grayscale(100%);
		-ms-filter: grayscale(100%); 
		-o-filter: grayscale(100%);
		-webkit-filter: grayscale(1);
	}
	.opacized {
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
		filter: alpha(opacity=50);
		-moz-opacity: 0.5;
		-khtml-opacity: 0.5;
		opacity: 0.5;	
	}
	.noselect {
		-webkit-touch-callout: none; /* iOS Safari */
		-webkit-user-select: none;   /* Chrome/Safari/Opera */
		-khtml-user-select: none;    /* Konqueror */
		-moz-user-select: none;      /* Firefox */
		-ms-user-select: none;       /* IE/Edge */
		user-select: none;
	}
	
	A { outline:none !important; }
	
	#HiddenFrame { position:absolute;left:-4000px;top:-4000px;width:1px;height:1px;border:0; }

