@CHARSET "utf-8";

html {
    background-color: rgba(0, 0, 0, 0.01);
    min-height: 100%;
    position: relative;
}

body {
    color: #333;
    margin: 0 0 32px 0;
}

body, input, select, textarea, button {
    font-family: Helvetica, sans-serif;
    font-size: 1em;
}

.ui-icon {
    display: inline-block;
    vertical-align: top;
}
/* ##### NOSCRIPT ##### */
noscript {
    background: #FFCDD2;
    border: 1px solid #F44336;
    border-radius: 4px;
    display: block;
    font-size: small;
    margin: 16px auto;
    padding: 16px;
}
/* ##### HEADER ##### */
header {
    background: #a47ab5;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.2);
    color: #fff;
}

header>nav {
    background: #8d5aa2;
    box-sizing: border-box;
    color: #fff;
    display: table;
    font-size: smaller;
    height: 32px;
    padding: 8px;
    width: 100%;
}

#breadcrumb_list, #logout_lnk {
    display: table-cell;
    margin: 0;
}

#breadcrumb_list>a, #logout_lnk>span>a {
    color: #fff;
    text-decoration: none;
}

#breadcrumb_list>a:hover, #logout_lnk>span>a:hover {
    color: #fff;
    text-decoration: underline;
}

#breadcrumb_list>a {
    margin-right: 24px;
    position: relative;
}

#breadcrumb_list>a:after {
    content: " > ";
    position: absolute;
    right: -20px;
}

#logout_lnk {
    text-align: right;
}

#logout_lnk>span {
    margin-left: 32px;
}

header>h1 {
    font-size: 1.17em;
    padding: 8px;
    margin: 0;
}

.msg-list {
    list-style: none;
    padding: 6px 16px;
}

.msg-icon {
    margin-right: 4px;
}

#warn-msg {
    background: #FFCCBC;
    border: 1px solid #E64A19;
}
/* ##### MAIN ##### */
main {
    margin: 8px;
}

a, .ui-widget-content a {
    color: #6e9618;
    text-decoration: none;
}

a:hover {
    color: #344c00;
    text-decoration: underline;
}

a>img {
    border: none;
}

input[type=submit], button {
    background: #6e9618;
    border: 0;
    border-radius: 4px;
    color: #fff;
    padding: 6px 16px;
}

input[type=submit]:hover, button:hover {
    background: #344c00;
    cursor: pointer;
}

.full-width-btn {
    width: 100%;
}

h2 {
    color: #8d5aa2;
}

h3 {
    color: #8d5aa2;
}

hr {
    border: none;
    border-top: 1px #eaeaea solid;
}

form {
    margin: 16px;
    padding-top: 16px;
    padding-bottom: 16px;
}

form>p {
    margin: 0;
}

th, td {
    padding: 8px;
    text-align: left;
    vertical-align: top;
}

td>ul {
    margin: 0;
    padding: 0;
}

.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.right {
    text-align: right;
}

.number {
    font-family: Monaco, Consolas, monospace;
    text-align: right;
}

.hide {
    display: none;
}

.list-tbl {
    border-top: 1px solid #ECEEEF;
    border-bottom: 1px solid #ECEEEF;
    border-collapse: collapse;
    margin: 16px auto;
}

.list-tbl>caption {
    color: #8d5aa2;
    font-size: 1.17em;
    font-weight: bold;
}

.list-tbl>tbody>tr:nth-of-type(odd) {
    background: #F9F9F9;
}

.err {
    background: #FFCDD2;
}

.tbl {
    display: table;
    table-layout: fixed;
    width: 100%;
}

.tbl>div {
    display: table-cell;
    vertical-align: middle;
}

/* ##### FOOTER ##### */
footer {
    bottom: 0;
    box-sizing: border-box;
    color: #B6B6B6;
    height: 32px;
    padding: 8px;
    position: absolute;
    text-align: center;
    width: 100%;
}
/* ##### jQuery UI ##### */
.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor {
    cursor: default;
}

/* ##### 印刷 ##### */
@media print {
    header, footer, .no_print {
        display: none;
    }
    #tabs {
        border-width: 0;
    }
    .ui-tabs {
        padding: 0;
    }
}


/** -- Lording Overlay -- **/
@-webkit-keyframes spinner-border {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spinner-border {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

#overlay {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background: rgba(0, 0, 0, .5);
    z-index: 1;
}
#spinner {
    height: 100%;
    width: 100%;
    display: none;
    color: #fff;
    z-index: 2;

    align-items: center!important;
    justify-content: center!important;
    display: flex!important;
}
.spinner-border {
    color: #fff;
    display: inline-block;
    width: 2rem;
    height: 2rem;
    vertical-align: text-bottom;
    border: 0.25em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    -webkit-animation: spinner-border .75s linear infinite;
    animation: spinner-border .75s linear infinite;
}
