body {
	margin: 0;
	font-family: arial;
	min-width: 1280px;
	background: #eee;
}

.vid {
	display: none;
}

.header {
	background: #00467e;
	clear: both;
	height: 75px;
}

.header img {
	padding: 10px 0 10px 30px;
	float: left;
}

.header h1 {
	color: white;
	margin-left: 13%;
	padding: 20px;
}

.nav {
	clear: left;
	float: left;
	padding: 20px;
	max-width: 20%;
	margin: 30px 15px 30px 30px;
	box-shadow: 1px 1px 5px #b8b8b8;
    background-color: #fff;
	border-radius: 7px;
}

.nav ul {
	margin-top: 0;
	margin-left: 0;
	padding-left: 0;
	border-bottom: 1px solid #dadada;
	padding-bottom: 10px;
}

.nav ul ul {
	padding-left: 30px;
	border-bottom: none;
	padding-bottom: 0;
}
/* version li */
.nav li {
	list-style: none;
	font-size: 20px;
	color: #ff6c00;
}
/* category li */
.nav li.category {
	font-weight: bold;
	font-size: 16px;
	color: #00467e;
	cursor: pointer;
}

.nav li.category::before {
	content: '+ ';
}

.nav li.category.minus::before {
	content: '- ';
}

.nav ul ul.cat-wrap > ul {
	display: none;
}

/* issue kind li */
.nav li.kind {
	color: #1b67a6;
	list-style: disc;
	font-size: 15px;
	font-weight: bold;
}

.cat-wrap {
	padding-top: 2px;
}

.nav ul ul.cat-wrap > ul.expand {
	display: block;
}

/* issue li */
.nav li.issue {
	list-style: circle;
	font-weight: normal;
	font-size: 14px;
	color: black;
}

.nav li.issue a {
	text-decoration: none;
}

.content {
	float: left;
	max-width: 69%;
	margin: 30px 30px 30px 15px;
}

.static-content, .category-wrapper {
	border-left: 1px solid #dadada;
	box-shadow: 1px 1px 5px #b8b8b8;
    background-color: #fff;
	border-radius: 7px;
	padding: 30px;
	margin-bottom: 30px;
}

.category-wrapper h2 {
	margin-top: 0;
}

.category-wrapper > p {
	text-align: center;
}

.issue-wrapper {
	border-bottom: 1px solid #b8b8b8;
	margin-bottom: 10px;
}

.issue-wrapper > li {
	list-style: none;
	font-size: 19px;
	color: #1b67a6;
}

.issue-wrapper.New-Feature > li {
	margin-left: 115px;
}

.issue-wrapper.Bug > li {
	margin-left: 46px;
}

.issue-wrapper.Feature-Change > li {
	margin-left: 140px;
}

.issue-wrapper a {
	text-decoration: none;
}

.New-Feature,
.Bug,
.Feature-Change {
	background-repeat: no-repeat;
	padding-left: 20px;
}

.New-Feature {
	background-image: url('new_feature.png');
}

.Bug {
	background-image: url('bug.png');
}


.Feature-Change {
	background-image: url('feature_change.png');
}

.content img {
	float: left;
	padding: 20px;
}

.content h1 {
	color: #ff6c00;
	margin-bottom: 5px;
	margin-top: 0;
}

.content h1.fix {
	position: fixed;
	top: 0;
	background-color: #1b67a6;
	padding: 10px;
	width: 100%;
	color: #fff;
}