@charset "utf-8";

/**
 * 1.0 - 기본 설정
 * 2.0 - 레이아웃
 * 3.0 - 플러그인
 * 4.0 - 미디어 쿼리
 * --------------------------------------------------------------------------
 */

/* ==========================================================================
 * 1.0 기본 설정
 * ========================================================================== */

/* RESET THE BOX-SIZING */

* {
    box-sizing: border-box;
}
*:before,
*:after {
    box-sizing: border-box;
}

/**
 * BODY RESET
 * 1. iOS와 안드로이드의 웹킷 기반 브라우저(사파리, 크롬 등)에서 링크영역 하이라이트를 삭제
 */

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    outline: none;
    box-sizing: border-box;
}
html {
    font-size: 100%;
    height: 100%;
    -webkit-tap-highlight-color:rgba(0,0,0,0.3); /* 1 */
    overflow: hidden;
}
body,
button,
input,
select,
textarea {
    /*font-family: "맑은 고딕", "Malgun Gothic", "돋움", dotum, Helvetica, sans-serif;*/
    color: #222;
    font-size: 12px;
    letter-spacing: -1px;
    line-height: 1.2;
}
body {
    height: 100%;
    min-width: 1200px;
    min-height: 700px;
    -ms-overflow-style: scrollbar;
}
::-moz-selection {
    background: #ffb966;
    text-shadow: none;
}
::selection {
    background: #ffb966;
    text-shadow: none;
}

/* LINKS */

a {
    color: #222;
    text-decoration: none;
}
a:hover,
a:focus {
    color: #111;
    text-decoration: none;
}

/* LIST STYLE */

ul, ol, dl {
    list-style: none;
}

/* FORM FIELD */

label {
    cursor: pointer
}
textarea {
    resize: vertical;
    padding: 5px;
    min-height: 60px;
}
::-webkit-input-placeholder {
    color: #ccc; /* Chrome/Opera/Safari */
}
::-moz-placeholder {
    color: #ccc; /* Firefox 19+ */
}
:-ms-input-placeholder {
    color: #ccc; /* IE 10+ */
}
:-moz-placeholder {
    color: #ccc; /* Firefox 18- */
}
select {
    /* -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none; */
    height: 24px;
}
select::-ms-expand {
  /* display: none; */
}
.select {
    position: relative;
    z-index: 1;
}
.select:before {
    content: "";
    position: absolute;
    top: 50%;
    right: 10px;
    width: 0;
    height: 0;
    margin-top: -1px;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-top: 5px solid #666;
}
.input-chk {
    display: block;
    height: 20px;
    position: relative;
    overflow: hidden;
    vertical-align: middle;
}
.input-chk.inline {
    display: inline-block;
}
.input-chk input {
    z-index: 9;
    outline-style: none !important;
    width: 15px;
    height: 16px;
    position: absolute;
    top: -100%;
    left: 2px;
}
.input-chk label {
    outline-style: none !important;
    outline: 0;
    display: block;
    padding: 0 0 0 40px;
    background: url(../../img/ico_mode.gif) 0 0 no-repeat;
}

.input-chk input + label.active {
    background: url(../../img/ico_mode_on.gif) 0 0 no-repeat;
}
/*
.btn {
    border-color: #bbb;
    background: #fdfdfd;
    background-image: -webkit-linear-gradient(#fdfdfd,#e8e8e8);
    background-image: linear-gradient(#fdfdfd,#e8e8e8);
    filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#fdfdfd, endColorstr=#e8e8e8);
    box-shadow: inset 1px 1px 0px 0px rgba(255,255,255,1);
}
.btn:focus, .btn:hover
{
    border-color: #888;
}
*/
/*
input[type="radio"],
input[type="checkbox"],
label{
    vertical-align: middle;
    margin-top: 0;
    margin-right: 2px;
}
*/
.btn-box {
    padding: 12px;
    text-align: center;
}
.btn-block .btn {
    display: block;
    width: 100%;
}

/* ETC. */

#skippy {
    position: absolute;
    padding: 10px;
    display: inline-block;
    border: 2px solid #eee;
    background: #fff;
    z-index: 9999;
}
#mask {
    background: rgba(0, 0, 0, 0.0);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#70000000,endColorstr=#70000000);
    position: fixed;
    width: 100%;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 600;
}
.pagination {
    padding: 20px 0;
    text-align: center;
}
.pagination a {
    display: inline-block;
    width: 25px;
    height: 25px;
    line-height: 25px;
    border: 1px solid #ddd;
}
.pagination .on {
    background: #444;
}
b {
    font-weight: bold;
}

/**
 * BROWSER UPGRADE PROMPT
 * IE9미만 브라우저에서 접속시 업데이트 알림문구 노출
 */

.browser-mask {
    background: rgba(0, 0, 0, 0.7);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#70000000,endColorstr=#70000000);
    position: fixed;
    width: 100%;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 9998;
}
.browser-upgrade {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #f7f7f7;
    border-bottom: 2px solid #f5b63b;
    color: #000;
    font-family: sans-serif;
    margin: 0 0 1em;
    padding: 1em 0;
    text-align: center;
    z-index: 9999;
}

/* ==========================================================================
 * 2.0 레이아웃
 * ========================================================================== */

#wrap {
    height: 100%;
    position: relative;
    overflow: hidden;
}
.user-nav {
    position: absolute;
    height: 46px;
    top: 0;
    right: 0;
    text-align: right;
}
.user-nav span {
    color: #fff;
    display: inline-block;
    margin-right: 15px;
    vertical-align: top;
}
.user-nav b {
    font-weight: bold;
    margin-right: 5px;
}
.user-nav ul {
    display: inline-block;
    padding-right: 20px;
}
.user-nav li {
    display: inline-block;
}
.user-nav a {
    display: block;
    font-size: 21px;
    color: #fff;
    margin-right: 8px;
}

/* GNB */

#gnb {
    text-align: center;
    margin: 0 auto;
}
#gnb>ul>li {
    display: inline-block;
    font-size: 0;
    position: relative;
}
#gnb>ul>li.active>a,
#gnb>ul>li>a:hover,
#gnb>ul>li>a:focus {
    color: #fdd600;
}
#gnb>ul>li>a {
    font-size: 14px;
    display: block;
    padding: 0 21px;
    color: #fff;
    position: relative;
    text-transform: uppercase;
}
#gnb>ul>li>a:before {
    content: '';
    display: block;
    width: 1px;
    height: 12px;
    border-left: 1px solid #5c5c62;
    border-right: 1px solid #3a3a40;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -6px;
}
#gnb>ul>li:first-child>a:before {
    border: 0;
}
#gnb ul li>ul {
    display: none;
    position: absolute;
    top: 40px;
    left: 50%;
    width: auto;
    min-width: 140px;
    border: 1px solid #494950;
    background: #fff;
    box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.27);
}
#gnb ul ul.active {
    display: block;
}
#gnb ul ul>li:hover>a:after {
    content: '\f105';
    display: block;
    position: absolute;
    color: #f4b400;
    right: 8px;
    top: 7px;
    font: normal normal normal 13px/1 FontAwesome;
    font-weight: bold;
}
#gnb ul ul li {
    position: relative;
}
#gnb ul ul li a {
    display: block;
    text-align: left;
    white-space: nowrap;
    padding: 0 25px 0 8px;
    height: 30px;
    font-size: 12px;
    line-height: 28px;
    letter-spacing: -1px;
    border-top: 1px solid #ccc;
    position: relative;
}
#gnb ul ul>li:hover>a {
    background: #f3f4f5;
    color: #222;
    font-weight: bold;
}

#gnb ul ul ul {
    position: absolute;
    top: 4px;
    left: 100%;
    border: 1px solid #494950;
    background: #fff;
    box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.27);
}
#gnb ul ul ul.active {
    display: block;
}
#gnb ul ul ul li:first-child a {
    border-top: 0;
}

.content {
    height: 100%;
    position: relative;
}
.container-wrap {
    height: 100%;
    position: relative;
    background: #fafafa;
}
.title-tab {
	display: none;
    height: 34px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #999;
    z-index: 9;
}
.title-tab ul {
    padding-top: 4px;
    padding-left: 20px;
    font-size: 0;
}
.title-tab ul li {
    display: inline-block;
    position: relative;
}
.title-tab ul li a {
    display: block;
    font-size: 12px;
    padding: 0 30px 0 15px;
    height: 29px;
    line-height: 27px;
    border: 1px solid #bababa;
    border-bottom-color: #999;
    border-radius: 3px 3px 0 0;
    margin-left: 4px;
    color: #888;
}
.title-tab ul li:first-child a {
    margin-left: 7px;
}
.title-tab ul li.active a {
    background: #fafafa;
    position: relative;
    height: 30px;
    color: #222;
    border-color: #999;
    border-top-color: #333;
    border-top-width: 2px;
    border-bottom: 0;
    font-weight: bold;
    z-index: 99;
}
.title-tab ul .tab-close {
    padding: 0;
    border: 0;
    background: none;
    position: absolute;
    color: #999;
    font-size: 11px;
    z-index: 999;
    right: 10px;
    top: 10px;
}
.title-tab .control-btn {
    margin-top: -28px;
    padding-right: 10px;
}

/* resizable 세팅 */

.ui-resizable-e {
    cursor: e-resize;
    width: 8px;
    top: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    background: #cfd0d5 url(../../img/resize_handle_e.png) no-repeat 50% 50%;
    border: 1px solid #b4b4b4;
    border-top: 0;
    border-bottom: 0;
}
.ui-resizable-s {
    cursor: s-resize;
    height: 8px;
    width: 100%;
    bottom: -8px;
    left: 0;
    right: 0;
    margin: 0;
    background: #cfd0d5 url(../../img/resize_handle_s.png) no-repeat 50% 50%;
    border: 1px solid #b4b4b4;
    border-left: 0;
    border-right: 0;
}
.ui-resizable-n {
    cursor: s-resize;
    height: 8px;
    width: 100%;
    bottom: -8px;
    left: 0;
    right: 0;
    top: inherit;
    margin: 0;
    background: #cfd0d5 url(../../img/resize_handle_s.png) no-repeat 50% 50%;
    border: 1px solid #b4b4b4;
    border-left: 0;
    border-right: 0;
}
.ui-resizable-n:hover,
.ui-resizable-e:hover,
.ui-resizable-s:hover {
    background-color: #dfdfe0;
    border-color: #999;
}

/* 컨테이너 상단 */

.container-n {
    position: relative;
    width: 100%;
    /*height: 100%;	우측 Form 보이면 주석 해제*/
}

.container-m .inner,
.container-n .inner {
    height: 100%;
    width: 100%;
}
.con-left .inner,
.con-right .inner,
.con-fluid .inner {
    width: 100%;
    overflow: hidden;
    height: 100%;
    padding-bottom: 8px;
}
.container-m>div {
    height: 100%;
}
.con-left,
.con-right,
.con-fluid {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}
.con-left {
    float: left;
}
.con-right {
    float: right;
}
.con-right .inner {
    padding-left: 8px;
}
.con-right .sub-tab a {
    padding: 0 5px;
}
.con-right table td input {
    /*margin-right: 2px;*/
}
.container-s {
    position: relative;
    clear: both;
    overflow: hidden;
    padding-top: 0;
    border-top: 1px solid #ccc;
}
.container-m {
    position: relative;
    clear: both;
    padding-top: 0;
    border-top: 1px solid #ccc;
    overflow: hidden;
}

#subForm {
    background: #f3f3f3;
}
#subForm .grid-inner {
    background: none;
    border-color: #ccc;
    padding: 3px 0;
}
#subForm .grid-col {
    border: 1px solid #a9a9ab;
    position: relative;
    z-index: 22;
}
#subForm .btn.search {
    margin-right: 2px;
}
#subForm .btn.save {
    height: 22px;
    padding: 0 5px;
    font-size: 11px;
}
.con-right #subForm .grid-col {
    overflow: auto;
}
.con-right #subForm .grid-inner {
    border-width: 1px;
    border-top: 0;
}
.con-right #subForm .col-4 .grid-wrap {
    height: auto;
}
#subForm .grid-col {
    border-top: 2px solid #343434;
    border-right: 0;
}
.container-s #subForm .grid-wrap .grid-inner {
    border-top: 0;
}

/* 세로보기모드 */

.view-v .container-s {
    border: 0;
    padding-top: 8px;
    height: 200px;
}
.view-v .container-m {
    display: none;
    height: 0;
}

/* 가로보기모드1 */

.view-h1 .container-m {
    display: none;
    height: 0;
}
.view-h1 .con-left .inner {
    padding-right: 15px !important;
    border-right: 0;
}
.con-right .grid-col {
    margin: 0;
}
.con-right .grid-col .grid-wrap {
    width: 100% !important;
    float: none !important;
    padding-left: 0 !important;
    padding: 0 !important;
}
.con-right .col-3 .grid-wrap {
    height: 33.3333333%;
}
.con-right .col-4 .grid-wrap {
    height: 25%;
}
.con-right .grid-col.col-3 .grid-wrap:first-child {
    border-left: 1px solid #a9a9ab;
}
.container-s #subForm .grid-inner {
    border-bottom: 0;
    height: 200px;
}
.container-s #subForm .toggle-side {
    display: none;
}

/* 가로보기모드2 */

.view-h2 .container-m {
    display: block;
    height: 200px;
    padding-top: 8px;
}
.view-h2 .container-s {
    padding-top: 0;
}
.view-h2 .container-m {
    border: 0;
    padding-top: 8px;
}
.view-h2 .con-right {
    display: none;
}

/* 컨테이너 상단에 우측영역 있는 경우 */

.container-n.has-right {
    /*padding-right: 400px;	우측 상세 Form 보이려면..*/
}
.container-n.has-right .con-right {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 400px;

}
.container-n.has-right .con-left .inner {
    /*padding-right: 8px;		splitter 살리면 주석 제거*/
    border-right: 1px solid #ccc;
}
.container-n.has-right .con-left .grid-inner {
    border-right: 1px solid #a9a9ab;
}
.container-n.has-right .grid-bottom {
    border-right: 1px solid #a9a9ab;
}
.container-n.has-right .grid-col.col-3 {
    margin: 0;
}
.toggle-side {
    position: absolute;
    width: 20px;
    text-indent: -9999px;
    background: #cfcfd3 url(../../img/r_toggle_close.png) no-repeat 50% 50%;
    right: 0;
    top: 0;
    border: 0;
    border-left: 1px solid #989898;
    height: 30px;
    z-index: 99999
}
.toggle-side.close {
    background-image: url(../../img/r_toggle_open.png);
    height: 30px;
    display: none;
}
.view-h1 .toggle-side.close {
    display: none !important;
}

/* 컨테이너 상단에 좌측영역 있는 경우 */

.container-n.has-left {
    padding-left: 285px;
}
.container-n.has-left .con-left {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 285px;

}
.container-n.has-left .con-left .inner,
.container-n.has-left .con-right .inner {
    padding-bottom: 8px;
}
.container-n.has-left .con-left .inner {
    padding-left: 8px;
    border-left: 1px solid #ccc;
}

/* 컨테이너 내부 좌측영역 있는 경우 */

.grid-wrap.has-side {
    padding-left: 250px;
}
.grid-wrap.has-side .grid-inner {
    float: right;
}
.grid-wrap.has-side .side-nav {
    width: 250px;
    height: 100%;
    position: absolute;
    background: #fff;
    left: 0;
    top: 0;
    z-index: 1;
    overflow: auto;
    border-top: 2px solid #333;
    padding-right: 8px;
}
.grid-wrap.has-side .side-nav .basic td {
    text-align: left;
    padding: 10px 12px;
}
.grid-wrap.has-side .side-nav .inner {
    height: 100%;
    overflow: scroll;
}

/* grid */

.table-layout {
    font-family: '돋움', dotum;
    font-size: 12px;
    height: 100%;
    position: relative;
    color: #666;
    letter-spacing: 0;
}
.table-layout input,
.table-layout button,
.table-layout select,
.table-layout textarea {
    font: inherit;
    color: #666;
    letter-spacing: inherit;
}

/* 그리드영역 서브탭, 검색, 하단 있는 경우 */

.table-layout.has-stab {
    padding-top: 30px;
}
.table-layout.has-stab.has-search
{
    padding-top: 60px;
}
.table-layout.has-search {
    padding-top: 30px;
}
.table-layout.has-bottom {
    padding-bottom: 37px;
}

/* tool */

.tool {
    position: absolute;
    top: 5px;
    right: 0;
    color: #333;
    z-index: 2;
    margin-left: 200px;
    padding-right: 25px;
    z-index: 20;
}
.tool b {
    display: inline-block;
    line-height: 15px;
    vertical-align: middle;
    margin-right: 8px;
}
.tool .btn {
    position: relative;
    font-size: 0;
    padding: 0;
    height: 20px;
    width: 20px;
    border-radius: 2px;
}
.tool .btn i {
    width: 12px;
    height: 12px;
    display: block;
    margin: 0 auto;
    background-repeat: no-repeat;
}
.tool .btn.type-v i {
    background-image: url(../../img/view_mode.png);
    background-position: 0 0;
}
.tool .btn.type-h1 i {
    background-image: url(../../img/view_mode.png);
    background-position: -12px 0;
}
.tool .btn.type-h2 i {
    background-image: url(../../img/view_mode.png);
    background-position: -24px 0;
}
.tool .btn.type-v.on i {
    background-image: url(../../img/view_mode.png);
    background-position: 0 -12px;
}
.tool .btn.type-h1.on i {
    background-image: url(../../img/view_mode.png);
    background-position: -12px -12px;
}
.tool .btn.type-h2.on i {
    background-image: url(../../img/view_mode.png);
    background-position: -24px -12px;
}

/* sub-tab */

.sub-tab {
    position: absolute;
    height: 30px;
    top: 0;
    left: 0;
    right: 0;
    padding-top: 6px;
    padding-left: 6px;
    padding-right: 18px;
    margin-bottom: 4px;
    letter-spacing: -1px;
    z-index: 10;
    background: #fafafa;
}
.sub-tab li {
    font-size: 0;
    display: inline-block;
}
.sub-tab a {
    display: block;
    height: 25px;
    line-height: 24px;
    padding: 0 12px;
    font-size: 11px;
    border: 1px solid #bbb;
    border-radius: 3px 3px 0 0;
    background: #fff;
    color: #666;
}
.sub-tab li.active a {
    background: #82828a;
    border-color: #636363;
    color: #fff;
    font-weight: bold;
    box-shadow: inset 0 1px 0px 0px rgba(255,255,255,0.2);
}

/* search */

.sub-search {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #a9a9ab;
    border-bottom: 0;
    border-right: 0;
    border-left: 0;
    padding: 8px;
    height: 60px;
    letter-spacing: -0.5px;
    z-index: 10;
}
.has-right .con-left .sub-search {
    border-right: 1px solid #a9a9ab;
}
.con-right .sub-search {
    border-right: 0;
}
.con-fluid .sub-search {
    border-left: 0;
    border-right: 0;
}
.sub-search .search-form-group {
    display: inline-block;
}

.sub-search select,
.sub-search input[type='text'] {
    height: 20px;
    vertical-align: middle;
    font-family: sans-serif !important;
	font-size: 9pt;
	color: #333;
}
.sub-search input[type='text'] {
    width: 68px;
}
.sub-search .btn {
    height: 22px;
    padding: 0 5px;
    min-width: 22px;
}
.sub-search .input-chk {
    margin-top: 2px;
}
.sub-search .input-chk,
.sub-search .input-chk label {
    height: 16px;
    line-height: 17px;
    font-weight: bold;
}

/* grid layout */

.grid-wrap {
    position: relative;
    z-index: 10;
    height: 100%;
}
.grid-wrap.has-bg {
    background: #fff;
}
.grid-inner {
    border: 1px solid #a9a9ab;
    border-top: 2px solid #343434;
    height: 100%;
    overflow: auto;
    background: #fff;
}
.grid-inner.height-auto {
    height: auto;
    border-bottom-color: #333;
}
.grid-col {
    height: 100%;
}
.grid-col {
    margin-left: -3px;
    margin-right: -3px;
}
.grid-col.col-2 .grid-wrap {
    width: 50%;
    float: left;
    border-left: 0;
}
.grid-col .grid-wrap {
    float: left;
    padding: 0 3px;
}
.grid-col.col-3 .grid-wrap {
    width: 33.33333333%;
}
.grid-col.col-4 .grid-wrap {
    width: 25%;
    padding: 0;
    border-left: 0;
}
.grid-col.col-4 .grid-wrap .grid-inner {
    border-left: 0;
}
.grid-col .grid-wrap:first-child {
    margin-left: 0
}
.grid-col .grid-wrap:first-child .grid-inner {
    border-left: 0;
}
.grid-col .grid-wrap:last-child .grid-inner {
    border-right: 0;
}
.con-left .grid-inner,
.con-left .grid-bottom {
    border-left: 0;
    border-right: 0;
}
.con-right .grid-inner {
    border-right: 0;
}
.con-fluid .grid-inner {
    border-left: 0;
    border-right: 0;
}
.grid-wrap table input {
    margin: 0;
}
.grid-bottom {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 0px;
    border: 1px solid #a9a9ab;
    border-top: 0;
    padding-top: 7px;
}

/* table */

table.basic {
    width: 100%;
    background: #fff;
    font-family: sans-serif !important;
	font-size: 9pt;
	color: #262626;
}
table.basic tr:hover td {
    background: #c9e2f6;
}
table.basic tr:nth-child(even) {
    background: #f8f9fb;
}
table.basic th,
table.basic td {
    vertical-align: middle;
}
table.basic th {
    font-weight: bold;
    padding: 8px 0;
    border: 1px solid #fafafa;
    border-bottom-color: #aaa;
    text-align: center;
    color: #343434;
    background: #f7f7f7; /* Old browsers */ /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #f7f7f7 0%,#f0f0f0 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #f7f7f7 0%,#f0f0f0 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f7f7f7', endColorstr='#f0f0f0',GradientType=0 ); /* IE6-9 */
}
table.basic td {
    text-align: center;
    padding: 3px 4px;
    border: 1px solid #fafafa;
    color: #666;
}
td.has-btn {
    /* position: relative;
    padding-right: 38px !important; */
}
td .form-group {
    margin: 0;
}
td .form-group span {
    line-height: 23px;
    padding: 0 8px;
}
td .form-group textarea {
    width: 90%;
    height: 50px;
    border: 1px solid #bbb;
    margin: 0 2px;
}
td .form-group>div {
    padding: 0 2px;
}
td .form-group .search {
    /* position: absolute;
    right: 14px;
    top: 6px; */
    float: left;
}
table.th-effect {}
table.th-effect th {
    background: #f5fbfd;
    border: 0;
    border-top: 1px solid #ddd;
    font-weight: normal;
    text-align: left;
    padding: 0 10px;
}
table.th-effect .form-group {
}
table.th-effect .form-group .col-sm-1 {
    min-width: 26px;
}
table.th-effect tr:nth-child(even),
table.th-effect tr:hover td {
    background: none;
}
table.th-effect th.first {
    font-weight: bold;
    text-align: center;
}
table.th-effect tr:first-child th,
table.th-effect tr:first-child td {
    border-top: 0;
}
table.th-effect tr th {
    border-right: 1px solid #aaa;
}
table.th-effect .has-bdr {
    border-top-color: #aaa;
}
table.th-effect td {
    text-align: left;
    border: 0;
    border-top: 1px solid #eee;
    border-right: 1px solid #333;
}
table.th-effect td:last-child {
    border-right: 0;
}
table.no-bordered {
    width: 100%;
    color: #666;
    background: none;
}
table.no-bordered tr:nth-child(even),
table.no-bordered tr:hover td {
    background: none;
}
table.no-bordered th,
table.no-bordered td {
    border: 0;
    background: none !important;
    text-align: left;
}
table.no-bordered th {
    padding: 2px 4px;
    font-weight: normal;
    background: none;
}
table.no-bordered td {
    padding: 2px 4px;
}
table.no-bordered td:last-child {
    padding-right: 12px;
}
table.no-bordered th {
    white-space: nowrap;
}
.grid-bottom table th {
    text-align: center;
}
.grid-bottom table th,
.grid-bottom table td {
    padding: 0 8px;
}
.grid-bottom table td {
    padding-left: 0;
}
.divider-h {
    margin-top: 5px;
    border-top: 1px solid #d6d6d6;
    border-bottom: 1px solid #f5f5f5;
}

/* form */
/*
.btn.search {
    width: 22px;
    height: 22px;
    padding: 0;
    line-height: 1.2;
    text-align: center;
    background: #828282;
    border: 1px solid #6d6d6d;
    box-shadow: inset 0 1px 0px 0px rgba(255,255,255,0.2);
    color: #fff;
}
.btn.search2 {
    height: 22px;
    padding: 0 3px;
    line-height: 1.2;
    text-align: center;
    background: #828282;
    border: 1px solid #6d6d6d;
    box-shadow: inset 0 1px 0px 0px rgba(255,255,255,0.2);
    color: #fff;
}
*/

#detail_tab_1 input[type='text'] {
	font-family: sans-serif !important;
	font-size: 9pt;
	color: #333;
	font-weight: bold;
    background-color: #ddd; 
}

#detail_tab_1 th {
	font-family: sans-serif !important;
	font-size: 9pt;
	color: #333;
}

/* popup */

.pop-wrap {
    position: absolute;
    border: 1px solid #222;
    border-radius: 5px 5px 0 0;
    overflow: hidden;
    height: auto;
    left: 50%;
    top: 50%;
    z-index: 9999;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.54);
    display: none;
}
.pop-container {
    font-family: '돋움', dotum;
    background: #fff;
}
.pop-container .sub-search {
    position: relative;
}
.pop-container .sub-search input,
.pop-container .sub-search select,
.pop-container .sub-search button {
    font: inherit;
    color: #666;
    letter-spacing: inherit;
}
.pop-container .sub-search .btn.search {
    color: #fff;
}
.pop-wrap .btn-close {
    position: absolute;
    right: 10px;
    top: 6px;
    text-indent: -9999px;
    background: url(../../img/btn_pop_close.png) no-repeat 0 0;
    outline: 0;
    border: 0;
    width: 24px;
    height: 24px;
}
.pop-wrap .btn-box {
    background: #fafafa;
    font-family: '돋움', dotum;
    clear: both;

}
.pop-wrap .btn-box .btn {
    color: #fff;
    font: inherit;
    box-shadow: none;
    border-radius: 3px;
    height: 26px;
    line-height: 26px;
    padding: 0;
    width: 60px;
    font-size: 12px;
    font-weight: bold;
}
.pop-wrap .btn-box .btn-ok {
    background: #fd9b00;
    border: 1px solid #eb7f00;
}
.pop-wrap .btn-box .btn-cancel {
    background: #7d7d7d;
    border: 1px solid #666;

}

#countryCode {
    width: 525px;
}
#customDuty {
    width: 525px;
}
#selectDate {
    width: 450px;
}
.pop-wrap .grid-inner {
    border-left: 0;
    border-right: 0;
    overflow: scroll;
}
.pop-wrap.date {}
.pop-wrap.date .inner {
    padding: 10px;
    padding-bottom: 0;
    position: relative;
    overflow: hidden;
}
.pop-wrap.date .btn-box {
    background: #fff;
}
.pop-wrap.date .from {
    float: left;
    width: 50%;
    padding-right: 10px;
    border-right: 1px solid #ddd;
}
.pop-wrap.date span.today {
    border: 1px solid #ccc;
    margin-bottom: 5px;
    display: block;
    text-align: center;
    height: 30px;
    line-height: 31px;
    font-weight: bold;
}
.pop-wrap.date .cal-box {
    border: 1px solid #ccc;
}
.pop-wrap.date .cal-top {
    border-bottom: 1px solid #ccc;
    background: #ededed;
    height: 28px;
    line-height: 28px;
    text-align: center;
    position: relative;
    font-size: 14px;
    font-weight: bold;
}
.pop-wrap.date .cal-top button {
    position: absolute;
    top: 3px;
    border: 0;
    background: none;
    width: 15px;
    height: 20px;
    padding: 0;
}
.pop-wrap.date .cal-top .first {
    left: 3px;
}
.pop-wrap.date .cal-top .prev {
    left: 18px;
}
.pop-wrap.date .cal-top .next {
    right: 18px;
}
.pop-wrap.date .cal-top .last {
    right: 3px;
}
.pop-wrap.date .cal-body {
}
.pop-wrap.date table {
    width: 100%;
}
.pop-wrap.date th {
    font-weight: bold;
    text-align: center;
    height: 23px;
    vertical-align: middle;
    color: #666;
    font-size: 11px;
}
.pop-wrap.date td {
    text-align: center;
    height: 23px;
    vertical-align: middle;
    font-size: 11px;
    background: #f6f6f6;
    color: #666;
}
.pop-wrap.date td.today {
    background: #c9e2f6;
}
.pop-wrap.date .weekend {
    color: #ff0000;
}
.pop-wrap.date .last-month,
.pop-wrap.date .next-month {
    color: #ccc;
}
.pop-wrap.date .last-month.weekend,
.pop-wrap.date .next-month.weekend {
    color: #ffa29f;
}
.pop-wrap.date .to {
    float: right;
    width: 50%;
    padding-left: 10px;
}

.tbl_detail INPUT {
	height: 20px;
}

.tbl_detail TD {
	padding: 1px 2px !important;
}

.filebox label {
  border: 1px solid #afb2b3;
  padding: 2px 5px;
  color: #262626;
  font-weight: bold;
  display: inline-block;
  font-size: inherit;
  line-height: normal;
  vertical-align: middle;
  background-color: #F0F0F0;
  cursor: pointer;
  position: relative ie;
  top: -1px ie;
  
}

.filebox input[type="file"] {  /* 파일 필드 숨기기 */
  position: absolute;
  width: 1px;
  /*height: 1px;*/
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip:rect(0,0,0,0);
  border: 0;
}

.no-padding {
	padding: 0px !important;
}

.brt2 {
	border-top: 2px solid #343434;
}

#grid10 {
	height: 200px;
}

.detail_tab3 {
	height: 100%;
}

.detail_tab3 table {
	height: 100%;
}

.detail_tab3 th {
	height: 10px;	
}

.ta_bottom {
	width: 100%;
	height: 100%;
}

#content_s1 input[type='text'],
#content_s2 input[type='text'],
#content_s3 input[type='text'],
#content_s4 input[type='text'],
#content_s5 input[type='text'] {
	background-color: #fafafa;
	font-weight: bold;
	color: #262626;
}

#content_s3 textarea {
	background-color: #fafafa;
	font-weight: bold;
	color: #262626;
}

#content_s1 .basic,
#content_s2 .basic,
#content_s3 .basic,
#content_s4 .basic,
#content_s5 .basic {
	background-color: #d7d7d7;
}

#content_s1 .basic TH,
#content_s2 .basic TH,
#content_s3 .basic TH,
#content_s4 .basic TH,
#content_s5 .basic TH {
	background-color: #d7d7d7;
	font-weight: normal;
}

#ifrm_adv_verify {
	border: 0px;
}

#popup_sync_mf {
	width: 1000px;
	padding-bottom: 2px;
	background: #FFF;
	border-radius: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px;
	box-shadow: 0px 0px 4px rgba(0,0,0,0.7); -webkit-box-shadow: 0 0 4px rgba(0,0,0,0.7); -moz-box-shadow: 0 0px 4px rgba(0,0,0,0.7);    
}
#popup_sync_mf_header { background: url(../../img/hd-bg.png); padding: 10px 10px 5px 10px; border-bottom: 1px solid #CCC; border-top-left-radius: 5px; -moz-border-radius-topleft: 5px; -webkit-border-top-left-radius: 5px; border-top-right-radius: 5px; -moz-border-radius-topright: 5px; -webkit-border-top-right-radius: 5px; }

#popup_sync_mf_header  h2 { color: #444; font-size: 1.2em; font-weight: bold; margin-bottom: 3px; text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.5); }
#popup_sync_mf_header  p { color: #444; font-size: 1.0em; margin: 0; text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.5); text-shadow: none; }

#popup_apu_sdd {
	width: 800px;
	padding-bottom: 2px;
	background: #FFF;
	border-radius: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px;
	box-shadow: 0px 0px 4px rgba(0,0,0,0.7); -webkit-box-shadow: 0 0 4px rgba(0,0,0,0.7); -moz-box-shadow: 0 0px 4px rgba(0,0,0,0.7);    
}
#popup_apu_sdd_header { background: url(../../img/hd-bg.png); padding: 10px 10px 5px 10px; border-bottom: 1px solid #CCC; border-top-left-radius: 5px; -moz-border-radius-topleft: 5px; -webkit-border-top-left-radius: 5px; border-top-right-radius: 5px; -moz-border-radius-topright: 5px; -webkit-border-top-right-radius: 5px; }

#popup_apu_sdd_header  h2 { color: #444; font-size: 1.2em; font-weight: bold; margin-bottom: 3px; text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.5); }
#popup_apu_sdd_header  p { color: #444; font-size: 1.0em; margin: 0; text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.5); text-shadow: none; }

#pgrid {
	height: 500px;
}

#pgrid2 {
	height: 350px;
}

#pgrid3 {
	height: 150px;
}

#popup_layer {
	width: 424px;
	padding-bottom: 2px;
	background: #FFF;
	border-radius: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px;
	box-shadow: 0px 0px 4px rgba(0,0,0,0.7); -webkit-box-shadow: 0 0 4px rgba(0,0,0,0.7); -moz-box-shadow: 0 0px 4px rgba(0,0,0,0.7);    
}
#popup_layer_header { background: url(../../img/hd-bg.png); padding: 10px 10px 5px 10px; border-bottom: 1px solid #CCC; border-top-left-radius: 5px; -moz-border-radius-topleft: 5px; -webkit-border-top-left-radius: 5px; border-top-right-radius: 5px; -moz-border-radius-topright: 5px; -webkit-border-top-right-radius: 5px; }

#popup_layer_header  h2 { color: #444; font-size: 1.2em; font-weight: bold; margin-bottom: 3px; text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.5); }
#popup_layer_header  p { color: #444; font-size: 1.0em; margin: 0; text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.5); text-shadow: none; }

#popup_content { width: 100%;  height: 140px;}

.aui-grid-drop-list-item-wrapper {
	z-index: 99999;
}

.aui-grid-drop-list-content {
	text-align: left !important;
	padding-left: 5px;
}

#bardivs {
	width: 100%;
	position: relative;
}

#progresstext {
	position: absolute;
	top: 4px;
	left: 0;
	width: 100%;
	padding-top: 0px;
	text-align: center;
}

.ui-widget-header {
	background: #6eb7ff !important;
}

.popup_sub_tools {
	padding: 5px 10px;
	background-color: #f7f7f7;
	border-bottom: 1px solid #bfbfbf;
}

.popup_sub_tools ul {
	list-style: none;
	display: inline-block;
}

.popup_sub_tools li {
	display: table-cell;
	height: 20px;
	padding-right: 5px;
	vertical-align: middle;
}

.popup_sub_tools .title {
	font-weight: bold;
}

#headerMenu {
	position: absolute;
	z-index: 99;
}

#workMenu {
	position: absolute;
	z-index: 99;
}

.btn_file_new {
	background-color: #329ad6 !important;
	border: 0px;
	color: #fff !important;
	padding: 5px;
}

/* ==========================================================================
 * 1024px ~ 1199px
 * ========================================================================== */

@media screen and (max-width: 1199px) {

}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   http://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
    *, *:before, *:after, *:first-letter, *:first-line {
        background: transparent !important;
        color: #000 !important;
        /* 검정색의 글씨가 더 빠른 프린트가 가능: http://www.sanbeiji.com/archives/953 */
        box-shadow: none !important;
        text-shadow: none !important;
    }
    a,
    a:visited {
        text-decoration: underline;
    }
    a[href]:after {
        content: " (" attr(href) ")";
    }
    abbr[title]:after {
        content: " (" attr(title) ")";
    }
    /*
     * Don't show links that are fragment identifiers,
     * or use the `javascript:` pseudo protocol
     */
    a[href^="#"]:after,
    a[href^="javascript:"]:after {
        content: "";
    }
    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }
    /*
     * Printing Tables:
     * http://css-discuss.incutio.com/wiki/Printing_Tables
     */
    thead {
        display: table-header-group;
    }
    tr,
    img {
        page-break-inside: avoid;
    }
    img {
        max-width: 100% !important;
    }
    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }
    h2,
    h3 {
        page-break-after: avoid;
    }
}

.div_list
{
	border-top: 2px solid #343434;
	width: 100%;
}

/* 2020.04.20 hy */
input[type='text'], input[type='password']{
    height: 22px;
    width: 100%;
    border-radius: 0;
    border: 1px solid #bbb;
    text-indent: 2px;
}

.fl-l{ float: left; }
.fl-r{ float: right; }

.grid_main
{
	margin-top: 3px;
}

.grid_detail
{
	
}

.container_middle_right_form
{
	/*margin-top: 8px;*/
}

.container_wrap
{
	width: 100%;
	height: 100%;
	background-color: #CCCCCC;
}
.container_top
{
	/*
	position: absolute;
	*/
    top: 0;
    left: 0;
    right: 0;
    /*border: 1px solid #a9a9ab;*/
    border-bottom: 0;
    border-right: 0;
    border-left: 0;
    padding: 8px 16px;
    letter-spacing: -0.5px;
    z-index: 10;
    
	width: 100%;
	background-color: #EAEAEA;
}
.container_middle
{
	width: 100%;
	box-sizing: border-box;
	padding: 8px;
}
.container_bottom
{
	width: 100%;
}
.container_middle_left
{
	padding: 8px;
	background-color: #eaeaea;
	float: left;
}
.container_middle_right
{
	background-color: #F4F4F4;
	float: left;
	margin-left: 8px;
	padding: 8px;
}
.container_middle_right_top
{
	
}
.container_middle_right_bottom
{
	border-left: 1px solid #bdbdbd;
	border-right: 1px solid #bdbdbd;
	background-color: #eaeaea;
	padding: 4px; 
}
.container_search
{
	/*
	position: absolute;
	*/
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    /*border: 1px solid #a9a9ab;*/
    border-bottom: 0;
    border-right: 0;
    border-left: 0;
    padding: 8px;
    letter-spacing: -0.5px;
    z-index: 10;
    width: 100%;
    box-sizing: border-box;
    background-color: #EAEAEA;
}
.container_search_group
{
    box-sizing: border-box;
    background-color: #EAEAEA;
    float: left;
}
.container_tool_group
{
    background-color: #EAEAEA;
	float: left;
	/*height: 30px;*/
	vertical-align: middle;
	padding-top: 8px;
	box-sizing: border-box;
}
.container_tool_group.last_row
{
	padding-bottom: 4px;
	box-sizing: border-box;
}
.container_tool_group_sub
{
	float: left;
	margin-left: 20px;
}
.container_search_group .container_search_group
{
    display: inline-block;
}
.container_search_group select, .container_search_group input[type='text']
{
    height: 22px;
    vertical-align: middle;
    /*font-family: sans-serif;*/
    font-size: 9pt;
    color: #333;
}
.container_search_group .input-chk
{
    margin-top: 2px;
}
.container_search_group .input-chk, .container_search_group1 .input-chk label
{
    height: 16px;
    line-height: 17px;
    font-weight: bold;
}
/*
.btn-sm
{
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
}
*/
.container_search_group .search_date
{
	text-align: center;
	width: 80px;
}

.container_search_group .search_text
{
	width: 150px;
}
.container_bottom_sum
{
	float: left;
	width: 100%;
	background-color: #eaeaea;
	padding-bottom: 4px;
}
.container_bottom_sum_data
{
	float: left;
	background: #fff;
	border: 1px solid #cccccc;
	width: calc(25% - 6px);
	margin-right: 4px;
	padding: 5px 10px;
}
.container_bottom_sum_data.first
{
	width: 15%;
}
.container_bottom_sum_data.last
{
	width: 35%;
	margin-right: 0px;
}
.container_bottom_sum_data_title
{
	height: 19px;
}
.container_bottom_sum_data_info
{
	font-weight: bold;
}
.container_bottom_sum_data_cnt
{
	color: #008BB5;
	font-weight: bold;
}
.container_bottom_loc
{
	float: left;
	margin-right: 4px;
	background-color: #fff;
}
.container_bottom_grid
{
	float: left;
}
.container_middle_left_search
{
	width: 100%;
	/*display: flex;*/
}
.container_middle_left_search .group_search_gb
{
	width: 90px;
	height: 22px;
}
.container_middle_left_search .group_search_txt
{
	width: 120px;
	height: 22px;
}
.container_middle_right_search
{
	width: 100%;
	/*display: flex;*/
}
.container_tool_group_sub img
{
	vertical-align: bottom;
	cursor: pointer;
}
.resize_v
{
	background: #cfd0d5;	/*url(../../img/resize_handle_s.png) no-repeat 50% 50%;*/
	/*cursor: s-resize;*/
	height: 8px;
}
.info_tab_gab
{
	width: 100%;
	height: 5px;
}
.info_tab
{
	background-color: #FAFAFA;
	border: 1px solid #bdbdbd;
	border-bottom: 0px;
	text-align: center;
	padding: 5px;
	vertical-align: middle;
	font-weight: bold;
    color: #008BB5;
    display: none;
    visibility: hidden;
    height: 0px;
}
.info_tab.sub
{
	border-top: 0px;
	height: 0px;
}
.table_loc
{
	width: 100%;
	border: 1px solid #cccccc;
	font-size: 11px;
}
.table_loc textarea, .table_loc input[type=text]
{
	font-size: 10px !important;
}
.table_loc, .table_loc tr, .table_loc th, .table_loc td
{
	border-collapse: collapse;
}
.table_loc td
{
	vertical-align: middle;
	/*
	padding-left: 10px;
	padding-right: 10px;
	*/
	padding-top: 2px;
	padding-bottom: 2px;
}
.table_loc_col_header
{
	width: 87px;
}
.table_loc_col_content
{
	width: calc(100% - 87px);
}
.table_loc_title
{
	text-align: center;
	font-weight: bold;
	color: #008BB5;
	background-color: #fafafa;
	border: 1px solid #cccccc;
}
.table_loc_th
{
	/*border-right: 1px solid #cccccc;*/
	color: #5a5a5a;
	padding-left: 10px;
	padding-right: 5px;
}
.detail_info
{
	border: 1px solid #bbb !important;
	padding-left: 5px !important;
	padding-right: 5px !important;
	border-radius: 5px !important;
	outline: none !important;
	vertical-align: top;
}
.detail_info.ipA
{
	width: 40% !important;
}
.detail_info.ipB
{
	width: calc(60% - 4.19px) !important;
}
.detail_info.textarea
{
	width: 100%;
	height: 40px;
	min-height: 40px !important;
	resize: none;
}
.table_loc_td
{
	font-weight: bolder;
    color: #6d6d6d;
    padding-left: 5px;
	padding-right: 10px;
}
.table_loc_blank
{
    height: 10px;
}
.select_tool
{
	width: 82px;
	height: 22px;
	vertical-align: middle;
}
.container_search_group .btn, .container_search_group select, .container_search_group input[type=text], .container_middle_left .btn, .container_middle_left select, .container_middle_left input[type=text]
{
	padding: 0px 5px;
}
.container_tool_group .btn, .container_middle_left_search .btn
{
    padding: 0 10px;
}
.container_middle_left_search select, .container_middle_left_search input[type=text]
{
	border-color: #767676;
}
#grid .aui-grid-grouping-message
{
	padding-top: 5px !important;
	padding-left: 10px !important;
}
.aui-grid-default-footer
{
	height: 22px !important;
}
.div_folding
{
	position: absolute;
	background-color: #fff;
	border: 1px solid #BDBDBD;
	z-index: 88;
	cursor: pointer;
	text-align: center;
}
.f_v
{
	width: 46px;
	height: 13px;
    border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}
.f_h
{
	width: 13px;
	height: 46px;
	padding-top: 17px;
	border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}
.f_v img
{
	width: 12px;
	height: 8px;
	box-sizing: content-box;
    vertical-align: top;
    padding-top: 2px;
}
.f_h img
{
	width: 8px;
	height: 12px;
	box-sizing: content-box;
}
#modal_table_car th
{
	width: 80px;
	vertical-align: middle;
	font-weight: bold;
}
#modal_table_car td
{
	width: 184px;
	vertical-align: middle;
}
#modal_table_car input[type='text']
{
	border-radius: 5px;
	outline: none;
	padding: 0px 5px;
	height: 23px;
	font-size: 11px;
	vertical-align: middle;
}
#modal_table_car input[type='radio'] {
    border-radius: 5px;
    outline: none;
    padding: 0px 5px;
    height: 23px;
    font-size: 11px;
    vertical-align: middle;
}
.ui-front
{
	z-index: 201;
}
.tool_chk
{
	float: left;
	width: 60px;
}
.tool_chk.last
{
	width: 80px;
}
.tool_chk input[type=checkbox]
{
	vertical-align: middle;
}

.container_middle_right_form_label
{
	width: 100px;
	height: 25px;
	padding-top: 3px;
	text-align: center;
    color: #707075;
    font-size: 12px;
    font-weight: bold;
	background: #fff;
	border : 1px solid #bdbdbd;
	border-bottom: none !important;
	letter-spacing: 5px !important;
}
.container_middle_right_form_label.sec
{
	/*margin-top: 5px;*/
}
.container_middle_right_form_info
{
	width: 100%;
	background: #fff;
	border: 1px solid #bdbdbd;
	padding: 5px;
}
.container_middle_right_sub_grid
{
	width: 100%;
}
.tb_frm
{
	width: 100%;
}
.tb_frm, .tb_frm tr, .tb_frm th, .tb_frm tb
{
	border: 1px solid #e1e1e1;
	border-collapse: collapse;
}
.tb_frm th
{
	height: 25px;
	background-color: #f0f0f0;
	vertical-align: middle;
}
.tb_frm td
{
	height: 25px;
	vertical-align: middle;
}
.tb_frm_col_a
{
	width: 100px;
}
.tb_frm_col_b
{
	width: 180px;
}
.tb_frm td > select, .tb_frm td > input[type=text], .tb_frm td > input[type=password]
{
	width: 100%;
	border: none;
	padding-left: 5px;
}
.tb_frm td > textarea
{
	width: 100%;
	height: 35px;
	min-height: 35px !important;
	border: none;
	resize: none;
	padding-left: 5px;
}
.tb_frm td > input[type=checkbox]
{
	vertical-align: middle;
}
.container_middle_right_form_label_sub
{
	margin-top: 5px;
	height: 25px;
}
.container_middle_right_form_label_btn
{
	width: 100%;
	height: 100%;
	float: none;
	text-align: right;
}
.container_middle_right_form_label_btn > button
{
	width: 50px;
}
.ip_notice
{
	text-align: center;
	font-size: 10px !important;
}
