.chromeframe {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	width: 100%;
	z-index: 9999;
	background: #ffff00;
	color: #000;
	height: 25px;
	line-height: 25px;
	padding: 0.2em 0;
	text-align: center;
}

html, body {
	height: 100%;
	background: #f1f1f1;
}

body, input, button, select {
	font-size: 13px;
	font-weight: 400;
	line-height: 18px;
}

label {
	user-select: none;
	margin-bottom: 0;
}

a {
	color: #0074a2;
	text-decoration: none;
}

a:hover, a:active, a:focus {
	color: #2ea2cc;
	text-decoration: none;
}

.bg-gainsboro{
    background-color:#C0C0C0
}

.text-white, a.text-white {
    color: #fff;
}

#timeoutsess {
	display: none;
}

#timeoutsess a {
	color: #0000FF;
}

#sb-container {
	z-index: 2000 !important;
}

.red {
	color: red;
}

.yellow {
    color: yellow;
}

.m-bottom {
	margin-bottom: 10px;
}

.m-left {
	margin-left: 10px;
}

.m-bottom-none {
	margin-bottom: 0;
}

.pointer,.fa-pointer,.icon-pointer{
    cursor: pointer;
}

.icon-pointer {
	margin-top: 10px;
}

.text-middle {
	height: 32px;
	line-height: 32px;
}

.nvwrap {
	position: relative;
	min-height: 100%;
	height: auto;
	background: #fff;
	overflow-x: hidden;
	overflow-y: hidden;
}

h1, h2, h3, h4, h5, h6 {
	margin-top: 0;
	margin-bottom: 10px;
	line-height: 22px;
}

.error {
	color: red;
}

/* Notify */
.m-notify-container {
    position: fixed;
    z-index: 10000;
    pointer-events: none;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 15px;
}

.m-notify-container.is-top-center,
.m-notify-container.is-top-left,
.m-notify-container.is-top-right {
    width: 100%;
    top: 0;
    left: 0;
}

.m-notify-container.is-top-left {
    -ms-flex-align: start;
    -webkit-box-align: start;
    align-items: flex-start;
}

.m-notify-container.is-top-center {
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
}

.m-notify-container.is-top-right {
    -ms-flex-align: end;
    -webkit-box-align: end;
    align-items: flex-end;
}

.m-notify-container.is-center {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
}

.m-notify-container.is-bottom-center,
.m-notify-container.is-bottom-left,
.m-notify-container.is-bottom-right {
    bottom: 0;
    left: 0;
    width: 100%;
    -ms-flex-pack: end;
    -webkit-box-pack: end;
    justify-content: flex-end;
}

.m-notify-container.is-bottom-left {
    -ms-flex-align: start;
    -webkit-box-align: start;
    align-items: flex-start;
}

.m-notify-container.is-bottom-center {
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
}

.m-notify-container.is-bottom-right {
    -ms-flex-align: end;
    -webkit-box-align: end;
    align-items: flex-end;
}

.m-notify-container .m-notify-wrapper {
    display: inline-block;
    max-width: 500px;
}

.m-notify-container .m-notify-wrapper .m-notify {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
    padding: 9px 10px;
    font-size: 14px;
    overflow: hidden;
    border-radius: 4px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-shadow: 0 1px 8px rgba(0, 0, 0, 0.15);
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.15);
    color: #fff;
    background: rgba(0, 0, 0, 0.75);
    pointer-events: all;
    position: relative;
}

.m-notify-container .m-notify-wrapper .m-notify .m-notify-icons {
    float: left;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-right: 10px;
}

.m-notify-container .m-notify-wrapper .m-notify .m-notify-icons svg {
    display: inline-block;
    width: 22px;
    height: 22px;
}

.m-notify-container .m-notify-wrapper .m-notify .m-notify-content {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
}

.m-notify-container .m-notify-wrapper .m-notify .m-notify-description {
    line-height: 1.6;
    color: #fff;
}

.m-notify-container .m-notify-wrapper+.m-notify-wrapper {
    margin-top: 10px;
}

.m-notify-container .m-notify-wrapper:after,
.m-notify-container .m-notify-wrapper:before {
    content: "";
    clear: both;
    display: table;
}

.m-notify-fade-in {
    -webkit-animation: m-notify-fade-in 0.3s;
    animation: m-notify-fade-in 0.3s;
}

.m-notify-fade-out {
    -webkit-animation: m-notify-fade-out 0.3s;
    animation: m-notify-fade-out 0.3s;
}

@keyframes m-notify-fade-in {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes m-notify-fade-out {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    to {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }
}

/* Alert */
.m-alert-fade-in {
    -webkit-animation: m-alert-fade-in 0.3s;
    animation: m-alert-fade-in 0.3s;
}

.m-alert-fade-out {
    -webkit-animation: m-alert-fade-out 0.3s;
    animation: m-alert-fade-out 0.3s;
}

@keyframes m-alert-fade-in {
    0% {
        transform: scale(0.7);
    }

    45% {
        transform: scale(1.05);
    }

    80% {
        transform: scale(0.95);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes m-alert-fade-out {
    0% {
        transform: scale(1);
    }

    45% {
        transform: scale(0.95);
    }

    80% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(0.7);
    }
}

.m-alert-container {
    display: flex;
    position: fixed;
    z-index: 2050;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-x: hidden;
    transition: background-color 0.1s;
    background-color: transparent;
    -webkit-overflow-scrolling: touch;
    background-color: rgba(0, 0, 0, 0.4);
}

.m-alert-container .m-alert {
    position: relative;
    box-sizing: border-box;
    flex-direction: column;
    justify-content: center;
    width: 500px;
    max-width: 100%;
    padding: 15px;
    border: none;
    border-radius: 10px;
    background: #fff;
    font-family: inherit;
    font-size: 16px;
    line-height: 1.5;
    z-index: 1;
}

.m-alert-container .m-alert .m-alert-header {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.m-alert-container .m-alert .m-alert-header .m-alert-icon {
    position: relative;
    box-sizing: content-box;
    justify-content: center;
    width: 5em;
    height: 5em;
    margin: 1.25em auto 1.875em;
    border: 0.25em solid transparent;
    border-radius: 50%;
    font-family: inherit;
    line-height: 5em;
    cursor: default;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: flex;
}

.m-alert-container .m-alert .m-alert-header .m-alert-icon::before {
    display: flex;
    align-items: center;
    height: 100%;
    font-size: 3.75em;
}

.m-alert-container .m-alert .m-alert-header .m-alert-icon-info {
    border-color: #9de0f6;
    color: #3fc3ee;
}

.m-alert-container .m-alert .m-alert-header .m-alert-icon-info:before {
    content: 'i';
}

.m-alert-container .m-alert .m-alert-header .m-alert-icon-success {
    border-color: #a5dc86;
    position: relative;
}

.m-alert-container .m-alert .m-alert-header .m-alert-icon-success:before {
    content: '';
    display: block;
    position: absolute;
    z-index: 2;
    height: 0.3125em;
    border-radius: 0.125em;
    background-color: #a5dc86;
    top: 2.875em;
    left: 0.875em;
    width: 1.5625em;
    transform: rotate(45deg);
    font-size: inherit;
}

.m-alert-container .m-alert .m-alert-header .m-alert-icon-success:after {
    content: '';
    display: block;
    position: absolute;
    z-index: 2;
    height: 0.3125em;
    border-radius: 0.125em;
    background-color: #a5dc86;
    top: 2.375em;
    right: 0.5em;
    width: 2.9375em;
    transform: rotate(-45deg);
}

.m-alert-container .m-alert .m-alert-header .m-alert-icon-warning {
    border-color: #facea8;
    color: #f8bb86;
}

.m-alert-container .m-alert .m-alert-header .m-alert-icon-warning:before {
    content: '!';
}

.m-alert-container .m-alert .m-alert-header .m-alert-icon-error {
    border-color: #f27474;
    position: relative;
}

.m-alert-container .m-alert .m-alert-header .m-alert-icon-error:before {
    content: '';
    display: block;
    position: absolute;
    top: 2.3125em;
    width: 2.9375em;
    height: 0.3125em;
    border-radius: 0.125em;
    background-color: #f27474;
    left: 1.0625em;
    transform: rotate(45deg);
    font-size: inherit;
}

.m-alert-container .m-alert .m-alert-header .m-alert-icon-error:after {
    content: '';
    display: block;
    position: absolute;
    top: 2.3125em;
    width: 2.9375em;
    height: 0.3125em;
    border-radius: 0.125em;
    background-color: #f27474;
    right: 1em;
    transform: rotate(-45deg);
}

.m-alert-container .m-alert .m-alert-header .m-alert-icon-question {
    border-color: #c9dae1;
    color: #87adbd;
}

.m-alert-container .m-alert .m-alert-header .m-alert-icon-question:before {
    content: '?';
}

.m-alert-container .m-alert .m-alert-content {
    z-index: 1;
    justify-content: center;
    margin: 0;
    padding: 0;
    color: #545454;
    font-size: 1.125em;
    font-weight: 400;
    line-height: normal;
    text-align: center;
    word-wrap: break-word;
}

.m-alert-container .m-alert .m-alert-input {
    height: 42px;
}

.m-alert-container .m-alert .m-alert-action {
    display: flex;
    z-index: 1;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 1.25em auto 0;
}

.m-alert-container .m-alert .m-alert-action button {
    display: inline-block;
    margin: 0 5px;
    padding: 8px 12px;
    min-width: 80px;
}

#header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 52px;
	background: #0b87c9;
	color: #fff;
	z-index: 100;
}

#header div.logo {
	padding: 0 0 0 10px;
	float: left;
}

#header .menu {
	color: #fff;
	list-style: none;
	padding: 0;
	margin: 0;
}

#header .menu > li {
	float: left;
	line-height: 52px;
	position: relative;
	padding: 0 15px;
}

#header .menu > li:hover,
#header .menu > li.open {
	background: #333;
}

#header .menu > li > a {
	color: #fff;
	height: 52px;
	display: block;
	outline: 0;
}

#header .menu > li > a:hover,
#header .menu > li > a:focus {
	text-decoration: none;
}

#header .menu > li > a em.fix {
	position: relative;
	bottom: -4px;
	right: -2px;
}

#header .menu > li > a em.logout {
	zoom: 0.85;
}

#header .menu > li > a > img {
	position: relative;
	top: -1px;
}

#header .menu > li > .dropdown-menu {
	margin: 0;
	border-radius: 0;
	right: 0;
	left: auto;
	background: #333;
	border: 0;
	color: #fff;
}

#header .dropdown-menu a,
#header .dropdown-menu a:focus {
	color: #fff;
	padding: 5px 20px;
}

#header .dropdown-menu a:hover {
	background: #000;
}

#header .dropdown-menu > .disabled > a,
#header .dropdown-menu > .disabled > a:hover,
#header .dropdown-menu > .disabled > a:focus {
	color: #999;
}

/* Middle
 -----------------------------------------------------------------------------*/
#middle {
	position: relative;
}

#container {
	margin-top: 52px;
	margin-left: 200px;
	height: 100%;
	position: relative;
}

#contentmod {
	padding: 15px;
	margin-bottom: 50px;
	position: relative;
    min-height: calc(100vh - 189px);
}

/* Left Menu
 -----------------------------------------------------------------------------*/
#left-menu {
	top: 52px;
	left: 0;
	width: 200px;
	height: calc(100vh - 52px);
	position: fixed;
	border: 1px solid #e5e5e5;
	padding-top: 10px;
	background: #f8f8f8;
	box-shadow: 2px 2px 4px #eaeaea;
	overflow: auto;
}

#left-menu .nav {
	margin-top: 10px;
	border-top: 1px solid #e5e5e5;
}

#left-menu .nav > li {
	border-bottom: 1px solid #e5e5e5;
}

#left-menu .nav > li > a {
	border-radius: 0;
	color: #333;
	padding: 10px;
	cursor: pointer;
}

#left-menu .nav > li > a:hover,
#left-menu .nav > li > a:focus,
#left-menu .nav > li.active > a {
	background: #fff;
	color: #2b7dbc;
}

#left-menu .nav > li.active > a {
	font-weight: bold;
}

/* Footer
 -----------------------------------------------------------------------------*/
#footer {
	position: absolute;
	left: 5px;
	right: 5px;
	bottom: 0;
	margin-left: 200px;
}

#footer .footer-content {
	height: 50px;
	border-top: 3px solid #FF6600;
}

#footer div.copyright {
	color: #4b4b4b;
	font-size: 11px;
	line-height: 15px;
	margin: 7px 10px 7px 10px;
	padding: 0;
	float: left
}

#footer div.imgstat {
	margin: 13px 10px 5px 0px;
	padding: 0;
	text-align: right;
	width: 100px;
	float: right
}

table caption {
	text-align: left;
	font-size: 14px;
	font-weight: bold;
	line-height: 22px;
	padding: 0px 0 5px;
}

sup.required {
	color: #F00
}

.pagination {
	margin: 0;
}

/* Content Size
 -----------------------------------------------------------------------------*/
.w20 {
	width: 20px!important
}

.w50 {
	width: 50px!important
}

.w100 {
	width: 100px!important
}

.w150 {
	width: 150px!important
}

.w200 {
	width: 200px!important
}

.w250 {
	width: 250px!important
}

.w300 {
	width: 300px!important
}

.w350 {
	width: 350px!important
}

.w400 {
	width: 400px!important
}

.w500 {
	width: 500px!important
}


/* Form Element
 -----------------------------------------------------------------------------*/
input[type="checkbox"], input[type="radio"] {
	border-width: 1px;
	border-style: solid;
	border-color: #bbb;
	clear: none;
	cursor: pointer;
	display: inline-block;
	line-height: 0;
	height: 16px;
	margin: 0;
	outline: 0;
	padding: 0 !important;
	text-align: center;
	width: 16px;
	min-width: 16px;
	-webkit-appearance: none;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	color: #555;
	background: #fff;
    vertical-align: -3px;
}

input[type=radio] {
	border-radius: 50%;
	margin-right: 4px;
	line-height: 10px;
}

input[type=checkbox]:disabled, input[type=radio]:disabled, input[type=checkbox]:disabled:checked:before, input[type=radio]:disabled:checked:before {
	opacity: 0.7;
}

input[type=checkbox]:checked:before,
input[type=checkbox].checkdefault:before,
input[type=radio]:checked:before {
	float: left;
	display: inline-block;
	vertical-align: middle;
	width: 14px;
	font: normal 14px/1 'FontAwesome';
	speak: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

input[type=checkbox]:checked:before,
input[type=checkbox].checkdefault:before,
input[type=checkbox].checkdefault:checked:before {
	content: '\f00c';
	margin: 0px 0 0 0px;
}
input[type=checkbox].checkdefault:before {
    color: #bbb;
}
input[type=checkbox]:checked:before,
input[type=checkbox].checkdefault:checked:before {
    color: #1e8cbe;
}
input[type=checkbox]:disabled, input[type=radio]:disabled, input[type=checkbox]:disabled:checked:before, input[type=radio]:disabled:checked:before {
	opacity: 0.7;
}
input[type=radio]:checked:before {
	content: '\2022';
	text-indent: -9999px;
	border-radius: 50px;
	font-size: 24px;
	width: 8px;
	height: 8px;
	margin: 3px;
	line-height: 16px;
	background-color: #1e8cbe;
}

input[type=checkbox]:hover,
input[type=radio]:hover {
	border-color: #ff893c;
}

label {
	font-weight: normal;
}

/* ==========================================================================
 Fixed Jquery UI Style
 ========================================================================== */
.ui-widget {
	font-size: 13px !important;
	font-weight: 400 !important;
	line-height: 18px !important;
}

.ui-datepicker {
	width: 18em !important;
}

.ui-datepicker select.ui-datepicker-month {
	width: 59% !important;
}

.ui-datepicker select.ui-datepicker-year {
	width: 39% !important;
}

/* DIV Listing
 -----------------------------------------------------------------------------*/
.nv-listing .listing-title {
	font-weight: 700;
	border-bottom: 2px #ddd solid;
	padding-top: 7px;
	padding-bottom: 7px;
}

.nv-listing .listing-body .listing-item {
	border-bottom: 1px #ddd solid;
	padding-top: 7px;
	padding-bottom: 7px;
}

.nv-listing .listing-body .listing-item:nth-child(odd) {
	background-color: #f9f9f9;
}

.nv-listing .listing-body .listing-item em {
	cursor: pointer;
}

/* Notification */
#notification {
	position: absolute;
	top: 4px;
	right: 3px;
	display: inline-block;
	min-width: 10px;
	padding: 3px 7px;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	color: #fff;
	text-align: center;
	white-space: nowrap;
	vertical-align: baseline;
	background-color: #FF0040;
	border-radius: 10px;
	z-index: 1
}

#notification_load {
    min-height: 30px;
}

#notification_load .notify_item + .notify_item {
	border-top: 1px solid #424141;
}

#notification_load .notify_item a {
	display: block;
	width: 100%;
	padding: 10px;
	line-height: 20px
}

#notification_load .notify_item a:hover {
	text-decoration: none;
}

input[type=text].required, input[type=password].required, input[type=email].required, input[type=number].required, input[type=search].required, input[type=tel].required, input[type=time].required, input[type=url].required, input[type=url].required, textarea.required, select.required, label.required {
    background-image: url(../images/icons/required.png);
    background-position: right center;
    background-repeat: no-repeat;
}

div.checkbox [type="checkbox"],
div.radio [type="radio"] {
    margin-top: 0;
}

textarea {
	resize: vertical;
	min-height: 64px;
}

select.form-control.small {
	height: auto;
	padding: 2px 5px;
}

input.form-control {
	box-shadow: none;
}

input.form-control[readonly] {
    background: #fff;
}

.label {
    font-weight: normal;
}

body {
	font-family: Arial,sans-serif;
}

.btn {
	text-shadow: 0 -1px 0 rgba(0,0,0,.25);
	font-size: 14px;
	line-height: 18px;
	outline: none !important;
}

.table .btn {
	font-size: 13px;
}

.btn-default,
.btn-default:hover,
.btn-default:active:hover,
.btn-default:active:focus {
	background: #fff;
}

.btn-warning, .btn-warning:focus {
    background-color: #f39f2a;
    border-color: #e89929;
}

.alert {
	font-size: 14px;
}

.m-0 {
	margin: 0;
}

.m-10 {
	margin: 10;
}

.m-top {
	margin-top: 10px;
}

.m-bottom {
	margin-bottom: 10px;
}

.m-left {
	margin-left: 10px;
}

.m-right {
	margin-right: 10px;
}

.p-0 {
	padding: 0;
}

.p-10 {
	padding: 10px;
}

.p-top {
	padding-top: 10px;
}

.p-bottom {
	padding-bottom: 10px;
}

.p-left {
	padding-left: 10px;
}

.p-right {
	padding-right: 10px;
}

.mt-1 {
	margin-top: 5px;
}

.main-title {
    margin-top: 5px;
    color: #0b87c9;
    font-size: 18px;
    font-weight: 400;
}

.main-title span {
    display: inline-block;
	border-bottom: 4px solid #0b87c9;
    padding-bottom: 3px;
}

.info-box {
	border-radius: 4px;
	padding: 10px;
	color: #fff;
	background: #ddd;
	border: 1px solid #ddd;
}

.info-box.green {
	background-color: #9abc32;
    border-color: #9abc32;
}

.info-box.blue {
	background-color: #6fb3e0;
    border-color: #6fb3e0;
}

.info-box.yellow {
    background-color: #e8b110;
    border-color: #e8b110;
}

.info-box.red {
	background-color: #d53f40;
    border-color: #d53f40;
}

.info-box .icon {
	float: left;
}

.info-box .icon .fa {
	font-size: 30px;
}

.info-box .info {
	float: left;
	padding-left: 20px;
}

.info-box .info .text {
	font-size: 16px;
	margin-bottom: 5px;
}

.info-box .info .text + .text {
	margin-bottom: 0;
}

.info-box .info .number {
	font-size: 18px;
	text-align: center;
}

.tb-info {
	width: 100%;
	font-size: 14px;
}

.tb-info colgroup {
    display: block;
}

.tb-info td,
.th-info th {
	padding: 4px;
}

.fs10 {
	font-size: 10px;
}

.fs11 {
	font-size: 11px;
}

.fs12 {
    font-size: 12px;
}

.fs14 {
	font-size: 14px;
}

.fs15 {
	font-size: 15px;
}

.fs16 {
	font-size: 16px;
}

.fs18 {
	font-size: 18px;
}

.fs20 {
	font-size: 20px;
}

.panel .panel-heading {
	font-size: 18px;
}

.panel-default {
	border-color: #ccc;
}

.panel-default .panel-heading {
	background-color: #fff;
	border-color: #ccc;
}

.panel-info {
	border-color: #6fb3e0;
}

.panel-info .panel-heading {
	background-color: #6fb3e0;
	border-color: #6fb3e0;
	color: #fff;
}

.panel-warning {
	border-color: #e8b110;
}

.panel-warning .panel-heading {
	background-color: #e8b110;
	border-color: #e8b110;
	color: #fff;
}

.panel-success {
	border-color: #9abc32;
}

.panel-success .panel-heading {
	background-color: #9abc32;
	border-color: #9abc32;
	color: #fff;
}

.panel-danger {
	border-color: #d53f40;
}

.panel-danger .panel-heading {
	background-color: #d53f40;
	border-color: #d53f40;
	color: #fff;
}

.breadcrumbs {
	background: #f5f5f5;
	position: fixed;
	top: 52px;
	left: 200px;
	width: calc(100% - 200px);
    height: 42px;
	padding: 7px 12px;
	box-shadow: 1px 1px 2px #ddd;
	z-index: 99;
}

.breadcrumbs h3 {
    color: #307ecc;
    font-size: 18px;
    font-weight: bold;
    margin: 0;
    padding: 4px;
    display: inline-block;
}

.breadcrumbs ul.list-none {
	list-style: none;
	display: inline-block;
	margin: 0;
	padding: 7px;
}

.breadcrumbs ul.list-none li {
	display: inline-block;
	margin-right: 5px;
    font-size: 16px;
}

.breadcrumbs ul.list-none li + li:before {
    content: '/';
    padding-right: 10px;
}

.breadcrumbs .pull-right button {
	margin: 0 3px;
    padding: 4px 10px;
    font-size: 13px;
}

.breadcrumbs-end {
	width: 100%;
    height: 42px;
}

input,
input:focus {
	outline: none !important;
}

input:focus,
input.form-control:focus,
select.form-control:focus {
	border-color: #ff893c;
	box-shadow: none;
}


.table-data .table thead tr th {
	background: #f2f2f2;
	vertical-align: middle;
	color: #707070;
	white-space: nowrap;
}

.table-data .table thead tr th,
.table-data .table tbody tr td,
.table-data .table tbody tr th {
    font-size: 12px;
    padding: 8px 5px;
}

.table-data .table-hover > tbody > tr:hover > td,
.table-data .table-hover > tbody > tr:hover > th {
    background-color: #fef4bb;
}

.table-data .table-hover > tbody > tr.bg-red > td,
.table-data .table-hover > tbody > tr.bg-red > th {
    background-color: #ffb3b3;
}

.table-data .table-hover > tbody > tr.bg-red:hover > td,
.table-data .table-hover > tbody > tr.bg-red:hover > th {
    background-color: #ffccaa;
}

.table-data .table-hover > tbody > tr.bg-yellow > th,
.table-data .table-hover > tbody > tr.bg-yellow > td {
	background-color: #fff6a4;
}

.table-data .table-hover > tbody > tr.bg-yellow:hover > th,
.table-data .table-hover > tbody > tr.bg-yellow:hover > td {
	background-color: #eae295;
}

.table-data .table tfoot tr th,
.table-data .table tfoot tr td {
	vertical-align: middle;
}

a {
	cursor: pointer;
}

.gray {
	color: #777;
}

.pink {
    color: #c6699f;
}

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

.form-search .form-control {
    margin-bottom: 5px;
}

.form-search .input-group {
    margin-bottom: 5px;
}

.form-search .input-group .form-control {
    margin-bottom: 0;
}

.list-btn-action {
	display: inline-block;
}

.list-btn-action:before,
.list-btn-action:after {
	content: '';
	display: table;
}

.list-btn-action:after {
	clear: both;
}

.list-btn-action .btn {
	font-size: 13px;
	margin: 2px;
	float: left;
	cursor: pointer;
}

.nav-tabs {
	border: none;
}

.nav-tabs > li > a {
    border-color: #c5d0dc;
    border-bottom: none;
    background-color: #F9F9F9;
    color: #999;
    line-height: 18px;
    position: relative;
    font-size: 14px;
    height: 40px;
    padding: 11px 10px 10px 10px;
}

.nav-tabs > li > a:hover {
	background-color: #FFF;
    color: #4c8fbd;
    border-color: #c5d0dc;
}

.nav-tabs > li.active > a,
.nav-tabs > li.active > a:focus,
.nav-tabs > li.active > a:hover {
    color: #576373;
    border-color: #c5d0dc #c5d0dc transparent;
    border-top: 2px solid #4c8fbd;
    background-color: #FFF;
    box-shadow: 0 -2px 3px 0 rgba(0,0,0,.15);
    padding-top: 10px;
}

.nav-tabs > li.active > a em.fa {
	color: #428bca;
}

.tab-content {
    border: 1px solid #c5d0dc;
    padding: 16px 12px;
    position: relative;
}

.list-btn-in-tab {
	position: absolute;
	top: -36px;
	right: 0;
	z-index: 1;
}

.box-dropdown {
	padding: 10px;
	border-radius: 0;
}

.relative {
	position: relative;
}

.pointer {
	cursor: pointer;
}

.bg-gray {
	background: #efefef;
	padding: 20px 10px;
}

.bg-white {
	background: #fff;
}

.inline-block {
	display: inline-block;
}

.label {
	font-size: 11px;
}

.dropdown-menu > li > a:hover {
	background: #4f99c6;
    color: #fff;
}

.popover {
    border-radius: 0;
    padding: 0;
    border-color: #ccc;
    border-width: 1px;
    -webkit-box-shadow: 0 0 4px 2px rgba(0,0,0,.2);
    box-shadow: 0 0 4px 2px rgba(0,0,0,.2);
    color: #4D6883;
}

.popover-title {
    border-radius: 0;
    background-color: #eff3f8;
    color: #555;
    border-bottom: 1px solid #dde6f0;
    text-shadow: 1px 1px 1px rgba(220,220,220,.2);
}

.list-box-info {
	margin: 10px 0 15px 0;
}

.box-info {
    display: inline-block;
    width: calc(20% - 5px);
    height: 66px;
    color: #555;
    background-color: #fff;
    box-shadow: none;
    border-radius: 0;
    margin: -1px 0 0 -1px;
    padding: 8px 3px 6px 9px;
    border: 1px dotted;
    border-color: #d8d8d8;
    vertical-align: middle;
    text-align: left;
    position: relative;
}

.box-info-green {
    color: #9abc32;
    border-color: #9abc32;
}

.box-info-blue {
    color: #6fb3e0;
    border-color: #6fb3e0;
}

.box-info-orange {
    color: #f79263;
    border-color: #f79263;
}

.box-info-yellow {
    color: #e8b110;
    border-color: #e8b110;
}

.box-info-red {
    color: #d53f40;
    border-color: #d53f40;
}

.list-box-info .box-info {
	border-color: #d8d8d8;
}

.box-info > .box-info-icon {
    display: inline-block;
    vertical-align: top;
}

.box-info > .box-info-icon > em.fa {
    display: inline-block;
    height: 42px;
    text-align: center;
    border-radius: 50%;
    -webkit-box-shadow: 1px 1px 0 rgba(0,0,0,.2);
    box-shadow: 1px 1px 0 rgba(0,0,0,.2);
    color: #333;
    padding: 1px 1px 0 2px;
}

.box-info > .box-info-icon > em.fa:before {
	font-size: 24px;
    display: block;
    padding: 6px 0 7px;
    width: 40px;
    text-align: center;
    border-radius: 100%;
    color: rgba(255,255,255,.9);
    background-color: rgba(255,255,255,.2);
    text-shadow: 1px 1px 1px rgba(0,0,0,.14);
}

.box-info-green > .box-info-icon > em.fa {
    background-color: #9abc32;
    color: #fff;
}

.box-info-blue > .box-info-icon > em.fa {
    background-color: #6fb3e0;
    color: #fff;
}

.box-info-orange > .box-info-icon > em.fa {
    background-color: #f79263;
    color: #fff;
}

.box-info-yellow > .box-info-icon > em.fa {
    background-color: #e8b110;
    color: #fff;
}

.box-info-red > .box-info-icon > em.fa {
    background-color: #d53f40;
    color: #fff;
}

.box-info > .box-info-data {
    display: inline-block;
    border: none;
    border-top-width: 0;
    font-size: 13px;
    text-align: left;
    line-height: 21px;
    min-width: 130px;
    padding-left: 8px;
    position: relative;
    top: 0;
}

.box-info > .box-info-data > .box-info-data-number {
    display: block;
    font-size: 22px;
    margin: 2px 0 4px;
    position: relative;
    text-shadow: 1px 1px 0 rgba(0,0,0,.15);
}

.box-info .box-info-content {
    color: #555;
}

.tt {
	color: #428bca;
	font-size: 16px;
	cursor: pointer;
	margin-left: 5px;
}

.modal .modal-lg.modal-dialog {
	width: 1000px;
}

.modal .modal-title {
	font-size: 20px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 60px
}

.modal button.close {
	float: right;
    font-size: 30px;
    font-weight: 700;
    line-height: 18px;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .6;
    -webkit-appearance: none;
    padding: 10px 10px 0 10px;
    cursor: pointer;
    background: 0 0;
    border: 0;
    outline: none !important;
}

.modal button.close:focus,
.modal button.close:hover {
    color: #000;
    text-decoration: none;
    cursor: pointer;
    opacity: 1;
}

.margin-bottom {
	margin-bottom: 10px;
}

button.btn.loading {
	position: relative;
}

button.btn.loading:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .5);
	background-image: url(../../../assets/images/load_bar.gif);
	background-repeat: no-repeat;
	background-size: auto;
	background-position: center;
	cursor: default;
	z-index: 1;
}

#modal_advisory_customer .modal-dialog {
	width: 1000px;
}

#modal_advisory_customer .modal-content {
	overflow: hidden;
}

#modal_advisory_customer .modal-content .modal-body {
	max-height: 550px;
	overflow: auto;
}

.my-loading {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 10000;
	display: none;
}

.my-loading .bg {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 200px;
	height: 80px;
	margin-left: -100px;
	margin-top: -40px;
	background: #fff;
	border-radius: 5px;
	padding: 10px;
	text-align: center;
	box-shadow: 0 1px 2px #888;
}

.my-loading .bg .icon {
	margin-top: 3px;
}

.my-loading .bg .icon img {
	height: 40px;
}

ul {
	padding-left: 20px;
}

.dropdown-menu.menu-action {
	right: 0;
	left: auto;
	padding: 8px;
	margin-top: 20px;
	width: auto;
	min-width: 60px;
}

.dropdown-menu.menu-action:before {
	content: '';
	position: absolute;
	top: -9px;
	right: 4px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 8px 10px 8px;
	border-color: transparent transparent #ffffff transparent;
	z-index: 2;
}

.dropdown-menu.menu-action:after {
	content: '';
	position: absolute;
	top: -10px;
	right: 4px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 8px 10px 8px;
	border-color: transparent transparent #ccc transparent;
	z-index: 1;
}

.dropdown-menu.menu-action > li > a {
	padding: 3px 5px;
	border-radius: 3px;
}

.form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
}

.form-inline .input-group {
    display: inline-table;
    vertical-align: middle;
}

.form-inline .input-group>.form-control {
    width: 100%;
}

.form-inline .input-group .input-group-addon,
.form-inline .input-group .input-group-btn,
.form-inline .input-group .form-control {
    width: auto;
}

.advisory-date {
    font-size: 11px;
    margin-top: 5px;
}

[class^="advisory-type-"] {
	display: inline-block;
	font-size: 10px;
	border-width: 1px;
	border-style: solid;
	border-color: #ddd;
	border-radius: 3px;
	padding: 2px 5px;
	color: #fff;
	background: #aaa;
	user-select: none;
	line-height: 1;
}

.advisory-type-1 {
	border-color: #ca0e0e;
	background-color: #ff0000;
}

.advisory-type-2 {
	border-color: #e07a0e;
	background-color: #e68c05;
}

.advisory-type-3 {
    border-color: #e87cb2;
    background-color: #f58abf;
}

.advisory-type-4 {
	border-color: #02a3dd;
	background-color: #00b0f0;
}

.advisory-type-5 {
	border-color: #e3e302;
	background-color: #ffff00;
    color: #607d8b;
}

.advisory-type-6 {
	border-color: #542504;
	background-color: #833c0b;
}

.advisory-type-7 {
    border-color: #e9b003;
    background-color: #ffc000;
}

.advisory-type-8 {
    border-color: #02a0da;
    background-color: #00b0f0;
}

.advisory-type-9 {
    border-color: #e00a0a;
    background-color: #ff0000;
}

.advisory-type-10 {
    border-color: #02a0da;
    background-color: #00b0f0;
}

.advisory-type-11 {
    border-color: #e9b003;
    background-color: #ffc000;
}

.advisory-type-12 {
    border-color: #e00a0a;
    background-color: #ff0000;
}

.advisory-quality-1 {
	color: #f00;
}

.advisory-quality-2 {
	color: #e49401;
}

.advisory-quality-3 {
	color: #00b0f0;
}