div.container {
	flex-basis: auto; 
	flex-grow: 1;
	flex-shrink: 1;
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 7px;
	padding-bottom: 7px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: stretch;
}

div.container > form  {
	flex-basis: 1326px;
	flex-grow: 0;
	flex-shrink: 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: stretch;
}

div.container > form > div {
	flex-basis: 10px; /* we need a specific value for the basis, we let it grow anyway */
	flex-grow: 1;
	flex-shrink: 1;
	overflow: auto;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: stretch;
}

#title {
	font-size: 20px;
	font-weight: 700;
	padding-top: 3px;	
	padding-bottom: 6px;	
}

div.section {
	padding-bottom: 14px;	
}

div.section h1 {
	font-size: 14px;
	font-weight: 700;
	padding-top: 7px;
	padding-bottom: 7px;	
}

table {
	border-collapse: collapse;
}

div.section > table th,
div.section > table td {
	padding-top: 1px;
	padding-bottom: 1px;
}

div.section > table td.action {
	padding-top: 5px;
	text-align: right;
}

div.section > table td.attributelabel {
	min-width: 200px;	
}

div.section > table td.attributevalue {
	min-width: 300px;
	text-align: right;
}

div.section > table div.i {
	display: inline-block;
	position: relative;
	cursor: default;	
}

div.section > table div.i > div {
	display: none;
	position: absolute;
	z-index: 1;
	border: 1px solid black;
	padding: 3px;
	background: white;
}

div.section > table div.i:hover > div,
div.section > table div.i > div:hover {
	display: block;
	left: 20px;
	bottom: -4px;
	min-width: 200px;
}

div.section > table div.i > div ul {
	padding-left: 1em;
	min-width: 300px;	
}

div.section > table td input[type="text"].attributevalue, 
div.section > table td input[type="password"].attributevalue {
	width: calc( 100% - 6px ); /* the 6px are for the border around the input field - this should be enough (we align the element to the left so it's okay if it's more than what is really needed) */
}

div.section span.information {
	display: block;
	border: 1px dashed rgb(10,10,10);
	color: rgb(10,10,10);
	padding: 5px 5px 5px 5px;
	margin-bottom: 7px;
	text-align: center;
	width: calc( 100% - 1px - 5px - 5px -1px );
}

div.section span.message {
	display: block;
	border: 1px dashed rgb(246,0,24);
	color: rgb(246,0,24);
	padding: 5px 5px 5px 5px;
	margin: 5px 0px 5px 0px;
	text-align: center;
	width: calc( 100% - 1px - 5px - 5px -1px );
}

span.small-message {
	display: block;
	color: rgb(246,0,24);	
	text-align: right;	
}

a.action {
	display: inline-block;
	color: white;
	background: #cc0000;
	border: 1px solid #cc0000;
	border-radius: 0px;
	padding-top: 2px;
	padding-bottom: 2px;
	padding-left: 8px;
	padding-right: 8px;	
	text-transform: uppercase;
	text-decoration: none;
	text-align: center;
	min-width: 100px;
}

a.action:not(:first-child) {
	margin-left: 5px;
}

a.action:hover {
	box-shadow: 0px 0px 22px -2px rgba(0,0,0,0.75);
	z-index: 100;
}

table.applications td a {
	text-decoration: none;
}

table.applications img.application {
	max-width: 240px;
	cursor: pointer;
}

table.applications td {
	padding-right: 13px;
}

table.applications td div.title {
	font-size: 150%;
	font-weight: 700;
}

table.applications td div.title a {
	color: black;
}

table.applications td div.description {
	font-size: 120%;
}

div.captcha {
	display: flex;
	flex-direction: row;
	justify-content: unset;
	align-items: center;
}

div.captcha > img {
	display: block;
	margin-right: 10px;
	width: 200px;
	height: 70px;
}

div.captcha > input[type="text"] {
	display: block;
	text-decoration: none;
	margin-right: 10px;
}

div.captcha > a {
	display: block;
	height: 16px;
}
