/* Defualt
---------------------------------------------------------------------------- */
.floatLeft { 
	float:left;
}
.floatRight { 
	float:right;
}
.clearLeft { 
	clear:left;
}
.clearRight { 
	clear:right;
}
.clearfix { 
	*zoom: 1;
}
.clearfix:after {
	content: "";
	display: block;
	clear: both;
}

.xet_contentWrp { 
	position:relative; 
	margin:0;
	padding:0; 
	clear:both; 
	font-size: 14px;
	color: #707070;
}

.xet_contentWrp a {
	text-decoration:none !important;
}


/* img */
.xet_contentWrp img { 
	vertical-align: top;
}
.xet_contentWrp .icon img {
	vertical-align: inherit;
}

/* XE Icon */
.xet_contentWrp i[class*="xi-"] {
	margin-right: 1px;
}

/* color */
.xet_contentWrp a.notice { 
	color: #64b5f6	!important; 
}
.xet_contentWrp .replyNum,
.xet_contentWrp .replyNum a, 
.xet_contentWrp .trackbackNum a { 
	font-size: 12px;
	color: #ff8d19 !important;
}

/* 위젯 상단 타이틀
---------------------------------------------------------------------------- */
.xet_contentTitle { 
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
}
.xet_contentTitle h3 { 
	font-size: 24px;
	margin: 0;
	color: #1b1b1b; 
}
.xet_contentTitle a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	overflow: hidden;
	text-align: center;
	border: 1px solid #cbcbcb;
}
.xet_contentTitle a i[class*="xi-"] {
	font-size: 16px;
	line-height: 1;
}

/* Thumbnail 
---------------------------------------------------------------------------- */
.xet_contentWrp .thumbnail {
	display: block;
}
.xet_contentWrp .thumbnail img {
	vertical-align: top;
	width: 100%;
}

/* Category
---------------------------------------------------------------------------- */
.xet_contentWrp .categoryWrp {
	font-size: 14px;
	margin-bottom: 5px;
}
.xet_contentWrp .categoryWrp>span {
	margin-right: 10px;
}
.xet_contentWrp .categoryWrp a { 
	color: #2286c3 !important; 
}

/* 페이징 
---------------------------------------------------------------------------- */
.xet_contentWrp .widget-pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	margin: 15px auto;
}
.xet_contentWrp .widget-pagination ul {
	display: flex;
	align-items: center;
	list-style: none;
	padding: 0;
	margin: 0;
}
.xet_contentWrp .widget-pagination li {
	padding: 0;
	margin: 0;
}
.xet_contentWrp .widget-pagination li a, 
.xet_contentWrp .widget-pagination li strong {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 20px;
	color: #707070;
	font-size: 14px;
	font-weight: normal;
	text-align: center;
	min-width: 14px;
	padding: 0 8px;
}
.xet_contentWrp .widget-pagination li strong {
	padding: 0;
}
.xet_contentWrp .widget-pagination li .page-on {
	color: #64b5f6;
	border-bottom: 1px solid #64b5f6;
	cursor: default;
}


/* 탭
---------------------------------------------------------------------------- */	
/* 탭 메뉴 */
.xet_contentTab { 
	margin:0; 
	padding:0;
	overflow: hidden;
}
.xet_contentTab .tab_menu {
	display: flex;
	align-items: center;
	justify-content: start;
	flex-wrap: wrap;
	list-style: none;
	margin: 0;
	padding: 0 0 20px;
}
.xet_contentTab .tab_menu li {
	margin: 0 15px; 
	padding: 0; 
}
.xet_contentTab .tab_menu li button {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	overflow:hidden;
	padding: 0;
	margin: 0;
	height: 40px;
	white-space: nowrap;
	font-size: 14px;
	text-decoration: none;
	cursor: pointer;
	color: #1b1b1b;
	background: none;
	border: 0;
	border-bottom: 1px solid transparent;
	outline: 0;
}
.xet_contentTab .tab_menu li.open button { 
	color: #64b5f6 !important;
	border-color: #64b5f6 !important;
}

/* 탭 콘텐츠 */
.xet_contentTab .tab_content {
	list-style: none;
	margin: 0;
	padding: 0;
}
.xet_contentTab .tab_content>dd {
	margin: 0;
	padding: 0;
    display: none; 
}
.xet_contentTab .tab_content>dd.open {
    display: block; 
	animation: fadeEffect 1s; /*페이드 에니메이션(1초)*/
}
@-webkit-keyframes fadeEffect {
    from {opacity: 0;}
    to {opacity: 1;}
}
@keyframes fadeEffect {
    from {opacity: 0;}
    to {opacity: 1;}
}


/* 어두운 바탕용
---------------------------------------------------------------------------- */
.xet_contentWrp.dark .xet_contentTitle h3 {
	color: #f1f1f1;
}
.xet_contentWrp.dark a.widget_title_more {
	color: #3b3b3b;
	border-color: #3b3b3b;
}
.xet_contentWrp.dark .xet_contentTab .tab_menu li button {
	color: #fff;
}

/* 게시물 제목 */
.xet_contentWrp.dark .subject {
	color: #fff;
}


/* pad
---------------------------------------------------------------------------- */
@media (min-width: 768px) {		
	.xet_contentTab .tab_menu {
		justify-content: center;
	}
	
}