body, html {
    height: 100%;
}
#appbar {
	height: 50px;
	background-color: #EAEDF0;
}
#appbar a {
	text-decoration: none;
}
#sidebutton {
	background-color: #EAEDF0;
}
.navbar-brand {
	display: none;
}
.avatar {
	display: inline-block;
	text-align: center;
	font-size: 20px;
	font-weight: 600;
	line-height: 46px;
	width: 50px;
	height: 50px;
	background-color: #F2F1F1;
	border: 1px solid #ccc;
	border-radius: 50%;
}
.avatar.xs {
	font-size: 18px;
	line-height: 34px;
	height: 38px;
	width: 38px;
}
.avatar.xl {
	font-size: 28px;
	line-height: 72px;
	width: 80px;
	height: 80px;
}
#main {
	padding: 0 0 90px 0;
}
#sidebar {
	position: fixed;
	top: 52px;
	left: 0;
	bottom: 0;
	width: 200px;
	color: #4b4d4c;
	background-color: #fff;
	border-right: 1px solid #F0E3E4;
	margin-left: -200px;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	z-index: 3;
	transition: margin 0.2s ease;
}
.sideopen #sidebar {
	margin-left: 0;
}
.sidemenu>li>a, .sub-menu>li>a {
	display: block;
	position: relative;
	text-decoration: none;
	color: #4b4d4c;
	overflow: hidden;
}
.sidemenu i {
	display: inline-block;
	vertical-align: middle;
	width: 1.5rem;
}
.sidemenu span {
	vertical-align: middle;
}
.sidemenu>li>a:hover, .sidemenu>li.active>a {
	text-decoration: none;
	color: #111;
}
.sidemenu>li.active>a {
	color: #000;
	background-color: #F2F1F1;
}
.sidemenu>li.active>a i {
	color: #007BFF;
}
.sidemenu a:hover {
	color: #000;
	background-color: #fafafa;
}
.sub-menu>li>a:hover {
	text-decoration: none;
	color: #111;
	background-color: #F2F1F1;
}
.sub-menu>li.active>a {
	text-decoration: none;
	color: #000;
	background-color: #F2F1F1;
}
.text-app {
	color: #33414E!important;
}
.bg-app {
	background-color: #33414E!important;
}
.border-bottom {
	border-bottom: 1px solid #ddd;
}
.border-top {
	border-top: 1px solid #ddd;
}
.icon-fw {
	display: inline-block;
	width: 1.25rem; /* 1.28571429em */
	text-align: center;
}
.icon-spin {
	-webkit-animation: icon-spin 2s infinite linear;
	animation: icon-spin 2s infinite linear;
}
@-webkit-keyframes icon-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes icon-spin {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(359deg);
		transform: rotate(359deg);
	}
}

/* home */
.hero {
	position: relative;
	height: 160px;
	background-repeat: no-repeat;
	background-position: center 10%;
	background-size: cover;
	margin: 0 -15px;
}
.hero .bar {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	line-height: 1.1;
	color: #fff;
	background-color: rgba(42, 44, 49, .6);
}
.hero a, .hero a:hover, .hero a:active, .hero a:visited {
	text-decoration: none;
	color: #fff;
}
.mainmenu a, .mainmenu a:hover, .mainmenu a:active, .mainmenu a:visited {
	text-decoration: none;
	color: #4b4d4c;
}
.mainmenu .badge {
	margin: -6px -6px 0 0;
}

@media (min-width: 1024px) {
	.navbar-brand {
		display: inline-block;
	}
	#sidebutton {
		display: none;
	}
	#sidebar {
		margin-left: 0;
	}
	#main {
		padding: 0 0 60px 200px;
	}
}

@media (min-height: 480px) {
	.hero {
		height: 200px;
	}
}