html {
	position: relative;
}
body {
    margin: 0;
	background: #10323e;
    color: #eee;
	font-family: 'Open Sans', sans-serif;
	font-size: 16px;
	line-height: 24px;
	padding: 0;
	position:fixed;
	height: 100%;
	top:0;
	bottom:0;
	left:0;
	right:0;
}
.wrapper {
	position: absolute;
    left: 0;
    top: 60px;
    bottom: 0;
    width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
}
a {
    color: #86b8dc;
    text-decoration: none;
}
#global_preloader {
	display: none;
	position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 87px;
    z-index: 99;
}
#global_preloader .ico {
position: absolute;
    width: 100%;
    height: 100%;
    background: #0000008c;
    top: 0;
    left: 0;
    opacity: 0.8;
}
#global_preloader .ico::before {
display: block;
    content: "";
    position: absolute;
    width: 64px;
    height: 64px;
    top: 50%;
    left: 50%;
    margin: -32px 0 0 -32px;
    background: url(/images/ajax_loader.png) center center no-repeat;
    animation: dl-preloader 0.65s linear forwards infinite;
}
@keyframes dl-preloader {
  0%   {transform: rotate(0deg);}
  50%  {transform: rotate(180deg);}
  100%  {transform: rotate(360deg);}
}

h1.page_title {
	font-size: 26px;
    font-weight: 400;
    color: #fbfbfb;
    margin: 0 0 25px;
}
.clr::after {
    display: block;
    content: "";
    clear: both;
}
input[type="text"], input[type="password"] {
    font-family: 'Open Sans';
    font-size: 16px;
    border: 1px solid #ccc;
    outline:none;
	box-shadow: inset 1px 2px 5px 0px #989898;
	border-radius: 5px;
}
input[type="text"]:focus, input[type="password"]:focus {
	box-shadow: inset 1px 2px 5px 0px #989898, 0 0 3px 4px #3c9cbd;
}
#header, #footer {
	background: linear-gradient(#242d35, #1d252b);
	position:fixed;
	width: 100%;
    box-sizing: border-box;
	z-index: 9;
	box-shadow: 0 0 15px 0 #0b171b;
}
#header {
    padding: 0 10px;
	top:0;
	border-bottom: 1px solid #2a3640;
}
#logo {
    float: left;
}
#logo a {
	display:block;
    width: 200px;
	height: 60px;
    background: url(/images/logo.png) 5px center no-repeat;
	position:relative;
	z-index:9;
}
#menu_btn {
    position: fixed;
    right: 0;
    top: 0;
    padding: 20px 25px 21px 20px;
    cursor: pointer;
    border-left: 1px solid;
    border-color: transparent;
    z-index: 9991;
}
#menu_btn .bar:nth-of-type(1) {
	margin-top: 0px;
}
#menu_btn .bar:nth-of-type(3) {
	margin-bottom: 0px;
}
#menu_btn .bar {
position: relative;
    display: block;
    width: 28px;
    height: 2px;
    margin: 7px auto;
    background-color: #e2e2e2;
    border-radius: 10px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
#menu_btn.cross .bar:nth-of-type(1) {
	-webkit-transform: translateY(7px) rotate(-45deg);
	-ms-transform: translateY(7px) rotate(-45deg);
	transform: translateY(7px) rotate(-45deg);
}
#menu_btn.cross .bar:nth-of-type(2) {
	opacity: 0;
}
#menu_btn.cross .bar:nth-of-type(3) {
	-webkit-transform: translateY(-7px) rotate(45deg);
	-ms-transform: translateY(-7px) rotate(45deg);
	transform: translateY(-7px) rotate(45deg);
}

#content {
padding: 25px 15px 70px;
    position: relative;
    min-height: calc(100% - 182px);
}
#footer {
    border-top: 1px solid #2d3942;
    position: absolute;
	z-index: 91;
	height: 87px;
}
#bottom_nav {
    margin: 0;
    padding: 0;
    list-style: none;
}
#bottom_nav li {
    float: left;
width: 33.333%;
	border-right: 1px solid #2d3942;
    border-left: 1px solid #000;
	box-sizing: border-box;
}
#bottom_nav li a, #bottom_nav li .totop {
	display: block;
    text-align: center;
    color: #fff;
    text-decoration: none;
    padding: 12px 9px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
#bottom_nav li:first-child {
    border-left: none;
}
#bottom_nav li:last-child {
    border-right: none;
}
#footer .copy {
	color: #525f69;
    text-align: center;
    margin: 2px 0 4px;
    font-size: 11px;
	line-height: 16px;
	    padding: 0 15px;
}

/* navigation */
nav {
	height: 100%;
    width: 290px;
    right: 0;
    top: 60px;
    z-index: 999;
    position: fixed;
    overflow-y: auto;
    overflow-x: visible;
    transform: translate(290px,0);
}
nav .outer{
width: 280px;
    box-shadow: -2px 4px 10px 0 #000000b5;
    border-top: 1px solid;
    border-left: 1px solid;
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
}
nav ul{
    margin: 0;
    padding: 0;
    list-style: none;
}
/* overlay layer */
.ssm-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0,0,0,0.5);
    display: none;
    z-index: 99;
}
/* prevent scroll when nav is open */
.is-navOpen{
  overflow: hidden;
}
nav li {
border-top: 1px solid #252e35;
    border-bottom: 1px solid #000;
}
nav li a, nav li .logout {
    color: #eee;
    text-decoration: none;
    padding: 18px 20px;
    display: block;
	position: relative;
}
nav ul li.login {
    border-top: none;
}
nav ul li:last-child {
    border-bottom: none;
}
#menu_btn.cross, nav .outer {
background: #1c2329;
    border-color: #252e35;
}
nav ul ul {
    padding: 0 0 0 30px;
}
nav ul ul li a {
    padding-left: 30px;
}
nav ul ul li a::before {
	display: block;
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    top: 50%;
    left: 10px;
    margin-top: -5px;
}
nav ul ul li.open a::before {
    background: #68c352;
}
nav ul ul li.run a::before {
    background: #f38c21;
}
nav ul li.sub li {
    border: none;
}
nav .name {
padding: 10px 15px 10px 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #55a0e0;
    background: linear-gradient(#1c2329, #14191d);
    border-bottom: 1px solid #000;
}
nav .fas {
    margin-right: 6px;
    width: 20px;
    text-align: center;
}
nav .kn {
	background: url(/images/kn_white.png) left 0px no-repeat;
    height: 16px;
    vertical-align: top;
    margin-top: 4px;
}
nav ul .sub > a {
    padding-bottom: 12px;
}

#totop {
	display: none;
	position: fixed;
    width: 50px;
    height: 50px;
    background: url(/images/arrow_totop.png) center 15px no-repeat #121415;
    bottom: 25px;
    left: 50%;
    margin-left: -25px;
    border: 1px solid #36383a;
    box-shadow: 0 0 12px 0px #000;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 1s;
    z-index: 9;
}
#totop.active {
    opacity: 0.95;
}
div.btn, input.btn, a.btn, button.btn {
height: 70px;
    line-height: 66px;
    display: block;
    background: linear-gradient(#0d6198, #0b406f) 0 0 no-repeat;
    box-shadow: inset 0 2px 4px -2px rgba(255, 255, 255, 0.5), inset 0 -2px 5px -1px rgba(0, 0, 0, 0.3)!important;
    border-radius: 3px;
    color: #b7cade!important;
    text-shadow: 0 -1px 0px rgb(0 0 0 / 50%);
    outline: none!important;
    position: relative;
    cursor: pointer!important;
    text-align: center;
    text-decoration: none;
    font-family: arial,sans-serif;
    width: 150px;
}
div.btn:active, input.btn:active, a.btn:active, button.btn:active {
    background: linear-gradient(#0d4179 20%, #0e4980 80%) 0 0 no-repeat;
    text-shadow: 0 -1px 0px rgb(0 0 0 / 80%);
}
#sys_msg {
	display: none;
    position: fixed;
    top: 80px;
    right: 15px;
    width: 300px;
    min-height: 20px;
    line-height: 20px;
    color: #fff;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
    z-index: 98;
    box-sizing: content-box;
    padding: 20px 15px 20px 70px;
    border-radius: 10px;
    box-shadow: inset 0 1px 3px -1px #fff, -1px 1px 15px 0px #000;
    cursor: pointer;
}
#sys_msg::before {
	position: absolute;
    left: 4px;
    top: 5px;
    bottom: 5px;
    content: "";
    width: 56px;
    border-right: 1px dashed rgba(255, 255, 255, 0.4);
}
#sys_msg.success {
    background: linear-gradient(#6bb14b, #407b31);
}
#sys_msg.success::before {
	background: url(/images/icon_msg_success.png) center center no-repeat;
}
#sys_msg.error {
	background: linear-gradient(#b14b4b, #7b3131);
}
#sys_msg.error::before {
	background: url(/images/icon_msg_error.png) center center no-repeat;
}
#sys_msg.warning {
background: linear-gradient(#4b7fb1, #314f7b);
}
#sys_msg.warning::before {
	background: url(/images/icon_msg_warn.png) center center no-repeat;
}
.own{
	color: #5dc3ff;
}
.st0 {color: #4ecc37;}
.st1, .st2 {color: #ea9c25;}
.st4 {color: #ea4925;}
.h_outerbox {
    margin: 0 0 50px;
}
.h_outerbox .h_title {
font-weight: 300;
    font-size: 24px;
    padding-bottom: 20px;
	text-align:center;
}
.h_outerbox .h_sep {
height: 16px;
    width: 100%;
    position: relative;
    margin: 0 auto 20px;
}
.h_outerbox .h_sep div {
    width: 100%;
    position: absolute;
    height: 1px;
    background: linear-gradient(to right, transparent, #fff 48.5%, transparent 48.5%, transparent 51.5%, #fff 51.5%, transparent);
}
.h_outerbox .h_sep div::before {
display: block;
    position: absolute;
    content: "";
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    left: 50%;
    margin: 0 0 0 -6px;
    top: -5px;
}
.h_outerbox .h_innerbox {
	text-align:justify;
}
