html, body {
	margin: 0;
	width: 100%;
	min-height: 100%;
	background-color: #000;
	color: #fff;
	font-family: 'Lucida Grande', 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
	font-size: 12px;
	-webkit-text-size-adjust: 100%;
}
a {
	color: #fff;
	text-decoration: none;
}

/* Layout */
div#wrapper {
	width: 100%;
	height: 100%;
	min-width: 360px;
	min-height: 240px;
	display: flex;
	flex-direction: column;
}
div#top {
	width: 100%;
	height: 120px;
	flex-grow: 0;
	display: flex;
	box-sizing: border-box;
	padding: 4px;
}
div#top div.column {
	flex-basis: 0;
	flex-grow: 1;
	align-self: flex-end;
}

div.content {
  margin: 38px 0 4px 0;
  padding: 4px;
  max-width: 640px;
}
div.title {
  font-weight: bold;
}
div.paragraph {
  margin-top: 14px;
}
ul li {
  display: flex;
}
div.li-label {
  min-width: 150px;
}
div.li-value {
	text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}