@CHARSET "UTF-8";

html {
	color: #333;
	font-family: "Helvetica Neue", Helvetica, "Hiragino Sans GB", "Segoe UI",
		"Microsoft Yahei", Tahoma, Arial, STHeiti, sans-serif;
}

body {
	font-size: 14px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow: hidden;
}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code,
	form, fieldset, legend, input, textarea, p, blockquote, th, td, hr,
	button, article, aside, details, figcaption, figure, footer, header,
	hgroup, menu, nav, section {
	margin: 0px;
	padding: 0px;
}

input, textarea, div {
	resize: none;
	outline: none;
	font-size: inherit;
	font-family: inherit;
}

ul li {
	list-style: none;
}

a {
	text-decoration: none;
	color: #3c8dbc;
	cursor: pointer;
}

a:hover, a:active {
	text-decoration: none;
}

/* Common Styles */
.panel {
	box-shadow: 0 0 1px rgba(0, 0, 0, 0.1) !important;
	border-top: 3px solid #d2d6de;
	border-radius: 3px;
	margin: 15px;
	background: white;
}

.modal_box {
	background: rgba(0, 0, 0, 0.3);
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1050;
	display: none;
	overflow: auto;
}

.modal {
	width: 600px;
	display: none;
	margin: 30px auto;
	background: #fff;
}

.modal-header {
	line-height: 50px;
	padding: 0px 15px;
	border-bottom: 1px solid #e5e5e5;
	font-weight: normal;
	font-size: 16px;
	position: relative;
}

.modal-header .modal-close {
	position: absolute;
	right: 10px;
	top: 12px;
	line-height: 20px;
	color: #999;
	display: inline-block;
	padding: 0px 10px;
	cursor: pointer;
	font-weight: bold;
	font-size: 20px;
}

.modal-header .modal-close:hover {
	color: #222;
}

.modal-body {
	padding: 20px;
}

.modal-footer {
	border-top: 1px solid #e5e5e5;
	padding: 15px 20px;
	text-align: right;
}

.modal-footer .btn {
	margin-left: 5px;
}

.form-group {
	margin-bottom: 15px;
}

.form-group label {
	display: inline-block;
	margin-bottom: 5px;
}

.form-control {
	display: block;
	width: 100%;
	padding: 6px 12px;
	font-size: 14px;
	height: 34px;
	line-height: 34px;
	color: #555;
	background-color: #fff;
	background-image: none;
	border: 1px solid #ccc;
	box-sizing: border-box;
	border-radius: 3px;
}

.form-control[readonly] {
	background-color: #eee;
}

.form-control.inline {
	display: inline-block;
	width: 150px;
}

.form-control:focus {
	border-color: #3c8dbc;
	box-shadow: 0px 0px 3px #3c8dbc;
}

.btn {
	border-radius: 3px;
	box-shadow: none;
	cursor: pointer;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	display: inline-block;
	padding: 0px 15px;
	font-size: 14px;
	height: 34px;
	line-height: 34px;
	box-sizing: border-box;
	outline: none;
	border: 1px solid transparent;
}

.btn:disabled {
	opacity: 0.6;
	cursor: default;
}

.btn:disabled:hover {
	box-shadow: none !important;
}

.btn:hover {
	text-decoration: none;
	box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.2);
}

.btn:active {
	box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.2);
}

.btn-default {
	background: #f7f7f4;
	border: 1px solid #d2d2d2;
	color: #555;
}

.btn-primary {
	color: #fff;
	background-color: #3c8dbc;
	border-color: #3c8dbc;
}

.btn-success {
	color: #fff;
	background-color: #00a65a;
	border-color: #00a65a;
}

.btn-warning {
	color: #fff;
	background-color: #f0ad4e;
	border-color: #eea236;
}

.tk_select {
	font-size: 14px;
	height: 34px;
	line-height: 34px;
	color: #555;
	background-color: #fff;
	border: 1px solid #ccc;
	box-sizing: border-box;
	border-radius: 3px;
	margin: 0px;
	vertical-align: middle;
}

.toast-box {
	position: fixed;
	z-index: 99999;
	margin: 0px auto;
	width: 250px;
	left: 0;
	right: 0;
	top: 60px;
	bottom: 0;
	cursor: pointer;
}

.toast-box div {
	line-height: 40px;
	min-width: 250px;
	border-radius: 3px;
	box-shadow: 0 0 12px #999;
	color: #fff;
	opacity: .8;
	text-align: center;
}

.toast-box div i {
	margin-right: 10px;
	font-size: 16px;
}

.toast-box div.toast-error {
	background-color: #bd362f;
}

.toast-box div.toast-success {
	background-color: #51a351;
}

.toast-box div.toast-warning {
	background-color: #f89406;
}

.toast-box div.toast-info {
	background-color: #2f96b4;
}

.toast-box div:hover {
	opacity: 1;
}

#tk_overlay {
	position: fixed;
	background: #fff;
	opacity: 0.8;
	text-align: center;
	z-index: 2000;
}

#tk_overlay i {
	font-size: 24px;
}

.grid_box {
	margin: 0px 15px 15px;
}

.grid_container {
	border-top: 2px solid #d2d6de;
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
	background: rgba(255, 255, 255, 0.6);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
	overflow-x: auto;
}

.grid_table {
	width: 100%;
	border-spacing: 0;
	border-collapse: collapse;
}

.grid_table td {
	border: 1px solid #ddd;
	padding: 0px;
	position: relative;
}

.grid_table td, .grid_table .chk_container {
	line-height: 40px;
	height: 40px;
}

.grid_table td .grid_text {
	padding: 0px 10px;
	border-top: 1px solid transparent;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.grid_table .chk_container {
	display: block;
	border-right: 1px solid #cdcdcd;
	position: absolute;
	left: 0px;
	top: 0px;
	width: 40px;
	text-align: center;
	vertical-align: middle;
	height: 41px;
}

.grid_table .chk_container input {
	margin-top: 12px;
}

.grid_head {
	font-weight: bold;
}

.grid_row td .grid_text {
	height: 100%;
	overflow: hidden;
}

.grid_row_selected, .grid_row_selected:hover {
	background-color: #f3f3f1;
}

.grid_pager {
	margin-top: 15px;
	color: #646b75;
	height: 28px;
	line-height: 28px;
}

.pager_block {
	float: left;
}

.pager_btn {
	display: inline-block;
	height: 26px;
	width: 45px;
	float: left;
	cursor: pointer;
	border: 1px solid #ddd;
	background: #fff;
	border-radius: 3px;
	text-align: center;
	color: #3c8dbc;
	box-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
}

.pager_pre {
	margin: 0px 5px 0px 15px;
}

.pager_next {
	margin-right: 15px;
}

.pager_btn.pager_disable {
	background: #f5f5f5;
	color: #e5e5e5;
	cursor: default;
	box-shadow: none;
}

.grid_pager .txt {
	line-height: 26px;
	padding: 0px 10px;
	margin: 0px;
	border: 1px solid #ddd;
}

.grid_menu {
	position: absolute;
	right: 0px;
	top: 33px;
	z-index: 1;
	background: #fff;
	min-width: 120px;
	display: none;
	color: #333;
	padding: 5px 0px;
	border: 1px solid #eee;
}

.grid_menu li {
	line-height: 26px;
}

.grid_menu li:hover {
	background-color: #e1e3e9;
}

.menu_drop {
	position: relative;
}

.menu_drop:hover .grid_menu {
	display: block;
}

.popover {
	position: absolute;
}

#datepicker_box {
	background: white;
	border: 1px solid #e1e1e1;
	border-radius: 6px;
	width: 250px;
	z-index: 1100;
	box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.05);
}

.datepicker_month {
	padding-bottom: 10px;
	text-align: center;
	border-bottom: 1px solid #e1e1e1;
	margin: 10px 15px;
	line-height: 20px;
}

.datepicker_month span {
	display: inline-block;
	color: #444;
}

.datepicker_cal {
	width: 100%;
	padding: 0px 15px;
	border-spacing: 0px;
	margin-bottom: 20px;
}

.datepicker_cal td {
	text-align: center;
}

.datepicker_cal div {
	width: 28px;
	height: 28px;
	line-height: 28px;
	border-radius: 50%;
	margin: 0px auto;
	cursor: pointer;
	position: relative;
}

.datepicker_cal div:hover {
	background: #d5d5d5;
	color: #000;
}

.dp_cell_selected, .datepicker_cal .dp_cell_selected:hover {
	background: #00a65a;
	color: white;
}

.datepicker_cal_pager {
	width: 40px;
	display: inline-block;
	cursor: pointer;
}

.datepicker_time {
	padding: 10px 0px;
	text-align: center;
	border-top: 1px solid #e1e1e1;
	margin: 0px 15px;
	line-height: 32px;
}

.datepicker_time input {
	box-sizing: border-box;
	height: 30px;
	width: 50px;
	border-radius: 3px;
	padding-left: 5px;
	border: 1px solid #e1e1e1;
}

.spinner_wrap {
	position: relative;
	display: inline-block;
}

.spinner_wrap .spinner_btns {
	display: block;
	position: absolute;
	right: 0px;
	height: 28px;
}

.spinner_wrap .spinner_btns span {
	display: block;
	width: 18px;
	height: 14px;
	line-height: 14px;
	text-align: center;
	color: #666;
	cursor: pointer;
	-webkit-user-select: none;
	user-select: none;
}

.spinner_wrap .spinner_btns span:hover {
	color: #3c8dbc;
}

.mtree {
	padding: 5px 0px;
}

.mtree li {
	margin: 0px !important;
}

.mtree div {
	cursor: pointer;
	height: 22px;
	line-height: 22px;
	padding-right: 20px;
	box-sizing: border-box;
}

.mtree div:hover {
	background-color: #f7f7f4;
}

.mtree div.unselectable:hover {
	background-color: transparent;
}

.mtree .tree_selected:hover, .mtree .tree_selected {
	background-color: #e9e8e6;
}

.mtree div.tree_selected.unselectable:hover, .mtree div.tree_selected.unselectable
	{
	background-color: transparent;
}

.mtree div input {
	float: left;
	margin: 5px 2px 0px;
}

.tree_arr_box {
	display: block;
	float: left;
	width: 20px;
	height: 20px;
	text-align: center;
}

}
.tree_arr {
	background: url(../images/common/25.png) no-repeat;
	display: inline-block;
	margin: 2px 6px;
	width: 8px;
	height: 16px;
	background-position: -28px -10px;
}

.tree_arr_expanded .tree_arr {
	margin: 5px 2px;
	width: 16px;
	height: 10px;
	background-position: -9px -28px;
}

.combotree_box {
	border: 1px solid #e1e1e1;
	box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.05);
	min-width: auto;
	max-height: 300px;
	overflow: auto;
	border-radius: 4px;
	background: #fff;
}

/* Header Styles */
.common_header {
	height: 50px;
	background-color: #3c8dbc;
	position: relative;
}

.common_header .logo {
	display: block;
	float: left;
	font-size: 20px;
	line-height: 50px;
	text-align: center;
	width: 230px;
	background-color: #367fa9;
	color: #fff;
}

.header_menu {
	position: absolute;
	right: 0px;
}

.header_nav {
	height: 50px;
}

.header_nav .nav_item {
	float: left;
	position: relative;
}

.header_nav .nav_item #dropdown_toggle {
	display: block;
	color: #fff;
	line-height: 50px;
	padding: 0px 15px;
}

.header_nav .nav_item:hover, .header_nav .nav_item.nav_active {
	background-color: #367fa9;
}

.header_nav .nav_item.nav_active .header_drop {
	display: block;
}

.header_drop {
	position: absolute;
	right: 0px;
	top: 50px;
	min-width: 160px;
	display: none;
	z-index: 900;
	background-color: #fff;
	border: 1px solid #eeeeee;
	border-top: 0px;
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	overflow: hidden;
}

.header_drop a {
	padding: 5px 20px;
	display: block;
	color: #777777;
}

.header_drop a:hover {
	background-color: #e1e3e9;
	color: #333;
}

/* Menu Styles */
.menu_sidebar {
	position: absolute;
	min-height: 100%;
	background-color: #222d32;
	width: 230px;
	overflow: auto;
}

.sidebar_menus>li>a {
	padding: 12px 5px 12px 15px;
	display: block;
	color: #b8c7ce;
	border-left: 3px solid transparent;
	position: relative;
}

.sidebar_menus>li>a:hover, .sidebar_menus>li.active>a {
	color: #fff;
	background: #1e282c;
	border-left-color: #3c8dbc;
}

.sidebar_menus .pull-right {
	position: absolute;
	top: 15px;
	right: 18px;
}

.sidebar_menus .active .pull-right {
	-webkit-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	-o-transform: rotate(-90deg);
	transform: rotate(-90deg);
}

.sec_menu {
	background: #2c3b41;
	display: none;
}

.sec_menu a {
	color: #b8c7ce;
	display: block;
	padding: 5px 5px 5px 30px;
}

.sec_menu a i {
	margin-right: 3px;
}

.sec_menu a:hover {
	color: #fff;
}

.sec_menu .active a {
	color: #fff;
}

/* Footer Styles */
.main-footer {
	background: #fff;
	padding: 15px;
	color: #444;
	margin-left: 230px;
	border-top: 1px solid #d2d6de;
	height: 50px;
}

/* Content Styles */
.content-wrapper {
	margin-left: 230px;
	overflow: auto;
	background-color: #ecf0f5;
	position: relative;
}

.content_left {
	width: 200px;
	position: absolute;
}

.content_viewport {
	margin-left: 215px;
}

.content_header {
	padding: 15px;
}

.treeview {
	border: 1px solid #ccc;
	border-bottom: 0px;
	border-radius: 3px;
}

.treeview li {
	border-bottom: 1px solid #ccc;
	padding: 5px 10px;
}

/*# sourceMappingURL=common.css.map */