body, table, div, p, span, input,a, button {
    font-family: "Nanum Gothic", Sans-serif;
    font-size:10pt;
    font-weight: normal;
}

input[type=text]::-ms-clear{
    display: none;
}

/*  기본 바디 */
body {
    font-family: 궁서;
    font-size: 10pt;
    margin: 2px;
}

/* body 에 스크롤바를 만들기위함 */
#body_container {
    display:table;
    height: 100%;
    width: 100%;
    overflow-style: scrollbar;
    /*border:solid 2px yellow;*/
}

/* 메뉴를 제외한 전체 화면 프레임 */
#main_outer {
    display:table-cell;
    vertical-align: top;
    width: 100%;
    text-wrap: avoid;
    overflow-style: auto;
    margin:0px;
    padding-left:10px;
    padding-right:10px;
}

/* 게시판이나 기타 내용이 표시될곳 */
#main {
    float: left;
    width: 100%;
    overflow: auto;
    height:100%;
}


H1 {
    border-bottom: 1px solid silver;
    padding-bottom:8px;
    font-size:20pt;
    font-weight: bold;
}

input[type="text"], input[type="password"] {
    border: 1px solid #c3c6c9;
    height: 22px;
    line-height: 22px;
    border: 1px solid #c3c6c9;
	width:80px;
    border-radius: 0px; /*box-shadow:0 3px 3px #f4f4f4 inset; */
}

.overflow { height:200px;}

/* Combobox Start */
.custom-combobox {
    position: relative;
    display: inline-block;
}

.custom-combobox-toggle {
    position: absolute;
    top: 0;
    bottom: 0;
    margin-left: -1px;
    padding: 0;
}

.custom-combobox-input {
    margin: 0;
    padding: 5px 10px;
}

.ui-autocomplete {
    max-height: 200px;
    overflow-y: auto;
    /* prevent horizontal scrollbar */
    overflow-x: hidden;
  }
  /* IE 6 doesn't support max-height
   * we use height instead, but this forces the menu to always be this tall
   */
html .ui-autocomplete {
    height: 200px;
}

/* Combobox End */


.input_number {
	
    align:right;
    text-align: right;
	
}



/* --------------------------------------------------------------------------------------
                               라디오 / 체크 버튼 그룹 설정
-------------------------------------------------------------------------------------- */

.btn-group label {
    float: left;
}

.btn-group label {
    min-width: 60px;
    width: auto;
    padding: 2px 10px;
    background-color: #e9e9e9;
    border-color: #cacaca;
    color: #3b3b3b;
    opacity: .8;
    font-size: 12px;
    border: 1px solid #cacaca;
    vertical-align: middle;
    padding: 6px;
    overflow: hidden;
}

.btn-group label:hover {
    cursor: pointer;
}

.btn-group input:checked + label {
    border: 1px solid #ff757f;
    background: #ff757f;
    color: #fff;
    opacity: 1;
    font-weight: bold;
}

.btn-group label:first-of-type {
    border-radius: 4px 0 0 4px;
}

.btn-group label:last-of-type {
    border-radius: 0 4px 4px 0;
}

.btn-group input {
    display: none;
}




/*
.page-loader {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #3498db;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    background-image: url("../img/ymdcs.png");
}


@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

*/



/* -------------- loader3 -------------- */

.loading-container{
    text-align: center;
    background-color: #999999;
    overflow: hidden;
    display: inline-block;
    height: 100%;
    width: 100%;
    float:left;
    position: relative;
    /*margin:0 -4px -5px -2px;*/
    transition: all .2s ease;
}


.page-loader{
    position: relative;
    width: 30%;
    height: 50%;

    top: 45%;
    top: -webkit-calc(50% - 10px);
    top: calc(50% - 10px);
    left: 25%;
    left: -webkit-calc(35% - 75px);
    left: calc(35% - 75px);
}

.page-loader:after{
    content: "PAGE LOADING ...";
    color: #fff;
    font-family:  Lato,"Helvetica Neue" ;
    font-weight: 200;
    font-size: 16px;
    position: absolute;
    width: 100%;
    height: 20px;
    line-height: 20px;
    left: 0;
    top: 0;
    background-color: #999999;
    z-index: 1;
}


.page-loader:before{
    content: "";
    position: absolute;
    background-color: #fff;
    top: -5px;
    left: 0px;
    height: 30px;
    width: 0px;
    z-index: 0;
    opacity: 1;
    -webkit-transform-origin:  100% 0%;
    transform-origin:  100% 0% ;
    -webkit-animation: page-loader 10s ease-in-out infinite;
    animation: page-loader 10s ease-in-out infinite;
}


.page-loader-marker {   
    width:142px;
    height:37px;
    margin-top: 100px;
    margin-left: calc(50% - 162px);
}


@-webkit-keyframes page-loader {
    0%{width: 0px;}
    70%{width: 100%; opacity: 1;}
    90%{opacity: 0; width: 100%;}
    100%{opacity: 0;width: 0px;}
}

@keyframes page-loader {
    0%{width: 0px;}
    70%{width: 100%; opacity: 1;}
    90%{opacity: 0; width: 100%;}
    100%{opacity: 0;width: 0px;}
}


