* {
	/*border: 1px solid red;*/
	margin: 0;
	padding: 0;
}

body {
	font-family: Arial, sans-serif;
	background-color: #F8F8FF;
	font-size: 15px;

}

#container {
	width: 90%;
	margin: auto;
}

#header {
	font-size: 25px;
	padding: 10px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#header img {
	max-width: 200px;
	max-height: 100px;
}

.version-header {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	font-size: 25px;
	padding: 10px;
	color: white;
	font-weight: bold;
	background-color: #2c74bf;
	cursor: pointer;
}

.version-header-description {
	display: flex;
	justify-content: space-between;
	min-width: 210px;
	align-items: baseline;
}

.header-active,
.version-header:hover {
	background-color: #215e9d;
}

.version-date-release {
	font-size: 16px;
	color: #f2f2f2;
	font-weight: normal;
}

.version-title{
	font-size: 18px;
	padding-left: 15px;
}

.version-content {
	background-color: #fafafa;
	margin-bottom: 20px;
	overflow: hidden;
	max-height: 0;
	transition: max-height 0.2s ease-out;
}

.icon-collapse {
	padding-right: 10px;
	font-size: 15px;
	color: #c6c6c6;
}

.version-header:after {
	content: '\203A';
	font-size: 30px;
	color: white;
	padding-left: 10px;
}

.header-active:after {
	content: "\2304";
}

.type {
	display: flex;
}

.type-header {
	padding: 20px 10px;
	text-align: center;
	font-weight: bold;
	color: #215e9d;
	min-width: 105px;
}

.type-icon {
	font-size: 40px;
}


.type-title {
	font-size: 20px;
}

.type-content {
	padding: 20px;
	flex: 1;
}

.version-content ul {
	list-style: none;
}

.content-line {
	padding: 10px 0;
	padding-bottom: 10px;
	border-bottom: 1px solid #d9d9d9;
}

.content-header {
	font-weight: bold;
	margin-bottom: 5px;
	text-transform: uppercase;
}