﻿/* Base Styles */
body {
    /*font-family: 'Segoe UI', 'Open Sans', Verdana, Arial, Helvetica, sans-serif;*/
    font-family: Calibri,Candara,source-han-sans-cjk-sc,Hiragino Sans GB,Microsoft Yahei,Simhei,Simsun,Segoe,"Segoe UI",Optima,Arial,sans-serif;
    font-weight: 300;
    font-size: 16px;
    color: #000;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Typography */
.greeting {
    font-family: 'Segoe UI', Calibri, Verdana, Arial, sans-serif;
    font-weight: 500;
    font-size: 15px;
    color: #0078d4; /* Azure blue for a modern touch */
    background-color: #f0f4f8;
    padding: 12px 20px;
    border-left: 4px solid #0078d4;
    border-radius: 6px;
    margin-bottom: 15px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

/* Table Rows */
.sm_odd_row, .sm_even_row1 {
    font-size: 11px;
    padding-left: 5px;
    color: #3E546E;
    height: 25px;
}

.sm_odd_row {
    background-color: #BEC5DF;
}

.sm_even_row1 {
    background-color: #EBEDFA;
}

/* Box Styling */
.box, td.box, table.box {
    background-color: #eee;
    border: 2px solid #3E4379;
    border-radius: 4px;
    padding: 10px;
    margin-bottom: 20px;
}

/* Buttons */
.btn, .btn-sm {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 14px;
    padding: 6px 12px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    background-color: #ddd;
    color: #353535;
    box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
    transition: background-color 0.3s ease;
}

    .btn:hover {
        background-color: #ccc;
    }

.btn-sm {
    font-size: 12px;
    padding: 4px 8px;
    height: 25px;
}

.btn-grn {
    background-color: #1E7145;
    color: #fff;
}

.btn-red {
    background-color: #AA4545;
    color: #fff;
}

/* Inputs */
.input, select.input {
    height: 35px;
    padding: 6px 10px;
    font-size: 14px;
    border: 1px solid #CCC;
    border-radius: 4px;
    background-color: #FFF;
    box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

/* Sidebar */
#sidebar {
    background-color: #eee;
    border: 2px solid #ccc;
    border-right: none;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    padding: 10px;
}

/* Menu */

.site-nav ul {
    padding: 0;
}
.main-menu {
    
    display: flex;
    flex-wrap:nowrap;
    /*flex-wrap: wrap;*/
    justify-content: center;
    padding: 10px 0;
}

    .main-menu > li {
        list-style: none;
       
        position: relative;
    }

        .main-menu > li > a {
            color: #434343;
            text-decoration: none;
            font-weight: 400;
            padding: 20px 20px;
            border-bottom: 2px solid transparent;
            font-size: 16px;
        }

        .main-menu > li:hover > a {
            color: #012169;
            
            margin-top: -3px;
            font-weight: 700;
            border-bottom: 4px solid #8bc400;
        }

.sub-menu {
    position: absolute;
    max-height:500px;
    top: 42px;
    left: 0;
    border: 1px solid #d6d6d6;
    background:#fff;
    display: none;
      width:auto;
      min-width:230px;
       z-index: 1000;
       overflow:auto;
}
.sub-menu li{list-style-type:none;}

.main-menu > li:hover .sub-menu {
    display: block;
}

.sub-menu > li > a {
    display: block;
    padding: 10px 10px;
    color: #012169;
    text-decoration: none;
    list-style: none;
    font-weight: 500;
    font-size: 13px;
}

    .sub-menu > li > a:hover {
        background-color: #f2f2f2;
        font-weight: 700;
    }
.smTextBlk{font-size:12px;}

.login-box input[type="submit"]{width:100%;}
.login-box label{font-size:13px;}
.input-type {
    border-radius: 6px;
    width: 100%;
    height: 30px;
    border: 1px solid #d8d9db;
}
select {
    border-radius: 6px;
    /*width: 100%;*/
    height: 30px;
    border: 1px solid #d8d9db;
}
/* Responsive Design */
@media (max-width: 768px) {
    .main-menu {
        flex-direction: column;
        align-items: center;
    }

        .main-menu > li {
            width: 100%;
            text-align: center;
        }

    .input, .btn {
        width: 100%;
        box-sizing: border-box;
    }
}
/**eadmlogin**/
.login-box {
    max-width: 500px;
    margin: auto;
    padding: 10px 25px 25px 25px;
    border-bottom: 1px solid #ccc;
    /*box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);*/
}

    .login-box .column span {
        padding-bottom: 7px;
        display: block;
    }

.input-row {
    margin-bottom: 1rem;
}

.login-section,
.password-section,
.greeting-section {
    display: flex;
    flex-direction: column;
}

.login-button {
    padding: 0.6rem 1.2rem;
    background-color: #84c440;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
}

    .login-button:hover {
        background-color: #26b24b
    }

.error-wrap {
    color: red;
    background: #fff6f6;
    font-size: 14px;
    padding: 10px;
}

.forgot-link {
    text-align: center;
    margin-top: 1rem;
}

.BluLnk {
    color: #007BFF;
    text-decoration: none;
}

/**eadmlogin*/
/**eadmcustomertemplate**/
#footer {
    font-family: Verdana;
    text-align: left;
    margin: 18px 11px 0;
    padding: 15px 0 30px 0;
    font-size: 11px;
    color: #3E546E;
    max-width: 700px
}

.footerLink {
    color: #9A9A9A;
    text-decoration: none;
}

    .footerLink:hover {
        text-decoration: underline;
    }

.admin:hover {
    color: #007BFF;
}

#LabelCopyright {
    font-size: 11px;
    color: #3E546E;
}

.site-footer {
    font-family: Verdana;
    text-align: center;
    margin: 18px 11px 0;
    padding: 15px 0 30px 0;
    font-size: 11px;
    color: #3E546E;
    max-width: 700px
}

.footer-top {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 15px;
}

.footer-link {
    color: #0066cc;
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.2s ease;
    margin-left: 10px;
}

    .footer-link:hover {
        color: red;
    }

.footer-bottom p {
    margin: 8px 0;
    line-height: 1.4;
}

.small-note {
    color: #777;
    font-size: 0.75rem;
}

.disabled {
    cursor: not-allowed;
    opacity: 0.6;
    pointer-events: none;
}
.header-wrapper {
    display: flex;
    background-image: url("/images_en/adm_header_bg.png");
    background-repeat: repeat-x;
    border-bottom: 1px solid #CCC;
}

.site-header {
    width: 15%;
}

.news-section h2 {
    color: red;
    font-size: 14px;
    color: #000;
}

.logo-area a img {
    width: 130px;
    padding: 22px 6px 13px 6px;
}

#ctl00_SiteLogo {
    visibility: hidden;
    display: none;
}

.site-nav ul {
    margin: 0px;
}

.sidebar {
    position: absolute;
    width: 25%;
    top: 0;
    bottom: 0;
    right: 0;
    background: #fff;
    border-left: 1px solid #f2f2f2;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    box-shadow: 0 0px 12px #ccc;
}

    .sidebar .card {
        padding: 15px 20px;
    }

    .sidebar h3 {
        padding: 0;
        margin: 0 0 10px 0;
        font-size: 16px;
        color: #007dba
    }

.page-wrapper {
    position: relative;
}

.container {
    width: 1280px;
    margin: 0 auto;
}

.nav {
    display: flex;
    width: 60%;
    align-items: center;
}
                     
  
/**eadmcustomertemplate**/
/**FutureWidget**/
.btn-group a {
    padding: 2px 8px;
    background: #84c440;
    border-radius: 5px;
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    margin-right: 12px;
}



.eadmLtTan {
    background-color: #ebe9de
}

.eadmDkTan {
    background-color: #dedbc9
}

.eadmLtPurple {
    background-color: #3e4379
}

.formBorder {
    border-top: solid thin #666699;
    border-right: solid thin #666699;
    border-bottom: solid thin #666699;
    border-left: solid thin #666699;
    border-width: 1px,1px,1px,1px
}

.formTLBBorder {
    border-top: solid thin #666699;
    border-bottom: solid thin #666699;
    border-left: solid thin #666699;
    border-width: 1px,1px,1px
}

.formTBBorder {
    border-top: solid thin #666699;
    border-bottom: solid thin #666699;
    border-width: 1px,1px
}

.formTRBBorder {
    border-top: solid thin #666699;
    border-right: solid thin #666699;
    border-bottom: solid thin #666699;
    border-width: 1px,1px,1px
}

.menuItem {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-style: normal;
    font-weight: bolder;
    color: #FFFFFF;
    text-decoration: none
}

.menuItemOn {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-style: normal;
    font-weight: bolder;
    color: #004488;
    text-decoration: none;
    background-color: #88AACC
}

.menuItemOff {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-style: normal;
    font-weight: bolder;
    color: #FFFFFF;
    text-decoration: none
}

.navItemBlk {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: normal;
    color: #000000
}

.navItemBlue {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: normal;
    color: #004488
}

.subtitle {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: bold;
    color: #004488
}

.msgRed {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: bold;
    color: red
}

.storyText {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: normal;
    color: #000000
}

.story {
    font-family: "Courier New", Courier, mono;
    font-size: 12px
}

.miniText {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    font-weight: normal;
    color: #000000
}

.smTextBlk {
    font-family: Arial, Helvetica, sans-serif;
    color: #000000;
    font-size: 8pt;
    Z-INDEX: 5
}

.ssmTextBlk {
    font-family: Arial, Helvetica, sans-serif;
    color: #000000;
    font-size: 5pt;
}

.smTextBlue {
    font-family: Arial, Helvetica, sans-serif;
    color: #3e4379;
    font-size: 8pt
}

.smTextBlueBold {
    font-family: Arial, Helvetica, sans-serif;
    color: #3e4379;
    font-size: 8pt;
    font-weight: bold
}

.smTextBlueND {
    font-family: Arial, Helvetica, sans-serif;
    color: #3e4379;
    font-size: 8pt;
    text-decoration: none
}

.smTextWht {
    font-family: Arial, Helvetica, sans-serif;
    color: #ffffff;
    font-size: 8pt
}

.smTextOrange {
    font-family: Arial, Helvetica, sans-serif;
    color: #FF6600;
    font-size: 8pt;
    font-weight: bolder
}

.mdTextBlk {
    font-family: Arial, Helvetica, sans-serif;
    color: #000000;
    font-size: 10pt
}

.mdTextBlue {
    font-family: Arial, Helvetica, sans-serif;
    color: #3e4379;
    font-size: 10pt
}

.lgTextBlue {
    font-family: Arial, Helvetica, sans-serif;
    color: #3e4379;
    font-size: 12pt
}

.mdTextWht {
    font-family: Arial, Helvetica, sans-serif;
    color: #ffffff;
    font-size: 10pt
}

.smTableBorder {
    border-width: 0px;
    border-spacing:;
    border-style: none;
    border-color: black;
    border-collapse: collapse
}

.smTableHeaderDrkBlue {
    font-family: Arial, Helvetica, sans-serif;
    color: #ffffff;
    font-size: 8pt;
    background-color: "#3e4379";
    border-width: 1px;
    padding: 1px;
    border-style: inset;
    border-color: black
}

.smTableRowWhite {
    font-family: Arial, Helvetica, sans-serif;
    color: #000000;
    font-size: 8pt;
    background-color: "#ebedfa";
    border-width: 1px;
    padding: 1px;
    border-style: inset;
    border-color: black
}

.smTableRowBlue {
    font-family: Arial, Helvetica, sans-serif;
    color: #000000;
    font-size: 8pt;
    background-color: "#bec5df";
    border-width: 1px;
    padding: 1px;
    border-style: inset;
    border-color: black
}

.smTextBlkND {
    font-family: Arial, Helvetica, sans-serif;
    color: #000000;
    font-size: 8pt;
    text-decoration: none
}

.smTextWhtND {
    font-family: Arial, Helvetica, sans-serif;
    color: #ffffff;
    font-size: 8pt;
    text-decoration: none
}

.mdTextBlkND {
    font-family: Arial, Helvetica, sans-serif;
    color: #000000;
    font-size: 10pt;
    text-decoration: none
}

.mdTextWhtND {
    font-family: Arial, Helvetica, sans-serif;
    color: #ffffff;
    font-size: 10pt;
    text-decoration: none
}

.mdTextOrg {
    font-family: Arial, Helvetica, sans-serif;
    color: #FFDDAA;
    font-size: 10pt
}

.mdTextRed {
    font-family: Arial, Helvetica, sans-serif;
    color: Red;
    font-size: 10pt
}

.smTextRed {
    font-family: Arial, Helvetica, sans-serif;
    color: Red;
    font-size: 8pt
}

.smTextGreen {
    font-family: Arial, Helvetica, sans-serif;
    color: #00aa00;
    font-size: 8pt;
    Z-INDEX: 5
}

a.navMenuText {
    font-family: Arial, Helvetica, sans-serif;
    color: #666699;
    font-size: 8pt;
    text-decoration: none;
    font-weight: bolder
}

    a.navMenuText:hover {
        font-family: Arial, Helvetica, sans-serif;
        color: #ff0000;
        font-size: 8pt;
        text-decoration: none;
    }

a.BluLnk {
    font-family: Arial, Helvetica, sans-serif;
    color: #666699;
    font-size: 8pt;
    font-weight: bolder
}

    a.BluLnk:hover {
        font-family: Arial, Helvetica, sans-serif;
        color: #ff0000;
        font-size: 8pt;
    }

a.RedLnk {
    font-family: Arial, Helvetica, sans-serif;
    color: #ff0000;
    font-size: 8pt;
    font-weight: bolder
}

    a.RedLnk:hover {
        font-family: Arial, Helvetica, sans-serif;
        color: #000000;
        font-size: 8pt;
    }

a.CSLnk {
    font-family: Arial, Helvetica, sans-serif;
    color: #666699;
    font-size: 8pt;
    font-weight: bolder
}

    a.CSLnk:hover {
        font-family: Arial, Helvetica, sans-serif;
        color: #ff0000;
        font-size: 8pt;
    }

    a.CSLnk:visited {
        font-family: Arial, Helvetica, sans-serif;
        color: #000000;
        font-size: 8pt;
        font-weight: bolder
    }

a.BluLnkMini {
    font-family: Arial, Helvetica, sans-serif;
    color: #666699;
    font-size: 10px;
    font-weight: bolder
}

    a.BluLnkMini:hover {
        font-family: Arial, Helvetica, sans-serif;
        color: #ff0000;
        font-size: 10px;
    }

a.BigBluLnk {
    font-family: Arial, Helvetica, sans-serif;
    color: #666699;
    font-size: 11pt;
    font-weight: bolder
}

    a.BigBluLnk:hover {
        font-family: Arial, Helvetica, sans-serif;
        color: #ff0000;
        font-size: 11pt;
    }

a.WhtLnk {
    font-family: Arial, Helvetica, sans-serif;
    color: #ffffff;
    font-size: 8pt;
    font-weight: bolder
}

    a.WhtLnk:hover {
        font-family: Arial, Helvetica, sans-serif;
        color: #ff0000;
        font-size: 8pt;
    }

a.grnLnk {
    font-family: Arial, Helvetica, sans-serif;
    color: #00935d;
    font-size: 8pt;
    font-weight: bolder
}

    a.grnLnk:hover {
        font-family: Arial, Helvetica, sans-serif;
        color: #ff0000;
        font-size: 8pt;
    }

.grnBtn {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 7.5pt;
    color: #ffffff;
    font-weight: normal;
    background-color: #00935d
}

.grnBtnSm {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 6.5pt;
    color: #ffffff;
    font-weight: normal;
    background-color: #00935d
}

.submitBtn {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: normal
}

body {
    scrollbar-face-color: #bec5df;
    scrollbar-highlight-color: #ffffff;
    scrollbar-shadow-color: #3e4379;
    scrollbar-3dlight-color: #ffffff;
    scrollbar-arrow-color: #3e4379;
    scrollbar-track-color: #ebedfa;
    scrollbar-darkshadow-color: #000000;
}

#eadm-notify-wrap {
    margin: 10px 5px 20px 5px;
    font-family: Verdana, sans-serif;
    font-size: .9em;
    text-align: left;
    max-width: 37.5em;
}

.eadm-notification {
    margin-bottom: 10px;
}

.eadm-notification-title {
    font-weight: bold;
    color: #af3813;
}

.eadm-notification-link,
.eadm-notification-link:visited {
    color: blue;
}


.dropdown-section {
    background: #e9e9e9;
    padding: 10px;
    border-radius: 10px;
}

/**FutureWidget**/
/**eAdmLogin**/

.login-box {
    max-width: 500px;
    margin: auto;
    padding: 10px 25px 25px 25px;
    border-bottom: 1px solid #ccc;
    /*box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);*/
}

.login-box .column span {
    padding-bottom: 7px;
    display: block;
}

.input-row {
    margin-bottom: 1rem;
}

.login-section,
.password-section,
.greeting-section {
    display: flex;
    flex-direction: column;
}

.login-button {
    padding: 0.6rem 1.2rem;
    background-color: #84c440;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
}

    .login-button:hover {
        background-color: #26b24b
    }

.error-wrap {
    color: red;
    background: #fff6f6;
    font-size: 14px;
    padding: 10px;
}

.forgot-link {
    text-align: center;
    margin-top: 1rem;
}

.BluLnk {
    color: #007BFF;
    text-decoration: none;
}


/**eAdmLogin**/