/* ====================================================== */
/* @Author      : Lee Won Hee (lwh2002@hanainfo.co.kr)    */
/* @File Name   : board.css                               */
/* @Update Date : 2016.05.18                              */
/* ====================================================== */

/* 반응형 게시판 */
/* list 시작 */
.gongji{
	font-weight:bold;
}

.board_category{
	text-align:center;
	margin-bottom:20px;
}

.board_category span{
	font-weight:bold;
}

.board_intro{
	margin: 0 auto;
	padding:10px;
	border:1px solid #e1e1e1;
	margin-bottom:10px;
}

.board_intro img{
	max-width:100%;
}

.search_box:after{
	content:"";
	clear:both;
	display:block;
}

.search_box .board_search{
	position:relative;
	float:right;
	width:50%;
	margin-bottom:15px;
}

.search_box .board_search	p{
	padding:0 70px 0 142px;
}

.search_box .board_search	div.search_select{
	position:absolute;
	top:0;
	left:44px;
}

.search_box .board_search	select{
	width:88px;
	height:30px;
	-webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.search_box .board_search	input{
	width:98%;
	height:28px;
}

.search_box .board_search	button{
	background:#777;
	border:solid 1px #6f6f6f;
	height:30px;
	width:60px;
	vertical-align:middle;
	position:absolute;
	right:0;
	top:0;
	color:#fff;
	font-weight:bold;
	cursor:pointer;
	-webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.board_list{
	border-top:1px solid #aaa;
	border-bottom:1px solid #aaa;
}

.board_list	th{
	padding:16px 0;
	font-weight:bold;
	color:#333;
}

.board_list	th.chk, .board_list	td.chk{
	width:5%;
}

.board_list	th.seq, .board_list	td.seq{
	width:10%;
}

.board_list	th.name, .board_list td.name{
	width:10%;
}

.board_list	th.sysdate, .board_list	td.sysdate{
	width:15%;
}

.board_list	th.click, .board_list	td.click{
	width:10%;
}

.board_list	td{
	text-align:center;
	color:#555;
	padding:15px 0;
	border-top:solid 1px #e3e3e3;
}

.board_list	td.tit{
	text-align:left;
	padding-left:15px;
}

.board_list	td.tit a{
	color:#333;
	display:block;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}
/* list 끝*/

/* view 시작 */
div.board_view {
	width:100%;
	border-top:1px solid #aaa;
	border-bottom:1px solid #aaa;
}

div.board_view div.title {
	text-align:center;
	line-height:2em;
	padding:10px 0px;
	font-size:16px;
	color:#333;
	border-bottom:solid 1px #e3e3e3;
}

div.board_view div.info {
	position:relative;
	line-height:45px;
	color:#666;
	border-bottom:solid 1px #e3e3e3;
}

div.board_view div.info:after {
	display:block;
	clear:both;
	content:"";
	width:0;
	height:0;
	line-height:0;
	font-size:0;
	overflow:hidden;
}

div.board_view div.info .name	{
	padding-left:20px;
	font-size:13px;
}

div.board_view div.info .name span{
	font-weight:bold;
	font-size:13px;
}

div.board_view div.info dl{
	position:absolute;
	top:0px;
	right:20px;
}

div.board_view div.info dl dt{
	float:left;
	font-weight:bold;
	margin-left:15px;
	font-size:13px;
}

div.board_view div.info dl dd{
	float:left;
	margin-left:5px;
	font-size:13px;
}

div.board_view div.file{
	line-height:45px;
	padding-right:20px;
	color:#666;
	text-align:right;
	border-bottom:solid 1px #e3e3e3;
}

div.board_view div.file:after{
	display:block;
	clear:both;
	content:"";
	width:0;
	height:0;
	line-height:0;
	font-size:0;
	overflow:hidden;
	visibility:hidden;
}

div.board_view div.file dl dt{
	float:left;
	margin-left:15px;
	font-weight:bold;
}

div.board_view div.file dl dt:first-child{
	margin-left:0px;
	padding-left:20px;
}

div.board_view div.file dl dd{
	float:left;
	margin-left:5px;
}

div.board_view div.cont{
	padding:20px;
	line-height:20px;
	color:#888888;
	overflow:hidden;
	min-height:200px;
}

div.board_view div.cont img, div.board_view div.cont p, div.board_view div.cont div{
	max-width:100%;
}

div.board_view div.list{
	border-top:1px solid #dcdcdc;
}

div.board_view div.list dl{
	position:relative;
	width:100%;
	border-bottom:1px solid #dcdcdc;
	line-height:45px;
}

div.board_view div.list dl:after{
	display:block;
	clear:both;
	content:"";
}

div.board_view div.list dl dt{
	float:left;
	margin:0px 20px;
	width:60px;
}

div.board_view div.list dl dt	a	{
	color:#666;
}

div.board_view div.list dl.prev dt{
	background-image:url(../images/blt_prev_list.png);
	background-position:right center;
	background-repeat:no-repeat;
}

div.board_view div.list dl.next dt{
	background:url(../images/blt_next_list.png);
	background-position:right center;
	background-repeat:no-repeat;
}

div.board_view div.list dl dd{
	text-overflow:ellipsis;
	white-space:nowrap;
	overflow:hidden;
	position:relative;
	background:#fff;
	margin-right:20px;
}

div.board_view div.list dl.prev dt a, div.board_view div.list dl.next dt a, div.board_view div.list dl dd a{
	font-size:13px;
	color:#888888;
}

div.board_reg{
	
}

div.board_reg table{
	border-top:1px solid #e3e3e3;
}

div.board_reg table th, div.board_reg table td{
	line-height:40px;
	border-bottom:1px solid #e3e3e3;
}

div.board_reg table th{
	padding: 0 20px;
	width: 105px;
	color: #545861;
	font-size: 12px;
	font-weight: bold;
	text-align: right;
}

div.board_reg table td input[type=text], div.board_reg table td input[type=password], div.board_reg table td input[type=file]{
	background-color:#f2f2f2;
	margin: 0;
	padding: 2px;
	font-size: 12px;
	color: #666666;
	border-radius: 3px;
	border: 1px solid #cccccc;
	line-height: normal;
	width:90%;
}
/* view 끝*/

/* pagenation 시작 */
.pagination{
	display:inline-block;
	font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;
	text-align:center;
	margin:10px auto;
	border-radius: 4px;
	font-size:14px;
}

.pagination:after{
	content:"";
	display:block;
	clear:both;
}

.pagination > li {
	display: inline;
}

.pagination > li:first-child > a, .pagination > li:first-child > span{
	margin-left: 0;
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px;
}

.pagination > li > a, .pagination > li > span {
	position: relative;
	float: left;
	padding: 6px 12px;
	margin-left: -1px;
	line-height: 150%;
	color: #337ab7;
	text-decoration: none;
	background-color: #fff;
	border: 1px solid #ddd;
}

.pagination > li:last-child > a, .pagination > li:last-child > span {
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px;
}

.pagination > li > a, .pagination > li > span {
	position: relative;
	float: left;
	padding: 6px 12px;
	margin-left: -1px;
	line-height: 1.42857143;
	color: #337ab7;
	text-decoration: none;
	background-color: #fff;
	border: 1px solid #ddd;
}

.pagination > .active > a, .pagination > .active > a:focus, .pagination > .active > a:hover, .pagination > .active > span, .pagination > .active > span:focus, .pagination > .active > span:hover {
	z-index: 3;
	color: #fff;
	cursor: default;
	background-color: #337ab7;
	border-color: #337ab7;
}

.pagination > li > a:focus, .pagination > li > a:hover, .pagination > li > span:focus, .pagination > li > span:hover {
	z-index: 2;
	color: #23527c;
	background-color: #eee;
	border-color: #ddd;
}

.pagination > .disabled > a, .pagination > .disabled > a:focus, .pagination > .disabled > a:hover, .pagination > .disabled > span, .pagination > .disabled > span:focus, .pagination > .disabled > span:hover {
	color: #777;
	cursor: not-allowed;
	background-color: #fff;
	border-color: #ddd;
}
/* pagenation 끝 */

/* 모바일 시작 */
@media all and (max-width: 767px) {
	.search_box .board_search{
		float:none;
		width:100%;
	}
	
	.search_box .board_search	p{
		padding:0 75px 0 103px;
	}
	
	.search_box .board_search	div.search_select	{
		position:absolute;
		top:0;
		left:10px;
	}
	
	.search_box .board_search	button{
		right:10px;
	}
	
	.board_list a, .board_list th, .board_list td{
		font-size: 2.5vw;
	}
	
	.board_list	th{
		padding:3.5vw;
	}
	
	.board_list	td{
		padding:3vw;
	}
	
	.board_list	th.seq,
	.board_list	th.name,
	.board_list	th.click,
	.board_list	td.seq,
	.board_list	td.name,
	.board_list	td.click{
		display:none;
	}
	
	.board_list	th.sysdate,.board_list	td.sysdate{
		width:25%;
	}
	
	div.board_view div.file{
		line-height:24px;
		padding:10px 0px;
	}
	
	div.board_view div.file dl dt{
		clear:left;
		margin-left:0px;
		padding-left:20px;
	}
	
	div.board_reg table th{
		width:30%;
	}
	
	.tx-sidebar, .tx-toolbar, .tx-resize-bar{
		display:none;
	}
}
/* 모바일 끝 */

/* 태블릿 시작 */
@media all and (min-width: 768px) and (max-width: 1023px){
	.search_box .board_search{
		float:none;
		width:100%;
	}
	
	.search_box .board_search	p{
		padding:0 75px 0 103px;
	}
	
	.search_box .board_search	div.search_select	{
		position:absolute;
		top:0;
		left:10px;
	}
	
	.search_box .board_search	button{
		right:10px;
	}
	
	.board_list	th.click, .board_list	td.click{
		display:none;
	}
}
/* 태블릿 끝 */