.grid {
    margin-bottom: 0px;
}

.grid-border {
	border: 1px solid #dddddd !important;
}

.grid-no-date {	
	text-align: center;
}

.grid-page-total {
    color: #a94442;
}

.grid-pointer {
    cursor: pointer;
}

.grid-selected-row {
    background-color: #ffffcc !important;
}

.grid-loading-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #bfc2c2;
    opacity: .1;
    filter: alpha(opacity=10);
    z-index: 100;
}

.grid-loading {
    text-align: center;
    position: absolute;
    display: block;
    width: 400px;
    height: 80px;
    line-height: 80px;
    left: 0px;
    right: 0px;
    top: 30%;
    /*bottom: 0px;*/
    margin: 0 auto;
    color: #31708f;
    background-color: #d9edf7;
    border: 1px solid #bce8f1;
    z-index: 110;
    vertical-align: middle;
    font-size: 14px;
    font-weight: bold;
}

.grid table {
    border-collapse: collapse;
    table-layout: fixed;
    width: 100%;
    margin: 0px;
    padding: 0px;
}

.grid td, .grid th {
    padding: 5px 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow:ellipsis;       
}

.grid input[type=checkbox] {
    margin: 0;    
    line-height: normal;
}

.grid tr {
    background-color: #fff;
}

.grid .layFrozen {
	width: auto;	
	z-index: 100;
}

.grid .layFrozen th, .grid .layFrozen td{
	border-bottom: 1px solid #dddddd !important;
    border-right: 1px solid #dddddd !important;
}
/* 	그리드 타이틀 폰트를 굵게 하기 위해     font-weight: bold;를 추가 해 봤다. color은 very dark gray 2023-7-12 
	그런데 이건 먹지를 않네  grid-head th, .grid-head td에 정의하니까 먹네 그래서.grid-head를 막아봤다. 일단 아무 영향이 없다.

.grid-head {
    width: 100%;
    overflow: hidden;
    background-color: #f1f1f1;
    text-align: center;
    color: #bcbcbc;
}
*/
.grid-head .grid-frozen {
	overflow: hidden;
	position: absolute;	
	left: 0;	
}
/*
.grid-head div {
	float:left;	
}
*/
/* grid head line 배경색 A5C9FF로 변경해 봄  height:20에서 30으로 변경, 다른데 문제가 생기면 20으로 원복할 것 */
.grid-head th, .grid-head td {
    border: 1px solid #dddddd;
    height: 30px;     
    color: #333300;		/* 폰트칼라 font-color는 존재하지 않는 속성*/
    background-color: #A5C9FF;
    font-weight: bold;
}

.grid-head tr:first-child th, .grid-head tr:first-child td {
    border-top: 0px;
}

.grid-head th:first-child, .grid-head td:first-child {
    border-left: 0px;
}

.grid-head th:last-child, .grid-head td:last-child {
    border-right: 0px;
}

.grid-head .grid-wrap {
	overflow: hidden;
}

.grid-body {
    width: 100%;    
    height: 200px;  
}

.grid-body .grid-wrap {
	overflow: auto;
	width: 100%;
}


.grid-body .grid-frozen {
	overflow: hidden;
	position: absolute;	
	left: 0;
}

.grid-body div {
	float:left;	
}

.grid-body th, .grid-body td {
    border: 1px solid #dddddd;
}

.grid-body tr:first-child th, .grid-body tr:first-child td {
    border-top: 0px;
}

.grid-body tr:last-child th, .grid-body tr:last-child td {
   /* border-bottom: 0px !important; */
}

.grid-body th:first-child, .grid-body td:first-child {
    border-left: 0px;
}

.grid-body th:last-child, .grid-body td:last-child {
   border-right: 0px;
}

.grid-striped > tbody > tr:nth-of-type(odd) {
    background-color: #f9f9f9;
}

.grid-hover > tbody > tr:hover {
    background-color: #f5f5f5;
}

.grid-foot {
    width: 100%;
    overflow: hidden;
    border: 1px solid #dddddd;
}

.grid-foot th, .grid-foot td {
    border: 1px solid #dddddd;
}

.grid-foot th:first-child, .grid-foot td:first-child {
    border-left: 0px !important;
}

.grid-foot th:last-child, .grid-foot td:last-child {
    /*border-right: 0px !important;*/
}

.grid-page {
    width: 100%;
    overflow: hidden;
}

.grid-page .pagination {
    margin: 0px;
}

.grid-page table {
    border-top: 1px solid #dddddd;       
}

.grid-page th, .grid-page td {
    background-color: #f1f1f1;
    padding-bottom : 3px;
}