@charset "utf-8";

.article li {
	list-style: inherit;
}

.comments_toggle {
	position: relative;
	padding-top: 60px;
	margin-top: 30px;
	background: #FFF;
}

.comments_toggle .toggle {
	vertical-align: top;
	background-color: WHITE;
	-webkit-box-shadow: inset 0 -1px #FFF, inset 0 1px 1px RGBA(0, 0, 0, .05);
	box-shadow: inset 0 -1px #FFF, inset 0 1px 1px RGBA(0, 0, 0, .05);
	background-image: -webkit-linear-gradient(top, #EEE, #FFF 25px);
	background-image: linear-gradient(to bottom, #EEE, #FFF 25px);
	margin-top: 20px;
	font-size: 11px;
	color: #4E4E4E;
	font-weight: normal;
	border-radius: 30px;
	overflow: hidden;
	line-height: 15px;
	cursor: pointer;
	position: absolute;
	right: 0;
	top: 0;
	display: block;
	padding: 3px;
	margin-right: 30px;
}

@media (max-width: 767px) and (min-width: 319px) {
	.comments_toggle .toggle {
		margin-right: 20px;
	}
}

.comments_toggle .toggle ul {
	position: relative;
	overflow: hidden;
	display: block;
	height: inherit;
	font-size: 10px;
	text-transform: uppercase;
	background: #01AAFF;
	border-radius: inherit;
	-webkit-box-shadow: inset 0 1px 2px RGBA(0, 0, 0, .12), inset 0 0 2px RGBA(0, 0, 0, .15);
	box-shadow: inset 0 1px 2px RGBA(0, 0, 0, .12), inset 0 0 2px RGBA(0, 0, 0, .15);
	-webkit-transition: all .5s ease;
	transition: all .5s ease;
	padding: 0 10px;
}

.comments_toggle .toggle ul li {
	float: left;
}

.comments_toggle .toggle ul li:first-child {
	margin-right: 13px;
}

.comments_toggle .toggle ul li a {
	color: #FFF;
	text-shadow: 0 1px RGBA(0, 0, 0, .2);
	padding: 5px 0;
	display: block;
	font-size: 10px;
}

.comments_toggle .toggle .pointer {
	position: absolute;
	top: 6px;
	left: 6px;
	width: 44px;
	height: 19px;
	background: WHITE;
	border-radius: 10px;
	-webkit-box-shadow: 1px 1px 5px RGBA(0, 0, 0, .2);
	box-shadow: 1px 1px 5px RGBA(0, 0, 0, .2);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(40%, #FFF), to(#F0F0F0));
	background-image: -webkit-linear-gradient(#FFF 40%, #F0F0F0);
	background-image: linear-gradient(#FFF 40%, #F0F0F0);
	-webkit-transition: all .5s ease;
	transition: all .5s ease;
}

.comments_toggle .toggle .pointer:before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -6px 0 0 -11px;
	width: 21px;
	height: 12px;
	background: #F9F9F9;
	border-radius: 6px;
	-webkit-box-shadow: inset 0 1px RGBA(0, 0, 0, .02);
	box-shadow: inset 0 1px RGBA(0, 0, 0, .02);
	background-image: -webkit-gradient(linear, left top, left bottom, from(#EEE), to(#FFF));
	background-image: -webkit-linear-gradient(#EEE, #FFF);
	background-image: linear-gradient(#EEE, #FFF);
}

.comments_toggle .cmtLeft {
	display: block;
}

.comments_toggle.active .cmtLeft, .comments_toggle .cmtRight {
	display: none;
}

.comments_toggle.active .cmtRight {
	display: block;
	padding: 30px;
}

.comments_toggle.active .toggle ul {
	-webkit-box-shadow: inset 0 1px 2px RGBA(0, 0, 0, .15), inset 0 0 3px RGBA(0, 0, 0, .2);
	box-shadow: inset 0 1px 2px RGBA(0, 0, 0, .15), inset 0 0 3px RGBA(0, 0, 0, .2);
	background: #E05832;
}

.comments_toggle.active .toggle .pointer {
	left: 62px;
	-webkit-box-shadow: -1px 1px 5px RGBA(0, 0, 0, .2);
	box-shadow: -1px 1px 5px RGBA(0, 0, 0, .2);
}

#contentWrap .sub_tit a, #contentWrap .tdiv h2 a {
	font-size: 37px;
}

.ad {
	overflow: hidden;
}

#contentWrap .entry, #contentWrap .pagination .wrap, #contentWrap #localog, #contentWrap #taglog, #contentWrap .cb_wrt, .pro-wrap {
	width: 800px;
}

.mask > a iframe {
	width: 100%;
	height: auto;
}

#preLoader {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	background: none;
	background: RGBA(255, 255, 255, .4);
	z-index: 5;
}

#preLoader .wrap {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -40px;
	margin-top: -20px;
	text-align: center;
	font-size: 26px;
	position: relative;
	width: 80px;
	margin-right: 30px;
	z-index: 10;
}

.preloader .wrap div {
	display: inline-block;
	width: 18px;
	height: 18px;
	border-radius: 100%;
	background-color: #DDD;
	-webkit-animation: bouncedelay 1.4s infinite ease-in-out both;
	animation: bouncedelay 1.4s infinite ease-in-out both;
}

.preloader .wrap .one {
	-webkit-animation-delay: -.32s;
	animation-delay: -.32s;
}

.preloader .wrap .two {
	-webkit-animation-delay: -.16s;
	animation-delay: -.16s;
}

@-webkit-keyframes bouncedelay {
	0%, 80%, 100% {
		-webkit-transform: scale(0);
	}

	40% {
		-webkit-transform: scale(1);
	}
}

@keyframes bouncedelay {
	0%, 80%, 100% {
		-webkit-transform: scale(0);
		transform: scale(0);
	}

	40% {
		transform: scale(1);
		-webkit-transform: scale(1);
	}
}

.listItem {
	display: none;
}

.listItem.show {
	display: block;
}

.tistoryProfileLayerTrigger {
	display: none !important;
}

.listItem.vimeo:after {
	position: absolute;
	top: 0;
	right: 0;
	content: "";
	width: 20px;
	height: 20px;
	background: url(./images/ico_play.png) 0 -20px no-repeat;
	z-index: 10;
}

.listItem.vimeo:hover:after {
	background-position: -20px -20px;
}

.listItem.youtube:after {
	position: absolute;
	top: 0;
	right: 0;
	content: "";
	width: 20px;
	height: 20px;
	background: url(./images/ico_play.png) 0 0 no-repeat;
	z-index: 10;
}

.listItem.youtube:hover:after {
	background-position: -20px 0;
}

.listItem.soundcloud:after {
	position: absolute;
	top: 0;
	right: 0;
	content: "";
	width: 20px;
	height: 20px;
	background: url(./images/ico_play.png) 0 -40px no-repeat;
	z-index: 10;
}

.listItem.soundcloud:hover:after {
	background-position: -20px -40px;
}

.csstransitions .sidebar_wrap {
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

.csstransitions .sidebar_wrap.slide {
	-webkit-transform: translateX(250px);
	-ms-transform: translateX(250px);
	transform: translateX(250px);
}

#localog .tx, #taglog .tx {
	padding: 80px;
}

#localog h3, #taglog h3 {
	padding-bottom: 10px;
	border-bottom: 1px solid #E4E4E4;
	font-size: 45px;
	font-weight: normal;
	color: #333;
}

#taglog a, #localog a {
	font-size: 12px;
	color: #333;
	padding: 3px 5px;
	font-weight: normal;
	border-radius: 3px;
	border: 1px solid #DDD;
	margin-bottom: 5px;
	display: inline-block;
}

#taglog a:hover, #localog a {
	color: #000;
	box-shadow: inset 0 0 8px #EFEFEF;
}

#taglog a:before {
	content: "#";
}

.tagTrail {
	float: left;
	margin-top: 10px;
}

.tagTrail a {
	font-size: 12px;
	color: #333;
	padding: 3px 5px;
	font-weight: normal;
	border-radius: 3px;
	border: 1px solid #DDD;
	margin-bottom: 5px;
	display: inline-block;
}

.tagTrail a:hover {
	color: #000;
	box-shadow: inset 0 0 8px #EFEFEF;
}

.tagTrail a:before {
	content: "#";
}

.articleMore {
	position: relative;
	overflow: hidden;
	margin-top: 30px;
}

.articleMore .sns {
	float: right;
	width: 108px;
	margin-right: -8px;
}

.articleMore .sns a {
	font-weight: normal;
	color: #DDD;
	font-size: 30px;
}

.articleMore .sns .facebook:hover {
	color: #3636B7;
}

.articleMore .sns .facebook {
	color: #DDD;
	font-size: 27px;
	vertical-align: 1px;
	margin-right: 6px;
}

.articleMore .sns .twitter:hover {
	color: #01B7F9;
}

.articleMore .sns .twitter {
	color: #DDD;
	margin-right: 6px;
}

.articleMore .sns .kakaostory:hover {
	color: #FFC800;
}

.section.comment .sns .kakaostory {
	color: #DDD;
}

.sidebar_wrap .category_list .category_list {
	padding: 0;
}

body {
	background-color: #F3F3F3;
	overflow-y: scroll;
	overflow-x: hidden;
}

body, button, h1, h2, h3, h4, h5, h6, input, select, td, textarea, th, body, button, input, select, td, textarea, th {
	font-family: "Spoqa Han Sans","맑은고딕","Malgun Gothic",AppleGothic,Sans-serif;
	font-family: "맑은고딕","Malgun Gothic","돋움",dotum,AppleGothic,Sans-serif\0/IE8+9;
	font-size: 12px;
	line-height: 1.5;
	color: #333;
}

.btn_menu {
	position: absolute;
	top: 45px;
	left: 50px;
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
	cursor: pointer;
}

a {
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
	color: #333;
	text-decoration: none;
}

#contentWrap > span {
	visibility: hidden;
	overflow: hidden;
	position: absolute;
	top: -1px;
	left: -1px;
	width: 1px;
	height: 1px;
	font-size: 0;
	line-height: 0;
}

.btn_menu span {
	display: block;
	width: 30px;
	height: 2px;
	margin-bottom: 10px;
	background: #000;
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

.btn_close .bar_1 {
	-ms-transform: translateY(10px) rotate(-45deg);
	-webkit-transform: translateY(10px) rotate(-45deg);
	transform: translateY(10px) rotate(-45deg);
}

.btn_close .bar_2 {
	visibility: hidden;
	opacity: 0;
}

.btn_close .bar_3 {
	-ms-transform: translateY(-14px) rotate(45deg);
	-webkit-transform: translateY(-14px) rotate(45deg);
	transform: translateY(-14px) rotate(45deg);
}

.sub_tit a, .tdiv h2 a {
	font-size: 49px;
	font-weight: 100;
	color: #333;
}

.article .imageblock {
	max-width: 100%;
}

.article img, .article .imageblock img {
	max-width: 100%;
	height: auto !important;
}

.dimmed {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
	width: 100%;
	height: 100%;
	background-color: #000;
	-ms-filter: alpha(Opacity=50);
	filter: alpha(opacity=50);
	opacity: .5;
}

.pro-wrap .protect_p {
	margin-top: 100px;
	margin-bottom: 20px;
	text-align: center;
}

.pro-wrap .protect_i_w {
	margin-bottom: 150px;
	text-align: center;
}

.pro-wrap .protect_i_w .button {
	display: inline-block;
	width: 50px;
	height: 20px;
	margin-right: 10px;
	margin-left: 10px;
	border: 1px solid #EEE;
	background-color: #333;
	font-size: 11px;
	color: #FFF;
	text-align: center;
	vertical-align: middle;
	padding: 7px 5px 3px;
}

#localog, #taglog {
	width: 800px;
	margin: 20px auto;
}

#localog .tx, #taglog .tx {
	padding: 30px;
	background-color: #FFF;
}

#localog h3, #taglog h3 {
	background-color: #FFF;
	border-bottom: 1px solid #F3F3F3;
	padding: 20px 30px 10px;
	font-size: 49px;
	font-weight: 100;
	color: #333;
}

.btn {
	display: block;
	overflow: hidden;
	border: 0;
	cursor: pointer;
}

blockquote, body, button, code, dd, div, dl, dt, fieldset, form, h1, h2, h3, h4, h5, h6, input, legend, li, ol, p, pre, select, td, textarea, th, ul {
	margin: 0;
	padding: 0;
}

fieldset, img {
	border: 0;
}

dl, li, menu, ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
	position: relative;
	padding: 30px;
	margin: 10px;
}

blockquote:before, q:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 24px;
	height: 20px;
	background: url(./images/bl_before.png) 0 0 no-repeat;
}

blockquote:after, q:after {
	content: "";
	position: absolute;
	bottom: 0;
	right: 0;
	width: 24px;
	height: 20px;
	background: url(./images/bl_after.png) 0 0 no-repeat;
}

button, input, select, textarea {
	vertical-align: middle;
}

button {
	border: 0;
	background-color: transparent;
	cursor: pointer;
}

a:active, a:hover {
	text-decoration: none;
}

address, caption, cite, code, dfn, em, var {
	font-style: normal;
	font-weight: 400;
}

.blind {
	visibility: hidden;
	overflow: hidden;
	position: absolute;
	top: -1px;
	left: -1px;
	width: 1px;
	height: 1px;
	font-size: 0;
	line-height: 0;
}

.gotoTop {
	display: none;
	position: fixed;
	right: 0;
	bottom: 20px;
	z-index: 15000;
	width: 50px;
	height: 50px;
	text-align: right;
	opacity: .8;
}

.header {
	height: 120px;
	width: 100%;
	background: #FFF;
	box-shadow: 1px 0 2px #EEE;
	position: relative;
	z-index: 40;
}

.header .title {
}

.header .title h1 {
	text-align: center;
	padding-top: 20px;
}

.header .title h1 a {
	font-size: 49px;
	color: #000;
}

.header .category {
	margin-left: 30px;
	margin-right: 30px;
}

.header .category_list {
	overflow: hidden;
	width: 170px;
	height: 190px;
	border-bottom: 1px solid #E4E4E4;
	padding: 30px 10px;
}

.header .category_list ul li a {
	display: block;
	border-bottom: 1px solid #F8F8F8;
	font-size: 11px;
	line-height: 2.5em;
	color: #494949;
	text-decoration: none;
	padding: 0 10px;
}

.header .category_list ul li a:hover {
	background: #000;
	color: #FFF;
}

.search_wrap {
	margin: 45px 30px 27px;
}

.search_form input {
	width: 100%;
	height: 30px;
	border: none;
	background: 0 0;
	line-height: 30px;
	font-size: 11px;
	color: #000;
	vertical-align: middle;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	padding-bottom: 10px;
	height: 40px;
	color: #9E9E9E;
}

.search_form button {
	display: none;
	visibility: hidden;
	width: 0;
	height: 0;
}

.content {
	position: relative;
}

.listItem {
	overflow: hidden;
	position: relative;
	width: 320px;
	height: auto;
}

.listItem .mask {
	z-index: 1;
}

.listItem .img {
	width: 100%;
	height: auto;
}

.copy {
	clear: both;
	font-size: 10px;
	color: #666;
	text-align: right;
}

.section_link {
	overflow: hidden;
	position: absolute;
	right: 0;
	left: 0;
	bottom: 0;
	background: url(./images/bg.png);
	color: #FFF;
	text-align: left;
	padding: 5px;
}

.section_title {
	width: 100%;
	box-sizing: border-box;
	position: absolute;
	left: 0;
	bottom: 0;
	text-align: left;
	word-break: break-all;
	padding: 0;
	z-index: 40;
	padding: 5px;
	background: RGBA(255, 255, 255, .5);
	filter: alpha(opacity=0);
}

.listItem.active .section_title {
	-ms-filter: alpha(Opacity=100) !important;
	filter: alpha(opacity=100) !important;
	opacity: 1 !important;
}

.section_title a .tit {
	display: block;
	background: RGBA(255, 255, 255, .5);
	width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.section_title a .date {
	width: 100%;
	display: block;
	background: RGBA(255, 255, 255, .5);
	font-size: 9px;
	color: #444;
	text-align: left;
}

.section_title a {
	font-size: 12px;
	font-weight: 700;
	color: #333;
	text-align: left;
	text-decoration: none;
}

.view_more {
	display: none;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 70px;
	height: 30px;
	margin-top: -11px;
	margin-left: -30px;
	z-index: 9999999;
	color: #000;
	font-weight: 100;
	font-size: 17px;
	text-align: center;
	line-height: 30px;
}

.comment_num {
	float: right;
	text-align: left;
}

.date {
	float: left;
	text-align: right;
}

.cb_comment_area {
	position: relative;
	overflow: hidden;
}

.cb_nick_name img {
	position: absolute;
	position: absolute;
	top: 5px;
	left: 30px;
	border: 1px solid #DDD;
	border-radius: 30px;
	z-index: 2;
	background: #FFF;
}

.cb_nick_name:before {
	content: "";
	width: 32px;
	height: 32px;
	position: absolute;
	top: 7px;
	left: 32px;
	background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAYAAAA7MK6iAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAABD9JREFUeNqkV0tIG1EUvfn4iyZqzCJEUxE3YpOioii4btCNG0stCOquuuuuiy4KhUKX3am71pXWbrWSLsWNn+IXFyLUWINKjeIn8W/veZ2XjuNkZqwXDiTz7tzz7n33nffGlp+fTxYsj9HKeGqz2ULX19fBm5sbLwbsdnuCn23y/2X++53xjZEyC2gzIS5mvGL0cPBHJycnxAS6jjwBcrlcGI/x30+Mj4z9/yHuZrxnwtLLy0s6PT2lkpISCofD5Pf7Sb6HycTjcVpaWqL9/X3Ky8sjh8OBCWzx8BvG5/sQ9zN6mZSurq4olUpRc3Mztba2UlFREXGpBWAggd/e3h6NjY3R9PS0yBzPFBtg9GkJHNnZ2dpnI0q2wpLJpCDt7u4mZH5wcCCyl8CkkLXb7abGxkba3t6mjY0NysnJkSHqGdWMr0bE/WpSBPV6vdTV1SVIj4+P1Zn8Kxs/Ozs7E+tcXl5O8/PzYsJOp1O6PGb4GWPpnlC9/wLlVQdEOUOhkChvJlI1+dHREfl8PqqqqhJLpLFeheMWsZsxqBcQJZTracUwgcLCwkzDgwpXmvg1w6PnKbeQUbZqUmSKd+R/jXkULkHsYrzUCwLb3d1Nr5+ZwQd9sbOzY+QGLheiRRg+7agUCgRCY1klvri4EN2ujqExcEUQrUVvVL5UW1srxALkZgYfj8dDNTU1Zq4tIH5iRIxGwZaz0mBY39zc3HRzZZJXcII4kKlsMEghAoLcIJAYg2igH5aXlzM1l7QABOQd/8jRG83KyhIqhD0MjT4/PzdcX+j08PAwzc3NaWXzjmLazZoFNjMzI8QBZcxkIIKczs7OCkKzZsRowqh8CIjOXl1dTR8Qen5oKpQYy6Icj0a8CRDHzbKG5o6Pj9Pa2hoVFBTc8cGzlZUVikajYnksiE0cxItGHpg5Snx4eEhTU1PqU+dWL0xOToqDAb4m2cIWQTxBDzQ1kQVS2ASIo4zfZvsTVlZWpkuKy4Acs7DfwRUFcTLTyYS1ghqhuSorK6m+vl50t9YH262pqYlKS0tFuTFRg3UGV1JefXBU/cLpIV+AEEB3YXV1ddTe3i5EBMTarYIs0dUgHR0dFaIj1172hLIEhygc48iBQTYow0/GMxxpEAo8h2i0tbVRJBIRLyIzvf2JyeJgQHc3NDSIzFEp3MNQLRmP/Xo4zg/xDmYqjR36+arTC5Gvrq6mYDAogkIYTMqXzhxbr7i4WPjHYjGxzRYWFiiRSAxw9ulLny0Q+CvVyKaiooI6OztHuPzP5SUOwaxcAvQaDssIGeXl+TI0NNSxvr6e1gE7nACUBg95H3bw4T+AiVi9eeiVHhNGP/ClYICVrAOVVR+tdm0HYz34N0rSw9h6wPbeUr5A+mSjqpMwUnJ8AYQZOL1i9yCMKe+EM31FwJwmQfDt85bxQX60MUKMIMMrBZ+xybjXR9sfAQYAJ5gVw9kfDZUAAAAASUVORK5CYII=");
	background-repeat: no-repeat;
	z-index: 1;
}

.cb_thumb_off .cb_thumb_off .cb_comment_area .cb_nick_name img {
	top: 20px;
	left: 18px;
}

.cb_thumb_off .cb_thumb_off .cb_comment_area .cb_nick_name:before {
	top: 22px;
	left: 20px;
}

.listItem.noImage .item, .listItem.padding .item {
	position: relative;
	padding-top: 56.25%;
	height: 0;
	min-height: auto;
}

.listItem.padding .item iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.mask a {
	display: block;
	height: auto;
}

.mask .item {
	display: block;
	min-height: 150px;
}

.hiddenArticle .mask .item img {
	display: none;
}

.noImage .mask .item {
	background: url(./images/loading.gif) center center no-repeat;
}

.hiddenArticle .mask .item {
	background: url(./images/lock.png) center center no-repeat;
}

.mask a img {
	display: block;
	width: 100%;
	height: auto;
}

.search_tit p {
	font-size: 11px;
	color: #666;
	text-align: left;
	padding: 15px 35px;
}

.listItem .section_title {
	opacity: 0;
}

.listItem .section_link {
	bottom: -30px;
}

.trackback {
	padding: 10px;
}

.trackback h3 {
	font-size: 11px;
	word-break: break-all;
}

.trackback ol li h4 {
	margin-bottom: 10px;
}

.article {
	padding: 30px;
	background-color: #FFF;
}

.pagination {
	position: relative;
	overflow: hidden;
	text-align: center;
}

.more-area {
	display: none;
	position: relative;
	overflow: hidden;
	text-align: center;
	padding-top: 100px;
	height: 50px;
}

.more-area .load-more img {
	vertical-align: middle;
}

.more-area .load-more span {
	vertical-align: middle;
	display: inline-block;
	height: 20px;
	line-height: 22px;
}

.more-area .load-more {
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
	position: relative;
	display: inline-block;
	font-size: 12px;
	margin: 0;
	text-align: center;
	padding-bottom: 5px;
	bottom: 0;
	color: #444;
	background-color: #FFF;
	border-radius: 3px;
	padding: 5px 55px;
}

.more-area .load-more:hover {
	padding: 5px 65px;
}

.pagination .wrap {
	position: relative;
	display: inline-block;
	width: 800px;
	text-align: center;
}

.pagination a span {
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
	display: block;
	width: 29px;
	height: 29px;
	background: #FFF;
	line-height: 29px;
	text-align: center;
}

.pagination a:hover span {
	background-color: #AAA;
	color: #FFF;
}

.pagination a span.selected {
	background: #DDD;
	font-weight: 100;
	color: #FFF;
}

.wrap_secret {
	margin-top: 10px;
	position: relative;
}

.wrap_secret label {
	margin-left: 2px;
	padding-left: 27px;
	color: #BBB;
	vertical-align: middle;
	font-weight: 400;
	position: relative;
	z-index: 1;
}

.entry + .pagination .wrap {
	overflow: hidden;
	margin-top: 0;
}

input[type=checkbox]+.ch_rep {
	display: inline-block;
	width: 21px;
	height: 21px;
	border: 0;
	border-radius: 0;
	background: url(./images/ico_checkbox.png) no-repeat;
	background-size: 21px auto;
	vertical-align: top;
	-webkit-appearance: none;
}

input[type=checkbox]:checked+.ch_rep {
	background-position: 0 -21px;
}

.wrap_secret input {
	width: 13px;
	height: 13px;
	vertical-align: bottom;
}

.wrap_secret input + .ch_rep {
	position: absolute;
	top: 0;
	left: 0;
}

#nextPage, #prevPage {
	font-size: 28px;
	color: #767676;
	letter-spacing: -1px;
	font-size: 14px;
	padding: 0 10px;
	background-color: #FFF;
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
	margin: 0;
	border: 2px solid #DDD;
}

#nextPage:hover, #prevPage:hover {
	background-color: #DDD;
	color: #FFF;
}

#prevPage {
	position: absolute;
	left: 0;
	top: 20px;
}

#prevPage i {
	margin-right: 5px;
}

#nextPage {
	position: absolute;
	right: 0;
	top: 20px;
}

#nextPage i {
	margin-left: 5px;
}

.paging-num {
	display: inline-block;
	padding: 20px;
	min-height: 30px;
}

.ect {
	overflow: hidden;
	padding-right: 30px;
	padding-left: 30px;
	font-size: 11px;
	color: #AAA;
	vertical-align: top;
}

.ect a, .ect span {
	font-size: 11px;
	color: #AAA;
	margin-right: 3px;
	vertical-align: top;
}

.ect .mod {
	overflow: hidden;
	margin: 10px 0 5px;
}

.ect .mod a, .ect .mod span {
	float: left;
}

.ect a:first-child {
	padding-left: 0;
}

.article .another_category {
	border-left: 0;
	border-right: 0;
	padding: 10px 0;
}

.article .another_category th {
	background-color: #FFF;
}

.wrap_secret {
	position: absolute;
	bottom: 85px;
	left: 30px;
}

.cb_wrt {
	width: 800px;
	margin: 0 auto;
}

.cb_wrt .commentWrite {
	position: relative;
	margin-top: 20px;
	padding: 30px;
	background-color: #FFF;
}

.cb_wrt .write_item p {
	margin-top: 5px;
	padding-top: 3px;
}

input {
	width: 150px;
	height: 20px;
	border: 1px solid #EEE;
	padding: 5px;
}

.cb_wrt .write_text {
	margin-top: 10px;
}

.cb_wrt .write_text textarea {
	/*resize: none;*/
	width: 100%;
	height: 60px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

.cb_wrt .secretWrap {
	margin: 5px 0;
}

.cb_wrt .secretWrap label {
	color: #BBB;
}

.cb_wrt .wrap_secret + .write_text + .sdiv {
	padding-top: 30px;
}

.cb_wrt .sdiv {
	text-align: center;
	padding-bottom: 5px;
	margin-top: 20px;
}

.cb_wrt .sdiv a {
	display: inline-block;
	text-align: center;
	width: 15%;
	min-width: 135px;
	height: 30px;
	line-height: 30px;
	color: #000;
	cursor: pointer;
	border: 2px solid #E4E4E4;
	font-size: 11px;
}

.btn-mod, .btn-repl {
	font-size: 10px;
	color: #ACACAC;
}

input[type=email], input[type=password], input[type=text], select, textarea {
	border: none;
	border-bottom: 1px solid #DDD;
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

textarea {
	padding: 5px;
}

input[type=email]:hover, input[type=password]:hover, input[type=text]:hover, select:hover, textarea:hover {
	border-color: #FFA300;
}

.cb_thumb_off .cb_thumb_off {
	background: #EFEFEF;
}

.cb_comment_area {
	overflow: hidden;
	padding: 5px 30px;
}

.cb_lstcomment {
	padding-bottom: 20px;
	background: #FFF;
}

.cb_info_area .cb_section {
	float: left;
}

.cb_dsc_comment, .cb_info_area {
	padding-left: 40px;
}

.cb_info_area .cb_section2 {
	float: right;
}

.cb_thumb_off .cb_thumb_off .cb_comment_area {
	padding: 20px 0 0 20px;
}

.cb_dsc_comment {
	padding-bottom: 15px;
}

.hx.cmt a {
	color: #999;
}

.cmt {
	padding-left: 30px;
	padding-right: 30px;
	text-align: right;
}

.cmt a {
	font-size: 11px;
}

.sidebar_wrap {
	position: fixed;
	top: 0;
	left: -250px;
	bottom: 0;
	width: 250px;
	color: #333;
	background-color: #3C3C3C;
	z-index: 70;
}

#sidebar {
	display: block;
	overflow: hidden;
	float: left;
	width: 250px;
	height: 100%;
	box-sizing: border-box;
	padding: 20px 30px;
}

#sidebar .section {
	float: left;
	width: 190px;
	border-top: 1px solid #4E4E4E;
	padding: 20px 0;
}

#sidebar .section h2 {
	padding-bottom: 10px;
	font-weight: 100;
	color: #C5C5C5;
}

#sidebar .section .tx p, #sidebar .section ul, #sidebar .section ul a {
	font-size: 11px;
	color: #8D8D8D;
	text-decoration: none;
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

.header_util a:hover {
	color: #FFF;
}

#sidebar .section ul a:hover {
	color: #FFF;
}

.header_util {
	overflow: hidden;
	margin-left: 30px;
	margin-right: 30px;
	margin-top: 25px;
	padding-top: 25px;
	border-top: 1px solid #4E4E4E;
	text-align: center;
}

.header_util ul {
	margin-left: 20px;
}

.header_util ul a {
	font-size: 16px;
	color: #BBB;
}

.tdiv h2, .sub_tit {
	padding: 20px 30px 5px;
}

.entry, .pro-wrap {
	width: 800px;
	margin: 20px auto;
}

.tdiv {
	padding: 10px 0 30px;
	background-color: #FFF;
}

.notice .tdiv {
	padding-top: 0;
	border-bottom: 1px solid #F3F3F3;
}

.pro-wrap .tdiv {
	background: none;
}

.article-wrap {
	box-shadow: 0 0 2px #EEE;
}

.pro-wrap .protect_i_w label, .cb_wrt .write_item p label {
	margin-right: 10px;
	font-size: 11px;
	color: #BBB;
	vertical-align: middle;
}

.cb_date, .cb_nick_name, .pagination a, .pagination .interword, .cb_info_area .cb_section2 span {
	margin-right: 5px;
}

.cb_date {
	font-size: 10px;
	color: #DDD;
}

hr, input[type=checkbox], #nextPage.no-more-next, #prevPage.no-more-prev {
	display: none;
}

.article_list, .cb_info_area, .sns {
	overflow: hidden;
}

.comment_num img, .date img {
	margin-right: 3px;
	vertical-align: middle;
}

.pagination a, .pagination .interword {
	display: inline-block;
	/*float:left;*/
	font-weight: 100;
	height: 30px;
	line-height: 30px;
	margin-bottom: 5px;
}

.cb_wrt .write_item p.first, .cb_wrt .secretWrap + .sdiv {
	margin-top: 0;
}

.sns {
	margin: 0;
	padding: 0;
}

.sns ul {
	margin: 0;
	padding: 0;
}

.sns li, .header_util li {
	float: left;
	margin-right: 26px;
}

#tistorytoolbarid {
	display: none;
}

.listItem .mask .dimmed {
	display: block;
	visibility: hidden;
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background: #FFF;
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
	opacity: 0;
	filter: alpha(opacity=0);
	content: " ";
}

.listItem.active .mask .dimmed {
	visibility: visible;
	background: #FFF;
	opacity: .8;
	filter: alpha(opacity=80);
	-ms-filter: "alpha(Opacity=80)";
}

.mask {
	position: relative;
	z-index: 1;
}

.sidebar_wrap .category_list {
	padding: 0 30px 0;
}

.sidebar_wrap .category_list ul li a {
	display: block;
	border-top: 1px solid #585858;
	font-size: 14px;
	line-height: 2.5em;
	font-weight: 100;
	color: #9E9E9E;
	text-decoration: none;
}

.sidebar_wrap .category_list ul > li > a {
	padding-left: 8px;
}

.sidebar_wrap .category_list ul ul ul > li > a {
	padding-left: 15px;
}

.sidebar_wrap .category_list ul > li > .sub_arrow {
	padding-left: 0;
}

.sidebar_wrap .category_list ul li a:hover {
	color: #FFA300;
}

.sidebar_wrap .category_list ul li a:hover {
	color: #FFF;
}

.sub_category_list {
	display: none;
}

.btn_cate + ul, .cate_deco ul {
	display: none;
}

.cate_deco > ul > li > ul {
	display: block;
}

.cate_deco > ul > li > ul > li {
	position: relative;
}

.cate_deco > ul > li > ul > li .sub_arrow {
	position: absolute;
	top: 9px;
	right: 0;
	width: 35px;
	height: 21px;
	border: none;
	border-left: 1px solid #585858;
}

.cate_deco > ul > li > ul > li .sub_arrow i {
	position: absolute;
	top: 0;
	left: 13px;
}

.category_list .btn_home {
	display: block;
	border-bottom: 1px solid #FFF;
	font-size: 18px;
	font-size: 16px;
	line-height: 2.5em;
	color: #EEE;
	text-decoration: none;
}

.category_list .cate_deco .btn_cate {
	display: block;
	position: relative;
	font-size: 21px;
	line-height: 2.5em;
	font-weight: 100;
	color: #9E9E9E;
	text-decoration: none;
	vertical-align: middle;
	padding-left: 8px;
}

.category_list .cate_deco .btn_cate:hover {
	color: #FFF;
}

.category_list .cate_deco .btn_cate.active > .fa-sort-desc {
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}

.category_list .cate_deco .active.sub_arrow .fa-sort-desc {
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg) translateY(-7px);
}

.category_list .cate_deco .btn_cate .fa-sort-desc {
	overflow: hidden;
	position: absolute;
	top: 50%;
	right: 12px;
	width: 13px;
	height: 10px;
	margin-top: -4px;
	line-height: 0;
}

.cont-dimmed {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 60;
	width: 100%;
	height: 100%;
	background-color: #000;
	-ms-filter: "alpha(Opacity=50)";
	filter: alpha(opacity=50);
	opacity: .5;
}

#wraper {
	width: 100%;
}

.listAlert {
	box-sizing: border-box;
	background: #000;
	background: RGBA(0, 0, 0, .7);
	padding: 12px;
	text-align: center;
	color: #DDD;
	font-size: 12px;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 10;
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

.listAlert em {
	font-weight: bold;
	color: #FFF;
}

.listAlert.active {
	-webkit-transform: translateY(-42px);
	-ms-transform: translateY(-42px);
	transform: translateY(-42px);
}

@media all and (min-width: 319px) and (max-width: 767px) {
	body, button, h1, h2, h3, h4, h5, h6, input, select, td, textarea, th {
		font-family: "나눔 고딕",Dotum, "droid sans fallback","AppleGothic",sans-serif;
	}

	.header {
		height: 60px;
	}

	.header .title h1 {
		padding-top: 15px;
	}

	.header .title h1 a {
		font-size: 26px;
	}

	.header .title h1 a img {
		height: 40px;
	}

	.section_title a .tit {
		display: block;
		width: 100%;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.section_title a .tit, .section_title a .date {
		background: none;
		float: none;
	}

	.entry, .pro-wrap {
		width: 100%;
	}

	.section_title {
		left: 0;
		bottom: 0;
		width: 100%;
		padding: 0;
	}

	.section_title a {
		display: block;
		background: RGBA(255, 255, 255, .7);
		padding: 10px;
	}

	.btn_menu {
		top: 21px;
		left: 18px;
	}

	.btn_menu span {
		width: 23px;
		margin-bottom: 6px;
	}

	.btn_close .bar_1 {
		-ms-transform: translateY(11px) rotate(-45deg);
		-webkit-transform: translateY(11px) rotate(-45deg);
		transform: translateY(11px) rotate(-45deg);
	}

	.btn_close .bar_3 {
		-ms-transform: translateY(-5px) rotate(45deg);
		-webkit-transform: translateY(-5px) rotate(45deg);
		transform: translateY(-5px) rotate(45deg);
	}

	.entry {
		width: 100% !important;
		margin: 0 auto;
	}

	.article {
		width: 100% !important;
		padding: 20px;
		box-sizing: border-box;
		-webkit-box-sizing: border-box;
	}

	.pagination {
		padding: 0;
	}

	.pagination .wrap {
		width: 100% !important;
		margin: 40px 0 40px;
		padding: 0 20px;
		box-sizing: border-box;
	}

	.entry + .pagination .wrap {
		margin: 20px 0 40px;
	}

	.cb_wrt .commentWrite {
		padding: 50px 20px;
		margin-top: 1px;
	}

	.cb_wrt .write_text textarea {
		box-sizing: border-box;
		-webkit-box-sizing: border-box;
	}

	.cb_wrt {
		width: 100% !important;
	}

	.tdiv h2, .sub_tit {
		padding: 20px 20px 5px;
	}

	.sub_tit a, .tdiv h2 a {
		font-size: 28px !important;
	}

	.ect, .cmt {
		padding: 0 20px;
	}

	.cmt {
		text-align: left;
	}

	.wrap_secret {
		left: 20px;
		bottom: 105px;
	}

	.cb_nick_name:before {
		left: 20px;
	}

	.cb_nick_name img {
		left: 18px;
	}

	.tistoryProfileLayerTrigger {
		display: none !important;
	}

	.gotoTop {
		bottom: 0;
	}

	.cb_comment_area {
		padding: 5px 20px;
	}

	#preLoader {
		top: 60px;
		background-size: 200px auto;
	}

	#prevPage {
		display: inline-block;
		position: static;
		float: left;
		margin-top: 10px;
	}

	#nextPage {
		display: inline-block;
		position: static;
		float: right;
		margin-top: 10px;
	}

	.paging-num {
		padding: 10px;
		display: block;
		clear: both;
		display: none;
	}

	.notice .tdiv {
		margin-bottom: 0;
	}
}

@media \0screen {
	input[type=checkbox] {
		display: inline-block;
	}

	input[type=checkbox]+.ch_rep {
		display: none;
	}

	.wrap_secret label {
		padding-left: 3px;
	}

	.listItem.active .section_title a .tit {
		background: #FFF;
	}

	.listItem.active .section_title a .date {
		background: #FFF;
	}
}

.listItem {
	overflow: hidden;
	width: 20%;
}

.ie8 .listItem {
	overflow: hidden;
	width: 19.98%;
}

@media only screen and (min-width: 2170px) {
	.listItem {
		width: 12.5%;
	}
}

@media only screen and (min-width: 1530px) and (max-width: 2169px) {
	.listItem {
		width: 16.66666%;
	}
}

@media only screen and (min-width: 1210px) and (max-width: 1529px) {
	.listItem {
		width: 25%;
	}
}

@media only screen and (min-width: 890px) and (max-width: 1209px) {
	.listItem {
		width: 33.33333%;
	}
}

@media only screen and (min-width: 570px) and (max-width: 879px) {
	.listItem {
		width: 50%;
	}
}

@media only screen and (min-width: 320px) and (max-width: 569px) {
	.listItem {
		width: 100%;
	}
}

@media only screen and (min-width: 320px) and (max-width: 736px) and (-webkit-min-pixel-ratio: 2) {
	.listItem {
		width: 100%;
	}

	.header .title {
		padding-bottom: 30px;
	}

	.header .title .logo {
		padding-top: 30px;
	}

	.sns {
		display: none;
	}
}

.sectionRelated {
	position: relative;
	width: 100%;
	margin-top: 50px;
}

.sectionRelated .titRelated {
	font-weight: normal;
	font-size: 11px;
	color: #666;
}

.listRelated {
	overflow: hidden;
	margin-top: 15px;
}

.listRelated li {
	position: relative;
	float: left;
	width: 25%;
	padding-left: 1px;
	box-sizing: border-box;
}

.listRelated li:first-child {
	padding-left: 0;
}

.listRelated .linkRelated {
	display: block;
	overflow: hidden;
	position: relative;
	width: 100%;
	height: 200px;
	margin: 0 auto;
	border: 1px solid #E8E8E8;
	background: #F5F5F5;
	font-size: 13px;
	box-sizing: border-box;
	text-align: center;
	color: #FFF;
}

.listRelated .thumb_type .linkRelated {
	width: 100%;
	height: 200px;
	border: 0 none;
}

.listRelated .frameRelated {
	display: none;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #000;
	opacity: .4;
	filter: alpha(Opacity=40);
	-webkit-transition: all .2s cubic-bezier(.25, .46, .45, .94);
	transition: all .2s cubic-bezier(.25, .46, .45, .94);
	box-sizing: border-box;
}

.linkRelated:hover .frameRelated {
	opacity: .65;
	filter: alpha(Opacity=65);
	border: 4px solid #DDD;
}

.thumb_type .frameRelated {
	display: block;
}

.listRelated .thumbRelated img {
	width: 100%;
	height: auto;
}

.listRelated .thumbRelated {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.listRelated .txtRelated {
	display: block;
	display: -webkit-box;
	overflow: hidden;
	position: relative;
	left: 0;
	top: 0;
	z-index: 10;
	max-height: 80px;
	padding: 27px 20px 0;
	color: #5C5C5C;
	text-overflow: ellipsis;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	word-wrap: break-word;
}

.listRelated .linkRelated:hover .txtRelated {
	text-decoration: underline;
}

.listRelated .dateRelated {
	position: absolute;
	left: 0;
	bottom: 20px;
	z-index: 10;
	width: 100%;
	color: #A7A7A7;
}

.listRelated .thumb_type .txtRelated {
	color: #FFF;
}

.listRelated .thumb_type .dateRelated {
	color: #FFF;
	opacity: .7;
}

.sectionRelated .linkMore {
	position: absolute;
	right: 0;
	top: 0;
	font-size: 12px;
	color: #A7A7A7;
	border-bottom: 1px solid #A7A7A7;
	text-decoration: none;
}

@media only screen and (max-width: 738px) {
	.listItem .section_title {
		opacity: 1;
	}

	.sectionRelated {
		width: 100%;
		margin-top: 30px;
	}

	.sectionRelated .titRelated {
		display: block;
		padding: 0 20px;
		font-size: 14px;
	}

	.listRelated {
		padding: 0 20px;
		margin-top: 1px;
	}

	.listRelated li {
		width: 50%;
		margin: 0;
		padding: 1px;
		box-sizing: border-box;
	}

	.listRelated li:first-child {
		padding: 1px;
	}

	.listRelated .linkRelated {
		width: 100%;
		height: 100%;
		min-height: 150px;
	}

	.listRelated .thumb_type .linkRelated {
		width: 100%;
		height: 100%;
		min-height: 150px;
	}

	.listRelated .thumbRelated .imgRelated {
		width: 100%;
	}

	.listRelated .txtRelated {
		padding: 18px 10px 0;
		font-size: 14px;
		line-height: 17px;
	}

	.listRelated .dateRelated {
		font-size: 13px;
		bottom: 14px;
	}

	.listRelated .txtRelated {
		color: #222;
	}

	.listRelated .txtRelated, .listRelated .dateRelated {
	}

	#tt-body-page .area_reply {
		margin-top: 35px;
	}

	.sectionRelated .linkMore {
		right: 20px;
		top: 0;
	}

	.guestWrap {
		margin: 0 20px;
	}
}

@media only screen and (min-width: 738px) and (max-width: 1262px) {
	.sectionRelated {
		width: 100%;
		margin-top: 54px;
		box-sizing: border-box;
		padding: 20px;
	}

	.listRelated {
	}

	.listRelated li {
		width: 25%;
		margin-right: 0;
		box-sizing: border-box;
	}

	.listRelated .linkRelated {
		width: 100%;
		max-width: 183px;
	}

	.listRelated .thumb_type .linkRelated {
		width: 100%;
		max-width: 185px;
	}

	.sectionRelated .linkMore {
		top: 12px;
		right: 20px;
	}
}
