* {
	box-sizing: border-box;
}
.header-panel {
	background-color: #009587;
	height: 144px;
	position: relative;
	z-index: 3;
}
.header-panel div {
	position: relative;
	height: 100%;
}
.header-panel h1 {
	color: #FFF;
	font-size: 20px;
	font-weight: 400;
	position: absolute;
	bottom: 10px;
	padding-left: 35px;
}

.menu {
	overflow: auto;
	padding: 0;
}
.menu, .menu * {
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}
.menu ul {
	padding: 0;
	margin: 7px 0;
}
.menu ul li {
	list-style: none;
	padding: 20px 0 20px 50px;
	font-size: 15px;
	font-weight: normal;
	cursor: pointer;
}
.menu ul li.active {
	background-color: #dedede;
	position: relative;
}
.menu ul li a {
	color: rgb(51, 51, 51);
	text-decoration: none;
}

.pages {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 4;
	padding: 0;
	overflow: auto;
}
.pages > div {
	padding: 0 5px;
	padding-top: 64px;
}

.pages .header {
	color: rgb(82, 101, 162);
	font-size: 24px;
	font-weight: normal;
	margin-top: 5px;
	margin-bottom: 60px;
	letter-spacing: 1.20000004768372px;
}

.page {
	transform: translateY(1080px);
	transition: transform 0 linear;
	display: none;
	opacity: 0;
	font-size: 16px;
}

.page.active {
	transform: translateY(0px);
	transition: all 0.3s ease-out;
	display: block;
	opacity: 1;
	margin-top: 100px;
}

#opensource {
	color: rgba(0, 0, 0, 0.62);
	position: fixed;
	margin-top: 50px;
	margin-left: 50px;
	z-index: 100;
}

#source-modal h4 {
	color: black;

}

.alert {
	padding: 15px;
	margin-bottom: 20px;
	border: 1px solid transparent;
	border-radius: 4px;
}
.alert h4 {
	margin-top: 0;
	color: inherit;
}
.alert .alert-link {
	font-weight: bold;
}
.alert > p,
.alert > ul {
	margin-bottom: 0;
}
.alert > p + p {
	margin-top: 5px;
}
.alert-dismissable,
.alert-dismissible {
	padding-right: 35px;
}
.alert-dismissable .close,
.alert-dismissible .close {
	position: relative;
	top: -2px;
	right: -21px;
	color: inherit;
}
.alert-success {
	color: #3c763d;
	background-color: #dff0d8;
	border-color: #d6e9c6;
}
.alert-success hr {
	border-top-color: #c9e2b3;
}
.alert-success .alert-link {
	color: #2b542c;
}
.alert-info {
	color: #31708f;
	background-color: #d9edf7;
	border-color: #bce8f1;
}
.alert-info hr {
	border-top-color: #a6e1ec;
}
.alert-info .alert-link {
	color: #245269;
}
.alert-warning {
	color: #8a6d3b;
	background-color: #fcf8e3;
	border-color: #faebcc;
}
.alert-warning hr {
	border-top-color: #f7e1b5;
}
.alert-warning .alert-link {
	color: #66512c;
}
.alert-danger {
	color: #a94442;
	background-color: #f2dede;
	border-color: #ebccd1;
}
.alert-danger hr {
	border-top-color: #e4b9c0;
}
.alert-danger .alert-link {
	color: #843534;
}

.close {
	float: right;
	font-size: 21px;
	font-weight: bold;
	line-height: 1;
	color: #000;
	text-shadow: 0 1px 0 #fff;
	filter: alpha(opacity=20);
	opacity: .2;
}
.close:hover,
.close:focus {
	color: #000;
	text-decoration: none;
	cursor: pointer;
	filter: alpha(opacity=50);
	opacity: .5;
}
button.close {
	-webkit-appearance: none;
	padding: 0;
	cursor: pointer;
	background: transparent;
	border: 0;
}