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

.box { 
	display:block; 
	float:left; 	
	width:auto;		
	max-width:100%;
	box-sizing: border-box; 
	border:1px solid transparent;
	line-height:150%;
	margin:0 0 6px 0;
}

/* - clean - */
.box.clean { padding:8px }
 

/* - portlet - */ 
.box.portlet { width:100%; padding:8px; }
.box.portlet:hover ul li:last-child { opacity:1.0 }
.box.portlet:hover ul li b { text-decoration:underline }
.box.portlet:hover ul li i { font-size:120% }
.box.portlet ul { 
	box-sizing: border-box;
	list-style: none;
	padding:0;	
	margin: -8px 0px 8px -8px;	
	width:100%;
	display:block;
	float:left;
}
.box.portlet ul li {	
	display:block; 
	float:left;
	margin:0;
	padding: 4px 6px;
	vertical-align:top;
	line-height:130%;
	white-space:auto;
}
.box.portlet ul li:first-child { overflow:hidden; max-width:16px; }
.box.portlet ul li:last-child {	float:right; margin-right:-16px; white-space:nowrap; opacity:0.7 }
.box.portlet ul li:last-child i { padding-left:10px }
.box.portlet ul li b { font-size:110% }
.box.portlet ul li small { font-size:85%; opacity:0.7 }
.box.portlet hr { height: 0px; border: none; border-top:1px dotted #fff; opacity:0.5 }
 
/* - stripped - */ 
.box.striped { 
	border-left-width:8px; 
	padding:8px; 
	width:100%;
}


/* - headered - */ 
.box.headered {  padding:8px  }
.box.headered h1, .box.headered h2, .box.headered h3 { width:100%; padding:4px 8px; margin:-8px 0 8px -8px } 
.box.headered h1 { font-weight:bold; font-size:120%  }
.box.headered h2, .box.headered h3 { font-weight:normal; font-size:100% }
 

/* - event - */ 
.box.event { width:100% }
.box.event ul { 
	box-sizing: border-box;
	list-style: none;
	padding:0;	
	margin: 0;	
	max-width:33%;
	display:block;
	float:left;
}
.box.event ul li {	
	margin:0;
	margin: 0px 4px;
	padding: 8px 8px;
	line-height:110%;
	border-top:1px dotted rgba(255, 255, 255, 0.66);
}
.box.event ul li:first-child { border:none }
.box.event ul li * { margin:0 }
.box.event div {
	right:2px;
	top:0px;
	box-sizing: border-box;
	padding: 4px 8px;	
	float:left;
	margin: 0;	
	width:67%;
}




.box.clear { clear:both; width:100% }
.box.hover       { opacity:0.85 }
.box.hover:hover { opacity:1 }</pre></body></html>