/****************************************************************************
 *	table type 
 ****************************************************************************/

/* 테이블 타입 투명 - 줄 없는 테이블 */
.tableTypeClear {
	margin:0px;
}

.tableTypeClear th {
	padding:3px;
}

.tableTypeClear td {
	padding:3px;
}

/* 테이블 타입 - 리스트 */
.tableTypeList {
	border-collapse:collapse;
	table-layout:fixed;
	word-break:break-all;
	border:0px solid #c6c6c6;
}

.tableTypeList thead tr {
	 
}

.tableTypeList thead th {
	padding:8px 0 5px 0; font-weight:bold; 
}

.tableTypeList thead th.th_num {
	background:url("/env-health/images/board/bg_num.gif") no-repeat left top;
}

.tableTypeList thead th.th_title {
	background:url("/env-health/images/board/bg_title.gif") no-repeat left top;
}

.tableTypeList thead th.th_us {
	background:url("/env-health/images/board/bg_us.gif") no-repeat left top;
}

.tableTypeList thead th.th_day {
	background:url("/env-health/images/board/bg_day.gif") no-repeat left top;
}

.tableTypeList thead th.th_jh {
	background:url("/env-health/images/board/bg_jh.gif") no-repeat left top;
}

.tableTypeList thead td {
	
}

.tableTypeList tbody tr:hover {
	background-color:#f7f7f7;
}

.tableTypeList tbody th {
	
}

.tableTypeList tbody td {
	border-bottom:1px dotted #c6c6c6;
	padding:8px 5px;
}

.tableTypeList tfoot th {
	background-color:#f2f2f2;
	border-top:1px solid #c6c6c6;
	padding:5px;
}

.tableTypeList tfoot td {
	border-top:1px solid #c6c6c6;
	padding:5px;
}


/* 테이블 타입 - 등록 및 수정 */
.tableTypeModify {
	border-collapse:collapse;
	margin:0px;
	border:0px solid #c6c6c6;
}

.tableTypeModify thead {
	border:1px solid #c6c6c6;
}

.tableTypeModify thead th {
	background-color:#f7f7f7;
	padding:5px;
	text-align:left;
}

.tableTypeModify thead td {

}

.tableTypeModify tbody {
	border:1px solid #c6c6c6;
	padding:5px;
}

.tableTypeModify tbody th {
	background-color:#f7f7f7;
	border:1px solid #c6c6c6;
	padding:5px;
	vertical-align:middle;
}

.tableTypeModify tbody td {
	border-bottom:1px dotted #c6c6c6;
	padding:5px;
}

.tableTypeModify tfoot th {
	background-color:#f2f2f2;
	border-top:1px solid #c6c6c6;
	padding:5px;
}

.tableTypeModify tfoot td {
	border-top:1px solid #c6c6c6;
	padding:5px;
}


