table, tr, td, ul, li, div, span, form, img, input {
    margin: 0px;
    padding: 0px;
}

body {
    font: 12px "Lucida Grande", Helvetica, Arial, sans-serif;
    margin: 0px;
    padding: 0px;
}

a {
    text-decoration: none;
    color: inherit;
}

.button {
    padding: 2px 8px 3px 8px;
    border: 1px solid lightgray !important;
}

.proc-button {
    background-color: #E8FFEA !important;
}

.proc-button:hover {
    background-color: #DBFFDF !important;
}

.caution-button {
    background-color: #FFD7D7 !important;
}

.caution-button:hover {
    background-color: #FFCACA !important;
}

/* Loading : START */

#ajaxOverlay {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent; /* 투명하게 */
    cursor: wait;
}

.loading-bar {
    position: absolute;
    /* photo bottom center */
    top: 120px;
    left: 50%;
    /* logo right */
    /* top: 33px;
    left: 18%; */
    width: 100px;
    height: 5px;
    background: #eee;
    border-radius: 5px;
    transform: translate(-50%, -50%);
    overflow: hidden;
}

.loading-bar .bar {
    width: 30%;
    height: 100%;
    background: gray;
    animation: move-bar 1s infinite linear;
    border-radius: 5px;
}

@keyframes move-bar {
    0% {
        margin-left: -30%;
    }
    100% {
        margin-left: 100%;
    }
}

/* Loading : END */
