@charset "utf-8";

/* Board Reset
-------------------------------------------------------------------------------------------------------- */
#xet_board * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}
#xet_board { 
	position: relative;
	line-height: 1.5;
	font-size: 14px;
	color: #555;
}
#xet_board.black { 
	color: #ccc;
}
a {
	text-decoration: none;
}
p {
	margin: 0;
	padding: 0;
}
.float_left {
	float:left; 
}
.float_right { 
	float:right; 
}
.xet_clearfix {
	*zoom: 1;
}
.xet_clearfix:after {
	content: "";
	display: block;
	clear: both;
}

.fs-10 {
	font-size: 10px;
}
.fs-14 {
	font-size: 14px;
}
.fs-16 {
	font-size: 16px;
}
.pd-10 {
	padding: 10px;
}
.pd-15 {
	padding: 15px;
}

.text-right {
	text-align: right;
}
.text-center {
	text-align: center;
}

#xet_board .editable {
	margin-top: 5px;
	font-size: 12px;
}
#xet_board .editable a {
	color: #777 !important;
}
#xet_board.black .editable a {
	color: #ccc !important;
}

/* header
-------------------------------------------------------------------------------------------------------- */
.header_text { 
	margin-bottom: 15px; 
}
.footer_text { 
	margin-top: 15px;
}
/* 게시판 제목 */
.boardTitle { 
	position:relative; 
	margin-bottom: 30px; 
}
.boardTitleText {
	font-size: 18px; 
	font-weight:bold;
}
.boardTitleText a { 
	text-decoration:none; 
	color:#333; 
}
.boardTitleText a img {
	max-width: 100%;
}
/* 게시판 부제목 */
.boardTitleText a em { 
	font-style:normal; 
	font-weight:normal; 
	color:#555; 
}
/* 게시판 상세설명 */
.boardTitle .boardDescription {
	font-size: 14px;
	margin-top: 15px;
	color:#555;
}

	/* colorset - board_dark */
	#xet_board.black .boardTitleText a { 
		color:#fff;
	}
	#xet_board.black .boardTitleText a em { 
		color:#ccc;
	}
	#xet_board.black .boardDescription { 
		color:#ccc;
	}



/* 탭 스타일 카테고리 
-------------------------------------------------------------------------------------------------------- */
.categoryWrp { 
	margin-bottom: 15px; 
}
.categoryList {
	z-index: 10; 
	list-style: none;
	margin:0;
	padding: 0;
}
.categoryList li {
	float: left;
	position: relative;
	margin: 0 3px 3px 0;
	padding: 0;
}
.categoryList li a { 
	display:inline-block; 
	padding:8px 12px; 
	text-decoration:none; 
	font-size:12px; 
	color:#555; 
	border:1px solid #e1e1e1;
	background-color: #fff;
	-moz-border-radius:3px;
	-webkit-border-radius:3px; 
	border-radius:3px; 
}
.categoryList li a.on { 
	color: #fff; 
	background-color: #4b4b4b;
	border-color: #4b4b4b;
}
/* 2차 카테고리 */
.categoryList ul {
	list-style: none;
	z-index: 9;
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	margin: 0;
	padding: 0;
	margin-top: -1px;
	background: #fff;
	border: 1px solid #e1e1e1;
	-moz-border-radius:3px;
	-webkit-border-radius:3px; 
	border-radius:3px; 
}
.categoryList li li {
	float: none;
	margin: 0;
	padding: 0;
	width: 180px;
}
.categoryList li li a {
	float: none;
	display: block;
	border: 0;
	-moz-border-radius:3px;
	-webkit-border-radius:3px; 
	border-radius:3px; 
}
/* 3차 카테고리 */
.categoryList ul ul {
	top: 0px;
	left: 100%;
}

/* hover view sub category */
.categoryList li:hover > ul {
	display: block;
	-moz-animation: fadeIn .3s ease-in ;
    -webkit-animation: fadeIn .3s ease-in ;
    animation: fadeIn .3s ease-in;
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
	/* colorset - board_dark */
	#xet_board.black .categoryList li a { 
		background-color: #000;
		border-color:#333;
		color: #ccc;
	}
	#xet_board.black .categoryList li a.on { 
		color:#fff;
		background:#333;
	}
	#xet_board.black .categoryList ul ul { 
		background: #000;
		border-color: #333;
	}

/* 셀렉트 스타일 */
.category-nav {
	margin-bottom: 15px;
	border: 1px solid #e1e1e1;
	background-color: #fff;
}
.category-nav ul {
	z-index: 10;
	list-style: none;
	margin: 0;
	padding: 0;
}
.category-nav ul li {
	position: relative;
	float: left;
	margin: 0;
	padding: 0;
	width: 25%;
	border-right: 1px solid #e1e1e1;
}
.category-nav ul li.category-all {
	width: 60px;
}
.category-nav ul li .angle-down {
	position: absolute;
	top: 0;
	right: 10px;
	height: 40px;
	line-height: 40px;
}
.category-nav ul li a {
	display: block;
	padding: 0 10px;
	height: 40px;
	line-height: 40px;
	white-space: nowrap;
	font-size: 14px;
	overflow: hidden;
	color: #333;
}
.category-nav ul ul {
	display: none;
	position: absolute;
	left: -1px;
	right: -1px;
	top: 100%;
	overflow: hidden;
	border: 1px solid #e1e1e1;
	background-color: #f9f9f9;
	-moz-border-radius: 0 0 3px 3px;
	-webkit-border-radius: 0 0 3px 3px; 
	border-radius: 0 0 3px 3px; 
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
.category-nav ul ul li {
	float: none;
	display: block;
	width: 100%;
	border: 0;
	border-top: 1px solid #e1e1e1;
}
.category-nav ul ul li:first-child {
	border-top: 0;
}

.category-nav ul ul.active {
	display: block;
	-moz-animation: fadeIn .3s ease-in ;
    -webkit-animation: fadeIn .3s ease-in ;
    animation: fadeIn .3s ease-in;
}

	/* colorset - board_dark */
	#xet_board.black .category-nav { 
		background-color: #000;
		border-color:#333;
		color: #ccc;
	}
	#xet_board.black .category-nav ul li {
		border-color: #333;
	}
	#xet_board.black .category-nav ul li a {
		color: #ccc;
	}
	#xet_board.black .category-nav ul ul {
		background-color: #111;
		border-color: #333;
	}

@media (max-width: 767px) {
	.category-nav ul > li {
		width: 100%;
	}
	.category-nav ul.child2 > li {
		width: 50%;
	}
	.category-nav ul.child3 > li {
		width: 33.3333%;
	}
	.category-nav ul > li:last-child {
		border-right: 0;
	}
}


#xet_board .checkAll {
	margin-bottom: 5px;
	padding: 5px;
}
#xet_board .no_list {
	text-align:center;
}
	
	

/* Require Password 비밀번호 요구 박스
-------------------------------------------------------------------------------------------------------- */
.requirePassword {
	margin-top: 10px;
	text-align:center; 
}
.requirePassword fieldset { 
	border:0; 
	margin:0; 
	padding:0;
}
.requirePassword h3 {
	font-size:16px; 
	padding:0;
	margin:20px 0;
	color:#555;
}
.requirePassword .inputText { 
	display:inline-block;
	padding: 0 10px;
	width: 200px; 
	height: 32px;
	line-height: 32px;
	text-indent: 5px;
	vertical-align:middle; 
	color:#777;
	background-color: #fff;
	border: 1px solid #e1e1e1;
	border-radius:3px;
	box-shadow: inset 0 1px 3px rgba(0,0,0,.1);
  }
.requirePassword .inputText:focus {
	border-color: #555;
	color:#555;
 }

	/* colorset - board_dark */
	#xet_board.black .requirePassword h3 { 
		color:#ccc;
	}
	#xet_board.black .requirePassword .inputText { 
		color:#777;
		background: #000;
		border: 1px solid #333;
	  }
	#xet_board.black .requirePassword .inputText:focus {
		color:#ccc;
	 }


/* 삭제 박스 
-------------------------------------------------------------------------------------------------------- */
.smallBox {
	max-width: 480px;
	margin: 0 auto;
	padding: 15px; 
	text-align: center; 
}
.smallBox p { 
	font-size: 13px;
}
.smallBox h3 {
	font-size:16px; 
	margin:0 0 20px;
	padding-bottom:10px;
	color:#ff0000;
	border-bottom: 1px solid #e8e8e8;
}

	/* colorset - board_dark */
	#xet_board.black .smallBox {
	}
	#xet_board.black .smallBox h3 {
		border-color: #333;
	}


/* 태그 출력 리스트 
-------------------------------------------------------------------------------------------------------- */
.tagCloud { 
	padding: 15px 0; 
}
.tagCloud * { 
	margin:0; 
	padding:0;
}
.tagCloud h3 {
	margin:0 0 10px;
	padding-bottom:10px;
	color:#333;
	border-bottom:1px solid #e8e8e8; 
}
.tagCloud ul { 
	list-style:none;
	margin:0;
	padding:0;
}
.tagCloud li { 
	display:inline;
	list-style:none;
	margin:0 5px 5px; 
}
.tagCloud li.rank1 a { 
	font-weight:bold; 
	font-size:12pt;
	color:#2ecc71;
}
.tagCloud li.rank2 a {
	font-weight:bold; 
	font-size:11pt;
	color:#e67e22;
}
.tagCloud li.rank3 a { 
	font-weight:bold;
	font-size:10pt;
	color:#27ae60;
}
.tagCloud li.rank4 a { 
	font-size:9pt;
	color:#8e44ad
}
.tagCloud li.rank5 a { 
	font-size:8pt;
	color:#7f8c8d;
}


	/* colorset - board_dark */
	#xet_board.black .tagCloud {
	}
	#xet_board.black .tagCloud h3 { 
		color:#ccc;
		border-color:#333; 
	}
	@media (min-width: 992px) {
		#xet_board.black .tagCloud li a:hover {
			color: #fff;
		}
	}


/* Board Navigation
-------------------------------------------------------------------------------------------------------- */
.boardNavigation { 
	position: relative;
	margin: 15px 0;
	*zoom:1;
}
.boardNavigation:after { 
	content:"";
	display:block;
	clear:both;
}

/* mobile */
#boardNavigation-m {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1030;
	margin: 0;
	padding: 10px;
	background-color: #eee;
	border-top: 1px solid #e1e1e1;
}
#boardNavigation-m.boardNavigation a,
#boardNavigation-m.boardNavigation button,
#boardNavigation-m.boardNavigation .btn-search {
	display:inline-block;
	text-align: center;
	margin: 0;
	padding: 0 12px;
	line-height: 1;
	color: #333;
	text-decoration: none;
	vertical-align: top;
	border: 0;
	background: none;
}

/* Pagination  
-------------------------------------------------------------------------------------------------------- */
.pagination { 
	list-style: none;
	padding: 0;
	margin: 15px 0;
	text-align: center;
	display: block;
    font-size: 0;
    position: relative;
    vertical-align: middle;
}
.pagination.comment_page {
	margin-top: 0;
	padding: 15px 0;
	border-top: 1px solid #e8e8e8;
}
.pagination > li {
	display: inline-block;
	margin: 0;
	padding: 0;
}
.pagination > li:first-child > a {
    border-bottom-left-radius: 3px;
    border-top-left-radius: 3px;
    margin-left: 0;
}
.pagination > li:last-child > a {
    border-bottom-right-radius: 3px;
    border-top-right-radius: 3px;
}
.pagination > li + li {
    margin-left: -1px;
}
.pagination img { 
	border:0;
}
.pagination .page_more span,
.pagination a,
.pagination strong { 
	position:relative;
	display:inline-block;
	text-decoration:none;
	margin:0;
	padding:0;
	font-size: 12px !important;
	width:30px;
	height:30px;
	line-height: 29px !important;
	vertical-align: top;
	white-space: nowrap;
	text-align:center; 	
	border: 1px solid #e1e1e1;
}
.pagination .page_more span {
	line-height: 22px;
}
.pagination i {
	font-size: 12px !important;
	line-height: 29px !important;
}
.pagination a { 
	background: #fff;
	color:#555;
}
.pagination .page_on {
	font-weight:bold; 
	border-color: #4b4b4b;
	background-color: #4b4b4b;
	color: #fff !important;
}
.pagination .page_mobile {
	width: 100px;
}
.pagination .prevEnd span,
.pagination .nextEnd span { 
	visibility:hidden; 
	font-size:0; 
}
.pagination .prevEnd,
.pagination .nextEnd { 
	font-size: 14px;
}

	/* colorset - board_dark */
	#xet_board.black .pagination.comment_page {
		border-color: #333;
	}
	#xet_board.black .pagination .page_more span,
	#xet_board.black .pagination strong,
	#xet_board.black .pagination a,
	#xet_board.black .pagination .page_on { 
		border-color: #333;
		background-color: #111;
	}
	#xet_board.black .pagination a { 
		background: #111;
		color: #ccc;
	}
	#xet_board.black .pagination .page_on { 
		color:#fff;
		background-color: #4b4b4b;
		border-color: #4b4b4b;
	}

/* Infinite Loading 
-------------------------------------------------------------------------------------------------------- */
#xet_board .ias-noneleft,
#xet_board .ias-spinner,
#xet_board .ias-trigger-prev,
#xet_board .ias-trigger-next {
	padding: 15px;
	text-align: center;
}
#xet_board .ias-trigger-prev a,
#xet_board .ias-trigger-next a {
	display: block;
	cursor: pointer;
	font-weight: bold;
	color: #2980b9;
}
#xet_board .ias-noneleft {
	padding: 20px;
}

/* Infinite Gallery */
#xet_board .baord_gallery .ias-noneleft,
#xet_board .baord_gallery .ias-spinner,
#xet_board .baord_gallery .ias-trigger-prev,
#xet_board .baord_gallery .ias-trigger-next {
	padding: 15px 0;
	text-align: center;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
}
#xet_board .baord_gallery .ias-trigger-prev {
	top: 0;
}
#xet_board .baord_gallery .ias-trigger-prev a,
#xet_board .baord_gallery .ias-trigger-next a {
	display: block;
	cursor: pointer;
	font-weight: bold;
	color: #2980b9;
}


/* Search 
-------------------------------------------------------------------------------------------------------- */
#boardSearchForm-popup {
	display: none;
	z-index: 8000;
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	height: 100%;
	margin: 0;
	padding: 10px;
	text-align: center;
	background-color: rgba(0,0,0,.7);
}
#boardSearchForm-popup.active {
	display: block;
}
#boardSearchForm-popup > div {
	max-width: 100%;
	width: 480px;
	margin: 180px auto 0;
	padding: 0;
	background: #fff;
}
#boardSearchForm-popup .boardSearchForm-popup-header {
	font-size: 14px;
	padding: 10px;
	background-color: #f1f1f1;
	border-bottom: 1px solid #e8e8e8;
	color: #555;
}
#boardSearchForm-popup-close {
	float: right;
	font-size: 18px;
	background: none;
}
#boardSearchForm-popup .boardSearchForm-popup-body {
	padding: 15px;
	background-color: #fff;
}

/* 검색 결과 */
.boardSearchForm.keyword {
	margin: 20px 0;
}
.boardSearchForm.keyword .boardSearch {
	max-width: 420px;
	margin: 0 auto;
	border: 1px solid #c00;
}

/* 검색 폼 */
.boardSearchForm {
	margin:0;
	padding:0;
}
.boardSearchForm * {
	vertical-align: top;
}
.boardSearchForm .boardSearch { 
	position:relative;
	width: 100%;
	height: 34px;
	line-height: 32px;
	font-size:0;
	*zoom:1;
	border: 1px solid #e1e1e1;
	background: #fff;
}
.boardSearchForm .boardSearch:after { 
	content:"";
	display:block;
	clear:both;
}
.boardSearchForm .boardSearch .search {
	float: left;
	width: 30%;	 
	color: #555;
	border-right: 1px solid #e1e1e1;
}
.boardSearchForm .boardSearch .search select {
	width: 100%;
	height: 32px;
	margin: 0;
	padding: 0 0 0 10px;	
	text-align: center;
	border: 0;
	color:#555;
	background: url(../img/common/select_arrow.png) center right no-repeat;
	background-size: 30px;
	-webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
	-webkit-border-radius: 0;
	-webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.boardSearchForm .boardSearch .inputText { 	
	width: 70%;
	float: left;
	padding-right: 32px;
}
.boardSearchForm .boardSearch .inputText input { 	
	width: 100%;
	height: 32px; 
	padding: 0 10px; 
	margin: 0;
	color:#777;
	background: #fff;
	border: 0;
	-webkit-border-radius: 0;
	-webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.boardSearchForm .boardSearch .inputText input:focus { 
	color: #555;
	background: #fff;
}
.boardSearchForm .boardSearch .search_btn_wrp {
	position: absolute;
	top: 0;
	right: 0;
}
.boardSearchForm .boardSearch .search_btn_wrp i {
	line-height: 32px;
	font-size: 14px;
	vertical-align: top;
}
.boardSearchForm .boardSearch .next_search_btn, 
.boardSearchForm .boardSearch .cancel_btn,
.boardSearchForm .boardSearch .search_btn { 
	display:inline-block !important;
	font-size: 12px;
	width: 32px;
	height: 32px; 
	line-height: 32px;
	margin:0 !important; 
	padding:0 !important; 
	text-align: center;
	cursor:pointer; 
	color:#555;
	background: transparent;	
	border: 0;
}
.boardSearchForm .boardSearch .next_search_btn {
	width: auto;
}
.boardSearchForm .boardSearch .cancel_btn {
	color: #c00;
}
@media (min-width: 992px) {
	.boardSearchForm .boardSearch .next_search_btn:hover,
	.boardSearchForm .boardSearch .cancel_btn:hover,
	.boardSearchForm .boardSearch .search_btn:hover {
		background: #4b4b4b;
		border-color: #4b4b4b;
		color: #fff;
	} 
}


	/* colorset - board_dark */
	#xet_board.black .boardSearchForm.keyword .boardSearch { 
		background:#1b1b1b;
		color:#fff;
	}

/* Thumbnail 
-------------------------------------------------------------------------------------------------------- */
#xet_board .thumb a { 
	position:relative;
	overflow:hidden; 
	margin:0;
	padding:0; 
	display:block; 
	text-align: center;
	background-color: #000;
}
#xet_board .thumb a img.video {
	opacity: .7;
	width: 100%;
}
#xet_board .thumb a>.icon {
	z-index: 1;
	position: absolute;
	left: 50%;
	top: 50%;
	margin: -18px 0 0 -18px;
	width: 36px;
	height: 36px;
	color: #fff;
}
#xet_board .thumb a.action-popup>.icon  {
	opacity: 0;
	transition: opacity 0.3s ease-in-out;
	-moz-transition: opacity 0.3s ease-in-out;
	-webkit-transition: opacity 0.3s ease-in-out;
}
#xet_board .thumb a.action-popup>.icon.video {
	opacity: 1;
}
#xet_board .thumb a img { 
	vertical-align:top;
	transition: opacity 0.3s ease-in-out;
	-moz-transition: opacity 0.3s ease-in-out;
	-webkit-transition: opacity 0.3s ease-in-out;
}
#xet_board .boardList td.thumbnail .thumb {
	width: 100px;
}
#xet_board .boardList li .thumb a img {
	width: 100px;
}
#xet_board .boardList td.thumbnail img,
#xet_board .baord_gallery .thumb a img {
	width: 100%;
}
#xet_board .board_webzine .item .thumb {
	overflow: hidden;
	border-radius: 3px;
}

@media (min-width: 992px) {
	#xet_board .thumb a.action-popup:hover img {
		opacity: .7;
	}
	#xet_board .thumb a.action-popup:hover>.icon {
		opacity: 1;
	}
}	

/* css3 
-------------------------------------------------------------------------------------------------------- */
.r3 { 
	-moz-border-radius:3px;
	-webkit-border-radius:3px; 
	border-radius:3px; 
}
.r5 { 
	-moz-border-radius:5px;
	-webkit-border-radius:5px; 
	border-radius:5px; 
}
.r50 { 
	-moz-border-radius:50%;
	-webkit-border-radius:50%; 
	border-radius:50%; 
}
.l-r3 { 
	-moz-border-radius:3px 0 0 3px;
	-webkit-border-radius:3px 0 0 3px; 
	border-radius:3px 0 0 3px; 
}
.r-r3 { 
	-moz-border-radius:0 3px 3px 0;
	-webkit-border-radius:0 3px 3px 0; 
	border-radius:0 3px 3px 0; 
}
.in-sd2px2 { 
	-moz-box-shadow: inset 0 0 2px rgba(0,0,0,.2);  
	-webkit-box-shadow: inset 0 0 2px rgba(0,0,0,.2); 
	box-shadow: inset 0 0 2px rgba(0,0,0,.2); 
}


@media (max-width: 767px) {
	.display-xs-block {
		display: block !important
	}
  	.hidden-xs {
    	display: none !important;
  	}
  	.text-center-xs {
		text-align: center !important;
	}
	.float-none-xs {
	  	float: none !important;
  	}
  	.pd-xs-15 {
		padding: 15px !important;
	}
	.mg-xs-t20 {
		margin-top: 20px !important;
	}
	.pd-xs-b60 {
		padding-bottom: 60px !important;
	}
  	.mg-xs-b10 {
		margin-bottom: 10px !important;
	}
  	.mg-xs-b20 {
		margin-bottom: 20px !important;
	}
	.mg-xs-b50 {
		margin-bottom: 50px !important;
	}
	.mg-xs-b60 {
		margin-bottom: 60px !important;
	}
	.width-xs-100 {
		width: 100% !important
	}
	

	
}
	