/*게시판 리스트 */
.board_type1 {
	position: relative;
	display: block;
	width: 100%;
	height: auto;
	font-size: 0;
}

.board_type1:after {
	display: block;
	content: "";
	clear: both;
}

.board_sch {
	position: relative;
	display: block;
	width: 100%;
	height: auto;
}

.board_sch:after {
	display: block;
	content: "";
	clear: both;
}

.board_sch  span.total {
	position: absolute;
	left: 0;
	top: 45px;
	display: inline-block;
	line-height: 1;
	font-family: 'MalgunGothic',sans-serif;
	font-size: 15px;
	font-weight: 400;
	letter-spacing: -0.025em;
	color: #999;
}

.board_sch_div {
	position: relative;
	display: block;
	width: 100%;
	height: 85px;
	text-align: right;
	padding-top: 30px;
}

.board_sch_div:after {
	display: block;
	content: "";
	clear: both;
}

.board_sch_div select {
	display: inline-block;
	width: 120px;
	height: 36px;
	background: #fff url(/images/common/border_select_arrow.png)no-repeat center right 9px;
	padding-left: 9px;
	padding-right: 17px;
	margin-right: 4px;
	border: 1px solid #cccccc;
	
	
	font-family: 'MalgunGothic',sans-serif;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0;
	color: #333;
}
.board_sch_div select { -webkit-appearance: none; -moz-appearance: none;appearance: none;}
.board_sch_div select::-ms-expand { display:none; }


.board_sch_div .inputs {
	position: relative;
	display: inline-block;
	width: 276px;
	height: 36px;
	border: 1px solid #cccccc;
	background: #fff;
}

.board_sch_div .inputs input.input {
	display: block;
	border: 0;
	border-radius: 100%;
	width: 100%;
	height: 100%;
	padding: 0 40px 0 10px;
	font-family: 'MalgunGothic',sans-serif;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0;
	color: #333;
}

.board_sch_div .inputs input { -webkit-appearance: none; -moz-appearance: none;appearance: none;}
.board_sch_div .inputs input::-ms-expand { display:none; }

.board_sch_div .inputs .search_btn {
	border: 0;
	font-size: 0;
	border-radius: 0;
	position: absolute;
	right: 0;
	top: 0;
	display: block;
	width: 34px;
	height: 100%;
	overflow: hidden;
	cursor: pointer;
	background: #fff;
}

.board_sch_div .inputs .search_btn:focus {
	outline: auto !important;
}

.board_sch_div .inputs .search_btn { -webkit-appearance: none; -moz-appearance: none;appearance: none;}
.board_sch_div .inputs .search_btn::-ms-expand { display:none; }

.board_sch_div .inputs .search_btn>span {
position: absolute;
left: 0;
top: 0;
display: block;
width: 100%;
height: 100%;
background: #fff url(/images/common/search_btn.png)no-repeat center center;
}

.board_sch_div .inputs .search_btn:active>span {
	top: 1px;
	left: 1px;
}
.board_sch_div .inputs .search_btn>span:active {
	top: 1px;
	left: 1px;
}

@media all and (max-width: 767px) {
	.board_sch  span.total {
		position: relative;
		left: inherit;
		top: inherit;
		display: block;
		margin-top: 30px;
	}
	.board_sch_div {
		text-align: left;
		padding-top: 15px;
		height: auto;
		padding-bottom: 20px;
	}
}
@media all and (max-width: 600px) {
	.board_sch_div select {width: 100px;}
	.board_sch_div .inputs {width: calc(100% - 104px);}
}

.boardList {
	position: relative;
	display: block;
	width: 100%;
	height: auto;
	/* border-bottom: 1px solid #eee; */
	border-top: 1px solid #333;
}

.boardList ul {
	position: relative;
	display: table;
	width: 100%;
	height: 56px;
	border-bottom: 1px solid #eee;
	table-layout: fixed;
}
.boardList ul li {
	position: relative;
	display: table-cell;
	height: 100%;
	vertical-align: middle;
	text-align: center;
	font-family: 'MalgunGothic',sans-serif;
	font-size: 15px;
	font-weight: 400;
	letter-spacing: -0.025em;
	color: #999;
}

.boardList ul li a {
	display: inline-block;
	font-family: inherit;
	letter-spacing: inherit;
	font-weight: inherit;
	color: #333;
	font-size: 16px;
	overflow: hidden;
	text-overflow: ellipsis;
	-o-text-overflow: ellipsis;
	-ms-text-overflow: ellipsis;
	white-space: nowrap;
	max-width: 100%;
}

.boardList ul li.num {
	width: 70px
}
.boardList ul li.tit {
		width: auto;
	text-align: left;
	padding-left: 10px;
}
.boardList ul li.name {
	width: 130px;
	overflow: hidden;
	text-overflow: ellipsis;
	-o-text-overflow: ellipsis;
	-ms-text-overflow: ellipsis;
	white-space: nowrap;
}
.boardList ul li.date {
width: 85px;
}
.boardList ul li.count {
	width: 65px
}

.boardList ul:hover  li{
	background: #f7f7f7;
}

@media all and (max-width: 767px) {
	
	.boardList ul {
		height: 45px;
	}
	.boardList ul li {
		font-size: 12px;
	}
	.boardList ul li a {
		font-size: 13px;
	}
	

	.boardList ul li.num {
		width: 60px
	}
	.boardList ul li.tit {
		padding-left: 7px;
	}
	.boardList ul li.name {
		width: 100px
	}
	.boardList ul li.date {
	width: 70px;
	}
	.boardList ul li.count {
		width: 55px
	}
	.boardList ul li.count {
		display: none;
	}
	
}

@media all and (max-width: 425px) {
	.boardList ul li.num {
		width: 45px
	}
	.boardList ul li.name {
		width: 70px;
	}
	.boardList ul li.date {
		/* display: none; */
		font-size: 11px;
		width: 65px;
	}
	.boardList ul li a {
		font-size: 12px;
	}
}

.board_paging {
	position: relative;
	display: block;
	width: 100%;
	height: auto;
	padding: 40px 0 60px;
	text-align: center;
}

.board_paging a {
	display: inline-block;
	width: 24px;
	height: 24px;
	line-height: 24px;
	text-align:center;
	font-family: 'MalgunGothic',sans-serif;
	font-size: 15px;
	font-weight: 300;
	color: #333;
	vertical-align: top;
}

.board_paging a+a {
	margin-left: 4px;
}

.board_paging a.active {
	background: #8488a8;
	color: #fff;
}

.board_paging a.icbtn {
	font-size: 0;
}

.board_paging a.icbtn.list_first {
	background: url(/images/common/board_list_first.png)no-repeat center;
}
.board_paging a.icbtn.list_prev {
	background: url(/images/common/board_list_prev.png)no-repeat center;
}
.board_paging a.icbtn.list_next {
	background: url(/images/common/board_list_next.png)no-repeat center;
}
.board_paging a.icbtn.list_last {
	background: url(/images/common/board_list_last.png)no-repeat center;
}


.boardList .noList {
	display: block;
	padding: 15% 0 ;
	text-align: center;
	font-size: 14px;
	font-weight: 300;
	border-bottom: 1px solid #eee;
}
.boardList2 .noList {
	display: block;
	padding: 15% 0 ;
	text-align: center;
	font-size: 14px;
	font-weight: 300;
	border-bottom: 1px solid #eee;
}


/*게시판 리스트 끝*/






/*게시판 보기*/

.boardView {
	margin-top: 30px;
	padding-bottom: 48px;
}

.boardView .board_header {
	position: relative;
	display: block;
	width: 100%;
	height: auto;
}

.boardView .board_header .tit {
	position: relative;
	display: table;
	width: 100%;
	height: 70px;
	border-bottom: 1px solid #eeeeee;
	background: #f7f7f7;
	padding: 20px;
}

.boardView .board_header .tit .inner {
	position: relative;
	display: table-cell;
	vertical-align: middle;
	height: 100%;
	width: 100%;
	
	font-family: 'MalgunGothic', sans-serif;
	
	font-size: 16px;
	letter-spacing: -0.025em;
	color: #111;
	font-weight: normal;
	
	line-height: 140%;
}

.boardView .board_header .date_hits {
	position: relative;
	display: block;
	width: 100%;
	height: auto;
	border-bottom: 1px solid #eeeeee;
	padding: 0 20px;
}

.boardView .board_header .date_hits>div {
	font-family: 'MalgunGothic', sans-serif;
	font-size: 14px;
	letter-spacing: 0;
	font-weight: normal;
	color: #999;
}

.boardView .board_header .date_hits .date {
	float: left;
	display: inline-block;
	height: 44px;
	line-height: 44px;
}

.boardView .board_header .date_hits .hits {
	float: right;
	display: inline-block;
	height: 44px;
	line-height: 44px;
}

.boardView .board_body {
	position: relative;
	display: block;
	width: 100%;
	height: auto;
	padding: 45px 20px;
	border-bottom: 1px solid #eeeeee;
	
	font-family: 'MalgunGothic', sans-serif;
	
	font-size: 15px;
	letter-spacing: -0.025em;
	color: #666;
	font-weight:normal;
	line-height: 140%;
}

.boardView .board_body img {
	max-width: 100% !important;
}

.boardView .files {
	position: relative;
	display: block;
	width: 100%;
	height: auto;
}

.boardView .files .file {
	position: relative;
	display: block;
	width: 100%;
	height: 45px;
	line-height: 44px;
	border-bottom: 1px solid #eeeeee; 
	vertical-align: middle;
	padding-left: 20px;
}

.boardView .files .file p {
	font-family: 'MalgunGothic', sans-serif;
	letter-spacing: -0.025em;
	display: inline-block;
	vertical-align: middle;
	line-height: 1;
	font-size: 14px;
	font-weight: normal;
	color: #999;
	width: 33px;
}
.boardView .files .file a {
	font-family: 'MalgunGothic', sans-serif;
	letter-spacing: -0.025em;
	display: inline-block;
	vertical-align: middle;
	line-height: 1;
	font-size: 14px;
	font-weight: normal;
	color: #7676c7;
	text-decoration: underline;
	max-width: calc(100% - 33px);
}

.boardView .board_btns {
	position: relative;
	display: block;
	width: 100%;
	height: auto;
	padding-top: 14px;
	text-align: right;
}

.boardView .board_btns a {
	text-align: left;
	font-family: 'MalgunGothic', sans-serif;
	letter-spacing: -0.025em;
	font-size: 14px;
	font-weight: normal;
	color: #666666;
	display: inline-block;
	width: 82px;
	height: 38px;
	line-height: 36px;
	padding-left: 26px;
	border: 1px solid #ccc;
	margin-left: 4px;
}

.boardView .board_btns a.list {
	padding-left: 0 !important;
	background: #767a9f;
	border-color: #767a9f;
	text-align: center;
	font-weight: bold;
	color: #fff;
}

.boardView .board_btns a.prev {
	background: #fff url(/images/common/board_btn_prev.png)no-repeat center left 12px;
}
.boardView .board_btns a.next {
	background: #fff url(/images/common/board_btn_next.png)no-repeat center left 12px;
}


@media all and (max-width: 767px) {
	.boardView .board_header .tit {
		padding: 15px;
		height: 50px;
	}
	.boardView .board_header .tit .inner {
		font-size: 14px;
	}
	
	.boardView .board_header .date_hits {
		padding: 0 15px;
	}
	
	.boardView .board_header .date_hits .date,
	.boardView .board_header .date_hits .hits {
		height: 35px;
		line-height: 35px;
		font-size: 13px;
	}
	.boardView .board_body {
		font-sizE: 13px;
		padding: 40px 10px;
	}
	
	.boardView .files .file {
		height: 35px;
		line-height: 34px;
		padding-left: 10px;
	}
	
	.boardView .files .file p,
	.boardView .files .file a {
		font-size: 13px;
	}
	
	.boardView .board_btns a {
		width: 70px;
		height: 34px;
		line-height: 32px;
		font-size: 13px;
		padding-left: 20px;
		background-position: center left 9px !important;
	}
}

/*게시판 보기 끝*/








/*앨범게시판*/
.boardList2 {
	position: relative;
	display: block;
	width: 100%;
	height: auto;
	/* border-bottom: 1px solid #eee; */
	border-top: 1px solid #333;
	padding: 25px 0 0 0; 
}

.boardList2 ul {
	position: relative;
	display: block;
	width: 100%;
	height: auto;
}
.boardList2 ul:after {
	display: block;
	content: "";
	clear: both;
}

.boardList2 ul li {
	position: relative;
	float: left;
	width: 33.33333%;
	padding: 0 5px;
	height: 220px;
}

.boardList2 ul li:nth-child(n+4) {
	margin-top: 10px;
}

.boardList2 ul li .inner {
	position: relative;
	display: block;
	width: 100%;
	height: auto;
	background: blue;
	transition: all 0.3s ease-in-out;
}

.boardList2 ul li .inner:hover {
	margin-top: -5px;
}

.boardList2 ul li .inner .thumb {
	position: relative;
	display: block;
	width: 100%;
	height: 180px;
	background: #f8f8f8 url(/images/common/no_thumb.png)no-repeat center;
	background-size: auto 100%;
}

.boardList2 ul li .inner .thumb span {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}


.boardList2 ul li .inner .tit {
	position: relative;
	display: block;
	width: 100%;
	height: 40px;
	line-height: 40px;
	background: #fff;
	font-size: 14px;
	letter-spacing: -0.020em;
	color: #111;
	font-weight: normal;
	font-family: 'MalgunGothic',sans-serif;
	padding-right: 5px;
overflow: hidden;
text-overflow: ellipsis;
-o-text-overflow: ellipsis;
-ms-text-overflow: ellipsis;
white-space: nowrap;
}


@media all and (max-width: 767px) {
	.boardList2 ul li {
		width: 50%;
		height: 240px;
	}
	.boardList2 ul li:nth-child(n+4) {
		margin-top: 12px;
	}
	.boardList2 ul li:nth-child(n+3) {
		margin-top: 12px;
	}
	.boardList2 ul li .inner .thumb {
		height: 200px;
	}
}

@media all and (max-width: 520px) {
	.boardList2 ul li {
		width: 50%;
		height: 190px;
	}
	.boardList2 ul li .inner .thumb {
		height: 150px;
	}
}

@media all and (max-width: 425px) {
	.boardList2 ul li {
		width: 50%;
		height: 155px;
		padding: 0 2px;
	}
	.boardList2 ul li .inner .thumb {
		height: 120px;
	}
}

/*앨범게시판end*/









































































































































































































































































































































































































































































































