/* ==================================================
	게시판 리스트 페이지
================================================== */
.bbs {
	color: #000;
}

.bbs_form {
	/*float: left;*/
	width: 100%;
	margin-bottom: 20px;
	padding: 10px 25px;
	background: #F7F7F7;
	border: 1px solid #E8E8E8;
}

.bbs_form fieldset {
	float: right;
}

.bbs_form fieldset select {
	float: left;
	width: 100px;
	height: 40px;
	margin-right: 5px;
	padding-left: 5px;
	background: white url('../images/bbs/arrow.png') 93% 50% / 7px no-repeat;
	border: 1px solid #e1e1e1;
	-webkit-border-radius: 0;
	-webkit-appearance: none;
}

.bbs_form fieldset div {
	position: relative;
	float: left;
	width: 280px;
	height: 40px;
	padding-right: 30px;
	box-sizing: border-box;
	border: 1px solid #e1e1e1;
}

.bbs_form fieldset div input[type='text'] {
	width: 100%;
	height: 100%;
	padding: 0 5px;
	box-sizing: border-box;
	border: 0;
	outline: none;
}

.bbs_form fieldset div input[type='submit'] {
	position: absolute;
	right: 0;
	top: 0;
	width: 30px;
	height: 100%;
	font-size: 0;
	text-indent: -9999px;
	background: white url('../images/bbs/search.png') 50% 50% / 14px no-repeat;
	outline: none;
	border: 0;
	border-left: 1px solid #e1e1e1;
}

.bbs_form fieldset div input .bbs_form fieldset div input::-webkit-input-placeholder {
	/* Edge */
	color: #656565 !important;
	font-size: 11pt;
}

.bbs_form fieldset div input:-ms-input-placeholder {
	/* Internet Explorer 10-11 */
	color: #656565 !important;
	font-size: 11pt;
}

.bbs_form fieldset div input::placeholder {
	color: #656565 !important;
	font-size: 11pt;
}

.bbs_table {
	width: 100%;
}

.bbs_table tbody tr:hover {
	background: #f3f3f3;
}

.bbs_table th {
	padding: 16px 0;
	border-top: 1px solid #979797;
	border-bottom: 1px solid #979797;
}

.bbs_table td {
	position: relative;
	padding: 19px 5px;
	text-align: center;
	border-bottom: 1px solid #ececec;
}

.bbs_table .w00 {
	width: 5%;
}

.bbs_table .w01 {
	width: 10%;
}

.bbs_table .w02 {
	width: auto;
}

.bbs_table .w03 {
	width: 15%;
}

.bbs_table .notice .tag {
	padding: 3px 15px;
	border-radius: 50px;
	background: #005AAB;
	color: #fff;
	font-size: 15px;
}

.bbs_table .textL .prod {
	overflow: hidden;
	max-width: 100%;
	position: relative;
	display: inline-block;
	padding-right: 5px;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-size: 0.8em;
}

.bbs_table .textL {
	text-align: left;
}

.bbs_table .textL a {
	overflow: hidden;
	max-width: 100%;
	position: relative;
	display: inline-block;
	padding-right: 15px;
	text-overflow: ellipsis;
	/*white-space: nowrap;*/
}

.bbs_table .new .textL a:nth-child(2)::after {
	content: 'N';
	display: block;
	position: absolute;
	top: 0;
	right: 1px;
	font-weight: 600;
	font-size: 11px;
	color: #fe842b;
}

/*.bbs tbody td a{color:#222;}*/


.bbs_table tfoot td {
	border: 0;
	height: 50px;
	text-align: center;
}

/* 밑에 페이지 번호 보더색과 색 설정 */
.bbs_table tfoot td a {
	display: inline-block;
	padding: 2px 4px;
	/*border: 1px solid #efefef;*/
}

.bbs_table tfoot td a:hover {
	background: #F7F7F7;
	border-color: #005aab;
	color: #979797;
	text-decoration: none;
}

.bbs_table tfoot td .page_sel {
	display: inline-block;
	padding: 2px 4px;
	border: 1px solid #979797;
}

.bbs_table tfoot td .page_sel {
	background: #F7F7F7;
	color: #333;
	text-decoration: none;
}

td.footer_bt {
	text-align: right;
}

/* 처음버튼 */
.bbs button.noti_btn {
	float: left;
	margin-left: 4px;
	height: 40px;
	background-color: #005AAB;
}

/*** 모바일CSS ***/
@media screen and (max-width:640px) {
	.bbs_form {
		margin-bottom: 10px;
		padding: 10px 0 10px 10%;
	}

	.bbs_form fieldset {
		position: relative;
		float: left;
		width: 100%;
		padding-left: 85px;
	}

	.bbs_form fieldset select {
		position: absolute;
		left: 0;
		top: 0;
		width: 80px;
		height: 30px;
		margin-right: 5px;
		padding-left: 5px;
		background: white url('../images/bbs/arrow.png') 93% 50% / 7px no-repeat;
		border: 1px solid #e1e1e1;
		-webkit-border-radius: 0;
		-webkit-appearance: none;
	}

	.bbs_form fieldset div {
		position: relative;
		float: left;
		width: 160px;
		height: 30px;
		padding-right: 30px;
	}

	.bbs_form fieldset div input[type='text'] {
		width: 100%;
		height: 100%;
		padding: 5px 5px;
	}

	.bbs_form fieldset div input[type='submit'] {
		position: absolute;
		right: 0;
		top: 0;
		width: 30px;
		height: 100%;
		font-size: 0;
		text-indent: -9999px;
		background: white url('../images/bbs/search.png') 50% 50% / 14px no-repeat;
	}

	.bbs_table {
		font-size: 10pt;
	}

	.bbs_table tbody tr:hover {
		background: #f3f3f3;
	}

	.bbs_table th {
		padding: 10px 5px;
		border-bottom: 1px solid #979797;
	}

	.bbs_table td {
		padding: 10px 5px;
		text-align: center;
		border-bottom: 1px solid #ececec;
	}

	.bbs_table .w01 {
		width: 18%;
	}

	.bbs_table .w03 {
		width: 25%;
	}

	.bbs_table .notice .tag,
	.bbs table tbody .no .tag {
		padding: 5px 10px;
		font-size: 13px;
	}

	.bbs_table col:last-child,
	.bbs_table th:last-child,
	.bbs_table td:last-child {
		display: none;
	}

	.bbs button.noti_btn {
		height: 28px;
	}
}

/* ==================================================
	게시판 View 페이지
================================================== */
/* board-wrap */
.bbs-cont .info-gp span {
	display: inline-block;
	/*font-weight:500;
	color:#666*/
	font-size: 12pt;

}

.bbs-cont .info-gp span+span {
	margin-left: 40px
}

.bbs-cont .info-gp em {
	font-weight: 300
}

.bbs-cont .notice .tag {
	padding: 3px 15px;
	border-radius: 50px;
	background: #005AAB;
	color: #fff;
	font-size: 11pt;
}

.board-bottom {
	overflow: hidden;
}

.board-bottom .board-nav {
	overflow: hidden;
	border-bottom: 1px solid #EBEBEB
}

.board-bottom .board-nav li {
	padding: 10px 20px;
	border-top: 1px solid #EBEBEB
}

.board-bottom .board-nav span {
	font-size: 1.5rem;
}

.board-bottom .board-nav span,
.board-bottom .board-nav a,
.board-bottom .info-gp {
	display: inline-block;
	vertical-align: middle
}

.board-bottom .board-nav li:hover {
	background-color: #ebebeb;
}

.board-bottom .board-nav li>span {
	width: 100px;
	padding-right: 20px;
	background: no-repeat 100% 50%;
	color: #333;
}

.board-bottom .board-nav li.no-data {
	opacity: 0.6
}

.board-bottom .board-nav li.no-data a {
	cursor: default
}

.board-bottom .board-nav .prev>span {
	background-image: url('../images/bbs/bbs_nav_prev.png');
}

.board-bottom .board-nav .next>span {
	background-image: url('../images/bbs/bbs_nav_next.png');
}

.board-bottom .board-nav .prev2>span {
	background-image: url('../images/bbs/bbs_nav_next.png')
}

.board-bottom .board-nav .next2>span {
	background-image: url('../images/bbs/bbs_nav_prev.png');
}

.board-bottom .board-nav a {
	width: calc(100% - 105px);
	padding-left: 50px;
	font-weight: 400;
	/*color:#666*/
}

.board-bottom .btn-wrap {
	margin-top: 30px;
	text-align: center
}

/* bbs-cont list */
.bbs-cont.list li {
	position: relative;
	padding: 30px 50px;
	border-bottom: 1px solid #F5F5F5
}

.bbs-cont.list li:last-child {
	border-bottom: 0
}

.bbs-cont.list li:hover {
	background: #F9F9F9
}

/* bbs-cont info */
.bbs-cont.info .info-top {
	border: 1px solid #EBEBEB;
	padding: 20px 20px;
	background: #F9F9F9
}

.bbs-cont.info .info-top:after {
	content: '';
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}

.bbs-cont.info .info-top .subj {
	float: left;
	font-size: 2rem;
	font-weight: 400;
	/*color:#424c63*/
}

.bbs-cont.info .info-top .tag {
	margin: 0;
	margin-right: 10px;
	vertical-align: 2px
}

.bbs-cont.info .info-gp {
	padding: 15px 20px
}

.bbs-cont.info .board-view {
	padding: 40px 20px
}

.bbs-cont.info .file-list {
	padding: 15px 20px;
	border-top: 1px solid #EBEBEB;
}

.bbs-cont.info .file-list p {
	font-size: 12pt;
}

.bbs-cont.info .file-list strong {
	display: inline-block;
	width: 100px;
	font-weight: 500;
}

.bbs-cont.info .file-list ul {
	display: inline-block;
	max-width: calc(100% - 80px);
	width: 100%;
	vertical-align: top;
}

.bbs-cont.info .file-list li.no-file span {
	display: inline-block;
	padding-left: 30px;
	background: url('../images/bbs/clip.png') no-repeat 0% 50%;
	background-size: 18px 20px;
	color: #999
}

.bbs-cont.info .file-list li a {
	display: block;
	max-width: calc(100% - 30px);
	font-weight: 400;
	font-size: 12pt;
	/*color:#666;*/
	margin-top: 8px;
	vertical-align: top
}

.bbs-cont.info .file-list li a::before {
	content: '';
	display: inline-block;
	width: 15px;
	height: 15px;
	margin-right: 8px;
	margin-left: 10px;
	background: url('../images/bbs/clip.png') no-repeat 50% 50%;
	background-size: 15px 15px;
	vertical-align: top
}

.bbs-cont.info .file-list li a:hover {
	text-decoration: underline
}

.bbs-cont.info .file-list li a:first-child {
	margin-top: 10px;
}

.bbs-cont.info .board-view {
	min-height: 150px;
	border-top: 1px solid #EBEBEB
}

.bbs-cont.info .board-view,
.bbs-cont.info .board-view * {
	/*font-family: 'Noto Sans KR', sans-serif !important;
	font-size:12pt;
	color:#666*/
	line-height: 1.3;
}

.bbs-cont.info .board-view strong {
	font-weight: 500
}

.bbs-cont.info .board-view img {
	max-width: 100%
}

/* btn */
a.bbs_btn {
	display: inline-block;
	min-width: 150px;
	padding: 15px 10px;
	background: #231815;
	line-height: 1;
	font-size: 16px;
	color: #fff;
	text-align: center;
	cursor: pointer;
}

a.bbs_btn:hover {
	background: #000000;
}

/*** 모바일CSS ***/
@media screen and (max-width:1023px) {

	/* board-wrap */
	.bbs-cont .info-gp span {
		font-size: 13px
	}

	.bbs-cont .notice .tag {
		padding: 5px 10px;
		font-size: 13px
	}

	.bbs-cont.list li {
		padding: 15px
	}

	.bbs-cont.list .file {
		right: 15px;
		width: 16px;
		background-size: 100%
	}

	.bbs-cont.info .info-top,
	.bbs-cont.info .info-gp,
	.bbs-cont.info .board-view {
		padding: 10px 15px
	}

	.bbs-cont.info .info-top .subj {
		font-size: 16px;
	}

	.bbs-cont.info .subj {
		max-width: 100%
	}

	.bbs-cont.info .file-list {
		padding: 10px 15px
	}

	.bbs-cont.info .file-list strong,
	.bbs-cont.info .file-list ul {
		display: block;
		max-width: 100%
	}

	.bbs-cont.info .file-list strong {
		padding-bottom: 5px;
		font-size: 15px
	}

	.bbs-cont.info .file-list li.no-file span,
	.bbs-cont.info .file-list li a::before {
		background-size: 16px;
		background-position-x: 0
	}

	.bbs-cont.info .file-list li a {
		max-width: 100%
	}

	.bbs-cont.info .file-list li.no-file span {
		padding-left: 22px;
	}

	.bbs-cont.info .file-list li span,
	.bbs-cont.info .file-list li a {
		font-size: 13px
	}

	.bbs-cont.info .file-list li a::before {
		width: 16px;
		margin-right: 6px
	}

	.bbs-cont.info .board-view {
		min-height: 100px;
		padding-bottom: 50px
	}

	.bbs-cont.info .board-view,
	.bbs-cont.info .board-view * {
		font-size: 14px !important
	}

	.board-bottom .board-nav li {
		padding: 10px 15px
	}

	.board-bottom .board-nav li>span {
		background-size: 6px;
		font-size: 14px
	}

	.board-bottom .board-nav a {
		padding-left: 20px
	}

	.board-bottom .btn-wrap {
		margin-top: 20px
	}

	/* btn */
	.btn-wrap+.btn-wrap {
		margin-top: 10px !important
	}

	a.bbs_btn {
		min-width: auto;
		padding: 10px 15px;
		font-size: 11pt;
	}
}

@media screen and (max-width:640px) {
	.bbs-cont.info .file-list strong {
		font-size: 11pt;
	}

	.bbs-cont.info .info-top .subj {
		font-size: 11pt;
	}
}

.prd_paging {
	margin-top: 20px;
	text-align: center;
}

.prd_paging a,
.prd_paging em {
	display: inline-block;
	width: 40px;
	height: 40px;
	margin: 0 3px;
	line-height: 2.2em;
	vertical-align: top;
	border: 0;
}

.prd_paging a:hover,
.prd_paging em {
	color: #005aab;
	font-weight: 700;
	background: none;
}

.prd_paging .first {
	border: 1px solid #dcdcdc;
	border-radius: 50%;
	background: url("../../kor/images/form/btnFirst.png") 50% 50% no-repeat;
}

.prd_paging .first:hover {
	background: #005aab url("../../kor/images/form/btnFirst_on.png") 50% 50% no-repeat;
	border: 1px solid #005aab;
}

.prd_paging .prev {
	border: 1px solid #dcdcdc;
	border-radius: 50%;
	margin-right: 20px;
	background: url("../../kor/images/form/btnPrev.png") 50% 50% no-repeat;
}

.prd_paging .prev:hover {
	background: #005aab url("../../kor/images/form/btnPrev_on.png") 50% 50% no-repeat;
	border: 1px solid #005aab;
}

.prd_paging .next {
	border: 1px solid #dcdcdc;
	border-radius: 50%;
	margin-left: 20px;
	background: url("../../kor/images/form/btnNext.png") 50% 50% no-repeat;
}

.prd_paging .next:hover {
	background: #005aab url("../../kor/images/form/btnNext_on.png") 50% 50% no-repeat;
	border: 1px solid #005aab;
}

.prd_paging .last {
	border: 1px solid #dcdcdc;
	border-radius: 50%;
	background: url("../../kor/images/form/btnLast.png") 50% 50% no-repeat;
}

.prd_paging .last:hover {
	background: #005aab url("../../kor/images/form/btnLast_on.png") 50% 50% no-repeat;
	border: 1px solid #005aab;
}

.hide {
	display: none;
}

@media screen and (max-width:800px) {
	.prd_paging {
		position: relative;
		margin-top: 10px;
		padding: 30px 90px 0;
	}

	.prd_paging a,
	.prd_paging em {
		width: 35px;
		height: 35px;
		margin: 0 2px 5px;

	}

	.prd_paging .first {
		position: absolute;
		left: 0;
		top: 30px;
	}

	.prd_paging .prev {
		position: absolute;
		left: 40px;
		top: 30px;
	}

	.prd_paging .next {
		position: absolute;
		right: 40px;
		top: 30px;
	}

	.prd_paging .last {
		position: absolute;
		right: 0;
		top: 30px;
	}

	.prd_paging .first,
	.prd_paging .first:hover,
	.prd_paging .prev,
	.prd_paging .prev:hover,
	.prd_paging .next,
	.prd_paging .next:hover,
	.prd_paging .last,
	.prd_paging .last:hover {
		margin: 0;
		background-size: auto 11px;
	}
}

@media screen and (max-width:645px) {
	.prd_paging {
		margin-top: 5px;
		padding: 25px 30px 0;
	}

	.prd_paging .first,
	.prd_paging .last {
		display: none;
	}

	.prd_paging .prev {
		left: 0;
		top: 22px;
	}

	.prd_paging .next {
		right: 0;
		top: 22px;
	}

	.prd_paging a,
	.prd_paging em {
		width: 25px;
		height: 25px;
		font-size: 1.7rem;
		line-height: 1;
	}
}

@media screen and (max-width:450px) {
	.prd_paging {
		padding: 25px 15px 0;
	}

	.prd_paging .prev {
		top: 23px;
	}

	.prd_paging .next {
		top: 23px;
	}

	.prd_paging a,
	.prd_paging em {
		width: 20px;
		height: 20px;
		font-size: 1.6rem;
	}
}

.chkbox_p {
	height: auto;
	min-height: 0 !important;
}