<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**

La struttura Ã¨ la seguente:

&lt;div id="up"&gt;
	&lt;aside&gt;
		menu
	&lt;/aside&gt;
	&lt;main&gt;
		&lt;nav class="breadcrumbs"&gt;bread / crumbs&lt;/nav&gt;
		&lt;article&gt;contenuto&lt;/article&gt;
		&lt;footer&gt;footer&lt;/footer&gt;
	&lt;/main&gt;
&lt;/div&gt;
&lt;footer&gt;&lt;/footer&gt;

Il trucco Ã¨ intecettare la somma dello spazio occupato dagli elementi breacdcrumbs, article e footer
se questa Ã¨ superiore a $(window).height(), allora imposto height di #up a auto e lascio allungare article, poi
importo la height di aside a $('html').height();

*/

html,body {
	/*box-sizing: content-box;*/
	background: #F8F8F8;
	background: #FFFFFF;
	padding: 0;
	margin: 0;
	position: relative;
	min-height: 100vh;
	font-family: 'Source Sans Pro', sans-serif;
	color:#111;
	font-size: 15px;
	position: relative;
	/*overflow-x: hidden !Important;*/
}

*,h1,h2,h3,h4,h5,p,ul,ol,li {
	font-family: 'Source Sans Pro', sans-serif;
}

.h4, h4, 
.h5, h5,
.h6, h6 {
	font-weight: 600;
	font-size:1.2rem;
}


nav#nav-mobile 
{
	display: none;
}

div#up {
	background: #F8F8F8;
	width:100%;
	max-width: 140rem;
	position: relative;
	overflow: auto;
	/*height: 100vh;*/
}

div#up main {
	overflow: hidden !Important;
	position: relative;
	height: 100%;
	width: calc(100% - 20rem);
	float: left;
}

div#up main nav.breadcrumbs {
	background: #cbcbcb;
	height: 4rem;
	line-height: 4rem;
	margin: 0;
	z-index: 64;
}

div#up main article {
	width: 100%;
	max-width: 62rem;
	background: #f8f8f8;
	clear: both;
}

div#up aside {
	width: 20rem;
	float: left;
	background: white;	
	position: relative;
	min-height: calc(100vh - 20rem);
	box-shadow: 3px 4rem 3px #EEE; /*4rem evita ombra sopra breadcrumbs */
	z-index: 1;
}

footer {
	z-index: 100000;
	display: block;
	background: #eee;
	width: 100%;
	padding: 0; 
	margin: 0;
	overflow: hidden;
	margin-top:-1px;
	max-width: 140rem;
}

footer {
	background:#eee;
	display: flex;
}

footer address {
	float: left;
	max-width: 20rem;
	width: 20rem;
	background: white;
	margin: 0;
	padding: 3rem 2rem 3rem 2rem;
	box-shadow: 3px -1px 3px #DDD;
	font-size: 0.9rem;
	font-style: normal;
	line-height: 1.1rem;
	flex:1;
	color:#888;
}

footer address a:link, 
footer address a:visited {
	color: #ee9400;
}

footer address a:hover {
	color:#444;
}

footer address div.address {
	margin-bottom: 2rem;
}

footer address div.address p {
	line-height: 1.15rem;
	margin: 0 0 0.5rem 0;
}

footer address div.loghi {
	margin-bottom: 2rem;
}

footer address div.loghi h4,
footer address div.social h4,
footer address div.newsletter h4
{
	font-size:0.95rem;
	text-transform: uppercase;
	color:#aaa;
}

footer address div.social {
	margin-bottom: 2rem;
}

footer address div.social i.fa {
	font-size:1.5rem;
}

footer address div.newsletter form input {
	border: solid 1px #ee9400;
	height: 2rem;
	line-height: 2rem;
	width: calc( 100% - 2.5rem);
	display: inline-block;
	margin: 0;
	padding: 0 6px;
	vertical-align: top;
}

footer address div.newsletter p {
	margin: 0;
}

footer address div.newsletter form i.fa {
	height: 2rem;
	width: 2rem;
	background: #ee9400;
	line-height: 2rem;
	text-align: center;
	font-size: 1.5rem;
	color:white;
	font-weight: bold;
	display: inline-block;
	cursor: pointer;
}

footer address div.newsletter form i.fa:hover {
	opacity: 0.8;
}

footer nav.quicklink {
	width: calc(100% - 20rem);
	max-width: 62rem;
	float: left;
	text-align:left;
	padding: calc(3rem) 0 0 30px;
	position: relative;
}

footer nav.quicklink .grid-container {
	margin: 0;
	padding: 0;
}

footer nav.quicklink h4 {
	font-size:1rem;
	text-transform: uppercase;
	color:#000;	
	line-height: 1rem;
}

footer nav.quicklink ul, 
footer nav.quicklink ul li {
	list-style: none;
	margin-left: 0;
}

footer nav.quicklink ul li a:link,
footer nav.quicklink ul li a:visited
{
	color:#666;
}

footer nav.quicklink ul li a:hover,
footer nav.quicklink ul li a:active {
color: #000;
}

footer nav.quicklink .grid-container .cell {
	padding-left: 5px;
}

footer nav.quicklink .grid-container .cell.partner-logos {
	padding-left: 0;
}


footer nav.quicklink .partner-logos {
	position: absolute;
	bottom:2.75rem;
	padding: 0.75rem 0;
	border-top: solid 1px #ccc;
	border-bottom: solid 1px #ccc;
}

footer nav.quicklink .partner-logos ul {
	display: flex;
	justify-content : space-between;
}

footer nav.quicklink .partner-logos ul li a {
	display: inline-block;
	height: 78px;
	background-color: transparent;
	padding:0;
}</pre></body></html>