/**
	Definizioni generiche box
*/

/**
 * Tutti i box hanno un margin bt di 1rem
 */
section.box { 
	margin-bottom: 1rem; 
}

/**
 * Il margine è resettato se close
 */
section.box.close {
	margin-bottom: 0;
}

section.box .head  { 
	border-top:solid 2px #000;
	border-bottom:solid 1px #000;
	padding-top:6px;
	margin-bottom: 8px;
	height: 37px;
    overflow: hidden;
    white-space: nowrap;
    max-width: 100%;
	text-overflow: ellipsis;
 }

section.box.close .head { border-top:solid 1px #000;  margin-top: -1px; margin-bottom: 0rem !Important; }
section.box .head h1, section.box .head .title { 
	line-height: 12px !Important; 
	font-weight: bold;
	text-transform: uppercase;	
	font-family: 'Arial Black','Arial Bold',Arial,sans-serif;
    font-weight: 500;
	text-transform: uppercase;
	font-size: 12px;
}
section.box .head h1 a:link, section.box .head h1 a:visited { color:#979797; }
section.box .head h1 a:active, section.box .head h1 a:hover { color:#000; }
section.box .head .icon { float:right; }

/**
 * Definisce se mostro il contenuto e quale icona
 */
/*section.box .body { font-size:18px; }*/
section.box.close .body,
section.box.close .foot {
	display: none;
}
section.box.close .head .icon-close { display: none; }
section.box.open .head .icon-open { display: none; }

section.box .foot {
	border-top: solid 1px #000; 
}