@charset "UTF-8";

/* Reset base */
* {
	box-sizing: border-box;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
	image-rendering: -webkit-optimize-contrast;
}

/* Contenitori principali */
#top,
#intestazione,
#corpo,
#footer {
	width: 100%;
	max-width: 1024px;
	min-height: auto;
	margin-left: auto;
	margin-right: auto;
}

/* TOP */
#top {
	position: relative;
	min-height: 25px;
	padding: 4px 10px;
	margin-top: 0;
	margin-bottom: 0;
	color: #5d8aa8;
	border-bottom: 1px dotted #5d8aa8;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	background-image: url(img/layout/tramab.png);
}

/* INTESTAZIONE */
#intestazione {
	position: relative;
	height: auto;
	margin-top: 0;
	margin-bottom: 0;
	border-top: 1px solid #5d8aa8;
	border-left: 1px solid #5d8aa8;
	border-right: 1px solid #5d8aa8;
}

/* CORPO */
#corpo {
	position: relative;
	min-height: 500px;
	height: auto;
	padding: 8px 4px 20px 4px;
	background-image: url(img/layout/tramab.png);
	border-top: 2px solid #5d8aa8;
	border-left: 1px solid #5d8aa8;
	border-right: 1px solid #5d8aa8;
	font-family: Arial, Helvetica, sans-serif;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
	align-items: start;
}

/* Titolo interno */
#intpagine {
	grid-column: 1 / -1;
	position: static;
	width: 100%;
	min-height: 35px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 30px;
	color: #5d8aa8;
	letter-spacing: 3px;
	padding: 0 4px;
	margin: 0 0 10px 0;
}

/* Stile comune box */
#boxss,
#box1,
#box2,
#box3,
#box4,
#box5,
#box6,
#box7,
#box8,
#box9,
#box10 {
	position: static;
	width: 100%;
	border: 1px solid #5d8aa8;
	font-family: Arial, Helvetica, sans-serif;
}

/* Box grande */
#boxss {
	grid-column: 1 / -1;
	min-height: auto;
	border: 0px;
    color: #5d8aa8;
    font-size: 18px;
    vertical-align: top;
    text-align: left;
	margin: 0;
	padding: 0;
}

#boxss p {
  margin-top: 0;
}
/* Box piccoli */
#boxss,
#box1,
#box2,
#box3,
#box4,
#box5,
#box6,
#box7,
#box8, 
#box9,
#box10 {
	min-height: auto;
}

/* FOOTER */
#footer {
	position: relative;
	width: 100%;
	min-height: 35px;
	padding: 8px 10px;
	background-image: url(img/layout/tramab.png);
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	color: #5d8aa8;
	border-top: 2px solid #5d8aa8;
	border-left: 1px solid #5d8aa8;
	border-right: 1px solid #5d8aa8;
	border-bottom: 2px solid #5d8aa8;
	margin-bottom: 5px;
	font-style: italic;
}

/* TABLET */
@media screen and (max-width: 900px) {
	#corpo {
		grid-template-columns: repeat(2, 1fr);
	}

	#intpagine {
		font-size: 24px;
		letter-spacing: 2px;
	}
}

/* MOBILE */
@media screen and (max-width: 600px) {
		#top {
		font-size: 11px;
		padding: 6px 8px;
	}

	#corpo {
		grid-template-columns: 1fr;
		padding: 8px;
		gap: 8px;
	}

	#intpagine {
		font-size: 20px;
		letter-spacing: 1px;
	}

	#boxss {
		min-height: auto;
	}
	
	#intestazione {
		min-height: auto;
	}

	#box1,
	#box2,
	#box3,
	#box4,
	#box5,
    #box6,
    #box7,
    #box8, 
    #box9,
    #box10{
		min-height: auto;
	}

	#footer {
		font-size: 12px;
		padding: 8px;
	}
}