@charset "utf-8";

::-webkit-scrollbar              { width: 5px; height: 5px; }
::-webkit-scrollbar-track        { background: transparent; }
::-webkit-scrollbar-thumb        { background: #444; }
::-webkit-scrollbar-thumb:hover  { background: #666; }
::-webkit-scrollbar-thumb:active { background: #0bb; }

::selection { color: #eee; background: #111; }

@keyframes noah_fadeIn         { from { opacity: 0; } to { opacity: 1; } }
@-webkit-keyframes noah_fadeIn { from { opacity: 0; } to { opacity: 1; } }
@-moz-keyframes noah_fadeIn    { from { opacity: 0; } to { opacity: 1; } }

/* Type Selector Reset */
* { font-family: "Segoe UI", "Meiryo UI", "Malgun Gothic", "Apple SD Gothic Neo", "Sunflower"; }
*:focus { outline: none; }

html, body {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	font-size: 100%;
}

body {
	font-size: 1em;
	font-weight: 400;
	line-height: 1.25;
	overflow-x: hidden;
	overflow-y: overlay;
	color: #999;
	background: #111 url("./images/main_bg.jpg") fixed;
	animation: noah_fadeIn 1s; -webkit-animation: noah_fadeIn 1s; -moz-animation: noah_fadeIn 1s;
	-webkit-text-size-adjust: 100%;
	-ms-overflow-style: -ms-autohiding-scrollbar;
}

div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, span, pre, code, blockquote, form, input, textarea, table, th, td, p {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
header, footer, section, article, aside, nav, hgroup, details, menu, figure, figcaption {
	display: block;
	box-sizing: border-box;
}
button, input[type=button], input[type=submit], input[type=reset] {
	overflow: visible;
	cursor: pointer;
}
input[type=text], input[type=email], input[type=password], input[type=submit], textarea {
	-webkit-appearance: none;
}
input, select, textarea, button {
	font-size: 100%;
	border-radius: 0;
}
button {
	margin: 0;
	padding: 0;
	background: transparent;
	border: 0;
	overflow: visible;
}
ul li {
	list-style: none;
}
img {
	border: 0;
	vertical-align: top;
}
a, a:link, a:visited, a:hover, a:active {
	color: #0bb;
	text-decoration: none;
}

/* Accessibility Navigation */
#acc-nav {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 0;
}
#acc-nav a {
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 1px;
	height: 1px;
	margin: 0 0 -1px -1px;
	font-size: .875em;
	font-weight: bold;
	white-space: nowrap;
	text-align: center;
	overflow: hidden;
}
#acc-nav a:hover, #acc-nav a:focus, #acc-nav a:active {
	z-index: 1000;
	width: 100%;
	height: auto;
	padding: 12px 0;
	color: #f00;
	background: rgba(16,16,16,.5);
	letter-spacing: 3px;
}

/* Layout Selector */
#post-progress {
	position: fixed;
	z-index: 255;
	top: 0;
	left: 0;
	width: 0;
	height: 3px;
	background: #0bb;
	transition: width .2s ease; -webkit-transition: width .2s ease; -moz-transition: width .2s ease;
}

#header {
	border-bottom: 1px solid transparent;
	box-shadow: 0 0 8px #000;
	cursor: default;
}
#header .inner {
	position: relative;
	max-width: 1080px;
	margin: 0 auto;
}
#header h1 {
	padding: 25px 0 5px;
	font-size: 1.75em;
	font-weight: 800;
	line-height: 1.15;
	text-shadow: 0 2px 4px #000;
}
#header h1 a {
	display: inline-block;
	height: 32px;
	vertical-align: top;
	color: #fff;
}
#header h1 img {
	width: auto;
	height: 32px;
}
#header .desc {
	display: inline-block;
	width: 72%;
	max-width: 740px;
	margin-bottom: 13px;
	font-size: 0.75em;
	color: #666;
	text-shadow: 1px 1px #000;
}

#header .util {
	position: absolute;
	top: 24px;
	right: 0;
}
#header .util .search {
	position: relative;
	float: left;
	width: 32px;
	overflow: hidden;
	transition: width .5s; -webkit-transition: width .5s; -moz-transition: width .5s;
}
#header .util .search:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	z-index: 20;
	width: 32px;
	height: 32px;
	background: #333 url("./images/ico_package.png") no-repeat 0 0;
	border-radius: 50%;
	text-indent: -999em;
	vertical-align: top;
	cursor: pointer;
}
#header .util .search input {
	width: 32px;
	height: 32px;
	padding: 5px 15px;
	color: #333;
	background: transparent;
	border: 0;
	font-size: .875em;
	line-height: 1;
}
#header .util .search input::placeholder {
	color: #ccc;
	opacity: 1;
}
#header .util .search input:-ms-input-placeholder {
	color: #ccc;
}
#header .util .search button {
	position: absolute;
	top: 1px;
	right: 1px;
	z-index: 10;
	width: 30px;
	height: 30px;
	background: #fff url("./images/ico_package.png") no-repeat -1px -1px;
	border-radius: 50%;
	text-indent: -999em;
	vertical-align: top;
}
#header .util .search.on {
	width: 200px;
}
#header .util .search.on:before {
	content: none;
}
#header .util .search.on input {
	display: block;
	width: 100%;
	background: #fff;
	border-radius: 32px;
}

#header .util .profile {
	position: relative;
	z-index: 30;
	float: left;
	margin-left: 14px;
}
#header .util .profile button {
	display: block;
	overflow: hidden;
	width: 32px;
	height: 32px;
	border-radius: 50%;
}
#header .util .profile img {
	width: 100%;
	height: 100%;
}
#header .util .profile nav {
	display: none;
	position: absolute;
	top: 100%;
	z-index: 30;
	width: 80px;
	margin: 0 0 0 -35px;
	padding-top: 8px;
}
#header .util .profile ul {
	padding: 4px 0;
	background: #fff;
	box-shadow: 0 2px 6px #000;
}
#header .util .profile ul li a {
	display: block;
	color: #333;
	text-align: center;
	font-size: .75em;
	line-height: 1.7rem;
}
#header .util .profile ul li a:hover {
	color: #000;
	background: #f6f6f6;
}
#header .util .menu {
	display: none;
}

#gnb {
	display: none !important;
}

#container {
	position: relative;
}
#container .content-wrap {
	max-width: 1080px;
	margin: 0 auto;
	padding: 0;
}
#container .content-wrap:after {
	content: "";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}
#content {
	float: left;
	width: 740px;
	padding: 40px 0;
}
#content > .inner:after {
	content: "";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}

#aside {
	float: right;
	width: 230px;
	padding: 45px 0 32px;
}
#aside .aside-profile, #aside .font-select {
	display: none;
}
#aside .category_list {
	padding-top: 0 !important;
}
#aside .close, #aside .profile {
	display: none;
}

#footer {
	padding: 20px 0 17px;
	border-top: 1px solid transparent;
	box-shadow: 0 0 8px #000;
	cursor: default;
}
#footer .inner {
	position: relative;
	max-width: 1080px;
	margin: 0 auto;
}
#footer p {
	margin-bottom: 9px;
	color: #777;
	font-size: .875em;
}
#footer p.meta {
	font-weight: bold;
}
#footer p.copyright {
	font-size: .6em;
}
#footer .page-top {
	position: absolute;
	top: 0;
	right: 0;
	width: 32px;
	height: 32px;
	background: #333 url("./images/ico_package.png") no-repeat -150px -200px;
	border-radius: 50%;
	text-indent: -999em;
	cursor: pointer;
}

#tt-body-index .main-slider {
	display: block;
}
#tt-body-index #content {
	padding-bottom: 43px;
}
#tt-body-index .post-cover.notice {
	height: auto;
	background: none !important;
}
#tt-body-index .post-cover.notice:before {
	height: auto;
	background: transparent !important;
}
#tt-body-index .post-cover.notice .inner {
	padding-bottom: 0;
}
#tt-body-index .post-cover.notice .category {
	display: none !important;
}
#tt-body-index .post-cover.notice h1 {
	margin: 0;
	font-size: 1.25em;
	line-height: 1.5;
	text-shadow: 0 0 10px #000;
}
#tt-body-index .post-cover.notice h1 a {
	color: #0bb;
}
#tt-body-index .post-cover.notice .meta {
	margin: 5px 0 10px;
	padding-bottom: 15px;
	color: #666;
	border-bottom: 1px dashed #333;
}
#tt-body-index .entry-content {
	margin-bottom: 50px;
	font-size: .9em;
}
#tt-body-index .entry-content p {
	margin-top: 0;
	margin-bottom: 0;
}
#tt-body-index .pagination, #tt-body-category .pagination {
	margin-top: 40px;
}
#tt-body-page #container {
	padding-top: 240px;
}
#tt-body-page.post-cover-hide #container {
	padding-top: 0;
}
#tt-body-page .post-cover {
	position: absolute;
	top: -1px;
	left: 0;
	width: 100%;
	box-shadow: 0px 6px 6px -6px #000 inset, 0px -6px 6px -6px #000 inset;
}
#tt-body-tag .tags {
	margin-top: 0;
}

/* Components */
.btn, a.btn {
	display: inline-block;
	width: 100px;
	height: 36px;
	color: #fff;
	background: #333;
	font-weight: 400;
	font-size: 14px;
	line-height: 36px;
	text-align: center;
	vertical-align: middle;
}
.btn:hover {
	background: #0bb;
}

.post-cover {
	display: table;
	position: relative;
	z-index: 20;
	width: 100%;
	height: 240px;
	background: #111 url('./images/bg_head.jpg') 50% 50% / cover;
	cursor: default;
}
.post-cover:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.7);
}
.post-cover .inner {
	display: table-cell;
	position: relative;
	z-index: 10;
	padding-bottom: 30px;
	vertical-align: bottom;
}
.post-cover .category {
	display: block;
	max-width: 1080px;
	margin: 0 auto 13px;
	font-size: .875em;
	text-shadow: 0 0 6px #000;
}
.post-cover h1 {
	max-width: 1080px;
	margin: 0 auto;
	font-size: 2.125em;
	font-weight: 300;
	line-height: 1.2352;
	text-shadow: 0 0 10px #0bb;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
.post-cover .category, .post-cover h1, .post-cover a {
	color: #fff;
}
.post-cover .meta {
	display: block;
	max-width: 1080px;
	margin: 34px auto 0;
	color: rgba(255,255,255,.65);
	font-size: .875em;
	text-shadow: 0 0 6px #000;
}
.post-cover .meta a {
	color: rgba(255,255,255,.65);
	cursor: pointer;
}
.post-cover .meta a:before, .post-cover .meta span:before {
	content: "";
	display: inline-block;
	width: 3px;
	height: 3px;
	margin: 0 12px 0 6px;
	background: rgba(255,255,255,.5);
	vertical-align: middle;
}
.post-cover .meta span:first-child:before {
	content: none;
}

.post-header {
	padding-top: 4px;
	cursor: default;
}
.post-header h1 {
	margin-bottom: 18px;
	font-size: 1em;
	line-height: 1.375;
}
#tt-body-archive .post-header span:before {
	content: "'";
}
#tt-body-archive .post-header span:after {
	content: "' 에 등록된 글";
}
#tt-body-tag .post-header span:before {
	content: "#";
}
#tt-body-search .post-header span:before {
	content: "'";
}
#tt-body-search .post-header span:after {
	content: "'의 검색결과";
}

.post-header h1 em {
	margin-left: 7px;
	color: #0bb;
	font-style: normal;
}

.post-item {
	float: left;
	width: 31%;
	margin-bottom: 30px;
}
.post-item:nth-child(3n+1) {
	clear: both;
}
.post-item:nth-child(3n+2) {
	margin-left: 3.5%;
	margin-right: 3.5%;
}
.post-item a {
	display: block;
}
.post-item a:hover > .title {
	color: #0bb;
}
.post-item .thum {
	display: block;
	position: relative;
	width: 100%;
	height: 0;
	margin-bottom: 5px;
	padding-bottom: 60.869565217391304%;
	overflow: hidden;
}
.post-item .title {
	display: block;
	max-width: 100%;
	margin-bottom: 4px;
	padding-top: 9px;
	line-height: 1.4;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}
.post-item .excerpt {
	display: block;
	margin-bottom: 15px;
	color: #666;
	font-size: .75em;
	line-height: 1.25rem;
	text-overflow: ellipsis;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}
.post-item .meta {
	display: block;
	color: #999;
	font-size: .75em;
}
.post-item .meta span:before {
	content: "";
	display: inline-block;
	width: 2px;
	height: 2px;
	margin: 0 8px 0 5px;
	background: #999;
	vertical-align: middle;
}
.post-item .meta span:first-child:before {
	content: none;
}
.post-item.protected .thum {
	background: rgba(50,50,50,.5);
}
.post-item.protected .thum:after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 34px;
	height: 47px;
	margin: -24px 0 0 -17px;
	background: rgba(50,50,50,.5) url("./images/ico_package.png") no-repeat 0 -120px / 120px auto;
}

.not-found {
	display: block;
	width: 100%;
	margin-bottom: 35px;
	cursor: default;
}
.not-found li {
	position: relative;
	padding-left: 10px;
	color: #999;
	font-size: .9375em;
	line-height: 2;
}
.not-found li:before {
	content: "";
	position: absolute;
	top: 15px;
	left: 0;
	width: 2px;
	height: 2px;
	background: #999;
}
.not-found .tag, .not-found .category, .not-found .archive {
	display: none;
}

#tt-body-tag .not-found ul, #tt-body-category .not-found ul, #tt-body-archive .not-found ul {
	display: none;
}
#tt-body-tag .not-found .tag, #tt-body-category .not-found .category, #tt-body-archive .not-found .archive {
	display: block;
}

.pagination {
	margin-bottom: 60px;
	text-align: center;
	cursor: default;
}
.pagination a {
	display: inline-block;
	margin: 0 8px;
	padding: 0 2px;
	color: #999;
	font-size: .875em;
	line-height: 1.5rem;
	vertical-align: top;
}
.pagination .selected {
	color: #555;
}
.pagination .prev, .pagination .next {
	width: 22px;
	height: 22px;
	margin: 0 12px;
	padding: 0 !important;
	background: #333 url("./images/ico_package.png") no-repeat 0 -74px;
	border: 1px solid transparent;
	border-radius: 50%;
	text-indent: -999em;
}
.pagination .prev {
	background-position-x: 0;
}
.pagination .next {
	background-position-x: -50px;
}
.pagination .prev.no-more-prev, .pagination .next.no-more-next {
	background-position-y: -50px;
}
.pagination .view-more {
	display: block;
	margin: 0;
	padding: 12px 0 11px;
	color: #999;
	background: #111;
	font-size: .875em;
	border: 1px solid #000;
	text-align: center;
}
.pagination.mobile {
	display: none;
}

.tags {
	margin: 47px 0 35px;
	font-size: 0;
}
.tags:after {
	content: "";
	clear: both;
	display: block;
	height: 0;
	visibility: hidden;
}
.tags h2 {
	margin-bottom: 15px;
	cursor: default;
	font-weight: 600;
	font-size: 16px;
}
.tags a {
	display: inline-block;
	margin: 0 8px 12px 0;
	padding: 0 12px;
	color: #999;
	background: #333;
	border-radius: 16px;
	font-size: .75rem;
	line-height: 1.9rem;
	vertical-align: middle;
}
.tags a:before {
	content: "#";
}
.tags a:hover {
	color: #fff;
	background: #666;
}

.page-nav {
	margin: 52px 0 60px 0;
	padding: 23px 0 20px;
	border-top: 1px solid #eee;
	border-bottom: 1px solid #eee;
}
.page-nav a {
	display: block;
	padding-left: 58px;
	color: #555;
	font-size: .875em;
	line-height: 2.125rem;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}
.page-nav a:hover {
	color: #333;
}
.page-nav a strong {
	float: left;
	width: 58px;
	margin-left: -58px;
	color: #999;
	font-weight: 400;
}
.page-nav a strong:after {
	content: "";
	display: inline-block;
	width: 1px;
	height: 5px;
	margin: 0 8px;
	background: url("./images/ico_package.png") no-repeat -150px -50px;
	vertical-align: middle;
}

.post-articles {
	margin-bottom: 22px;
}
.post-articles h2 {
	margin-bottom: 15px;
	font-size: 1em;
	font-weight: 600;
	cursor: default;
}
.post-articles .tab-list ul {
	display: inline-block;
	margin: 0 -8px 0;
	width: calc(100% + 16px);
	vertical-align: top;
}
.post-articles .tab-list ul li {
	float: left;
	padding: 0 8px;
	width: 25%;
	color: #999;
}
.post-articles .tab-list ul li:nth-of-type(n+5) {
	display: none;
}
.post-articles .tab-list ul li a:hover > figure img {
	filter: brightness(0.25);
}
.post-articles .tab-list ul li figure {
	width: 100%;
	height: 0;
	margin: 0;
	padding-bottom: 66.5%;
}
.post-articles .tab-list ul li figure img {
	width: 100%;
	height: auto;
}
.post-articles .tab-list ul li .title {
	display: block;
	position: relative;
	top: -25px;
	width: 100%;
	max-width: 100%;
	height: 25px;
	padding: 5px;
	color: #eee;
	background: rgba(0,0,0,.5);
	font-size: .75em;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}
.post-articles .tab-list ul li .date {
	display: none;
}
/* Entry Content */
.entry-content {
	font-size: .9375em;
}
.entry-content h1 {
	clear: both;
	margin: 29px 0 22px;
	font-size: 1.6875em;
	line-height: 1.5;
}
.entry-content h2 {
	clear: both;
	margin: 29px 0 22px;
	font-size: 1.5em;
	line-height: 1.5;
}
.entry-content h3 {
	clear: both;
	margin: 29px 0 22px;
	font-size: 1.3125em;
	line-height: 1.5;
}
.entry-content h4 {
	clear: both;
	margin: 29px 0 22px;
	font-size: 1.125em;
	font-weight: 400;
	line-height: 1.5;
}
.entry-content a.bc {
	border-bottom: 4px dotted #0bb;
}
.entry-content p {
	font-size: .9375em;
	line-height: 2;
	word-break: break-all;
	cursor: default;
}
.entry-content p img {
	max-width: 100%;
	height: auto;
}
.entry-content figure.imageblock {
	margin-top: 6px;
}
.entry-content figure.imageblock img {
	background: #fff;
	border: 5px solid #fff;
	box-sizing: border-box;
}
.entry-content figure.audioblock {
	text-align: center;
}
.entry-content figure.audioblock audio {
	width: 60%;
	min-width: 250px;
	height: 30px;
	background: #f1f3f4;
	box-shadow: 0 0 6px #000;
}
.entry-content figure.fileblock {
	width: 80% !important;
	max-width: 500px !important;
	margin: 25px auto 35px !important;
	background: #fff;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: 0 0 12px #0bb;
}
.entry-content iframe[data-ke-type="map"] {
	margin: 15px auto !important;
	border-radius: 10px;
}
.entry-content figure[data-ke-type="video"] figcaption {
	padding-top: 0 !important;
	letter-spacing: initial !important;
	line-height: 1.25 !important;
}
.entry-content figure[data-ke-type="opengraph"] {
	width: 80% !important;
	max-width: 620px !important;
	margin: 20px auto 40px !important;
}
.entry-content figure[data-ke-type="opengraph"] a {
	height: 90px !important;
	background: #fff;
	border: 1px solid #333 !important;
}
.entry-content figure[data-ke-type="opengraph"] .og-image {
	width: 90px !important;
}
.entry-content figure[data-ke-type="opengraph"] .og-text {
	left: 90px !important;
	padding: 10px !important;
}
.entry-content figure[data-ke-type="opengraph"] .og-text p {
	font-family: inherite !important;
	cursor: pointer;
}
.entry-content figure[data-ke-type="opengraph"] .og-text .og-title {
	max-width: none !important;
	font-weight: 600;
}
.entry-content figure[data-ke-type="opengraph"] .og-text .og-desc {
	margin-top: -5px !important;
	color: #aaa !important;
	font-size: 0.8em !important;
	white-space: nowrap;
	-webkit-line-clamp: 1 !important;
}
.entry-content figure[data-ke-type="opengraph"] .og-text .og-host {
	position: static !important;
	margin-top: -2px !important;
	color: #33f !important;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}
.entry-content figure figcaption {
	color: #777 !important;
	font-size: .8em !important;
	cursor: default;
}
.entry-content hr {
	display: block;
	height: 0;
	margin: 30px 10px;
	border: 0;
	border-bottom: 1px solid #333;
}
.entry-content pre {
	font-size: .9em;
	margin: 10px 0;
	padding: 10px 16px;
	color: #ccc;
	background: #333;
	border-left: 4px solid #f33;
	word-break: break-all;
	word-wrap: break-word;
	white-space: pre-wrap;
}
.entry-content pre code {
	width: 720px;
	background: transparent;
	font-family: monospace;
	font-size: 1.05em;
	letter-spacing: 1px;
	white-space: pre;
	tab-size: 4;
}
.entry-content ul {
	list-style: disc inside;
}
.entry-content ol {
	list-style: decimal inside;
}
.entry-content ul li, .entry-content ol li {
	position: relative;
	margin-bottom: 4px;
	padding-left: 30px;
	font-size: .9375em;
	line-height: 1.5714;
	list-style: inherit;
}
.entry-content img.alignleft {
	float: left;
	margin: 0 22px 22px 0;
}
.entry-content img.aligncenter {
	display: block;
	margin: 0 auto 22px;
}
.entry-content img.alignright {
	float: right;
	margin: 0 0 22px 22px;
}
.entry-content blockquote {
	margin-bottom: 40px;
	padding: 16px 20px;
	border-left: 4px solid #e6e6e6;
}
.entry-content blockquote p {
	margin: 22px 0 0;
}
.entry-content blockquote p:first-child {
	margin-top: 0;
}
.entry-content fieldset {
	margin: 16px 0;
	padding: 6px 18px 10px;
	color: #ccc;
	background: #333;
	border: 1px solid #444;
	font-size: .9em;
	letter-spacing: 1px;
	cursor: default;
}
.entry-content legend {
	padding: 8px 12px;
	color: #fff;
	background: #36c;
	font-weight: bold;
	box-shadow: 0 0 6px #000;
}
.entry-content table {
	width: 100%;
	margin: 20px 0;
	background: #333;
	border: 1px solid #444;
	border-collapse: collapse;
	cursor: default;
}
.entry-content table tbody td {
	padding: 10px 16px;
	color: #ccc;
	font-size: .9em;
	line-height: 1.5rem;
}
.entry-content input {
	height: 36px;
	padding: 0 10px;
	color: #666;
	border: 1px solid #333;
	font-size: .875em;
	line-height: 1.25;
	vertical-align: middle;
}

.entry-content.notice {
	padding-bottom: 60px;
}
.entry-content .entry-content .protected_form {
	margin-bottom: 40px;
	padding: 120px 0 200px;
	border-bottom: 1px solid #7a583a;
	text-align: center;
}
.entry-content .entry-content .protected_form input {
	width: 200px;
	margin-bottom: 10px;
	vertical-align: top;
}
.entry-content .cap1 {
	font-size: .875em;
	font-style: italic;
	text-align: center;
}
.entry-content .iframe-wrap {
	position: relative;
	height: 0;
	padding-bottom: 56.25%;
}
.entry-content .iframe-wrap iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.entry-content .protected_form {
	display: block;
	width: 100%;
	padding: 98px 0 120px;
	text-align: center;
}
.entry-content .protected_form h2 {
	margin: 0 0 8px;
	color: #444;
	font-size: 1.625em;
	font-weight: 600;
	line-height: 2.125rem;
}
.entry-content .protected_form p {
	margin-bottom: 34px;
	color: #999;
	font-size: 1em;
	font-weight: 300;
	line-height: 1.75;
}
.entry-content .protected_form input {
	width: 180px;
	padding: 0 23px;
	color: #000;
	background: #ddd;
	border: 1px solid #ddd;
	font-size: .9125em;
	line-height: 2.125rem;
}
.entry-content .protected_form .btn {
	margin-left: 5px;
}
.entry-content div .btn-toggle-moreless {
	display: inline-block;
	margin: 20px;
	padding: 5px 20px 5px 10px;
	color: #fff !important;
	background: rgba(0,0,0,.3);
	border-left: 4px solid #0bb;
	border-bottom: 0;
	font-family: inherit !important;
	font-size: .875em !important;
	letter-spacing: 1px;
	box-shadow: 0 0 6px #000;
	transition: background .3s ease-out; -webkit-transition: background .3s ease-out; -moz-transition: background .3s ease-out;
}
.entry-content div .btn-toggle-moreless:before {
	content: "➕";
	margin-right: 5px;
}
.entry-content div.open .btn-toggle-moreless {
	margin-bottom: 0;
	background: #0bb;
	border-left: 4px solid #0bb;
}
.entry-content div.open .btn-toggle-moreless:before {
	content: "➖";
}
.entry-content div .moreless-content {
	width: 100%;
	margin: -16px 0 21px;
	padding: 22px 16px 14px;
	color: #eee;
	background: rgba(0,0,0,.25);
	border-left: 4px solid #0bb;
	font-size: .9em;
	letter-spacing: 1px;
}

/* Comment */
.comments {
	margin-bottom: 60px;
}
.comments h2 {
	margin-bottom: 15px;
	font-weight: 600;
	font-size: 1em;
	cursor: default;
}
.comments h2 .count{
	margin-left: 4px;
	color: #0bb;
}
.comment-list {
	margin-bottom: 60px;
	border-top: 1px solid #333;
}
.comment-list ul li {
	display: inline-block;
	width: 100%;
	padding: 32px 0 28px;
	border-bottom: 1px solid #333;
	vertical-align: top;
}
.comment-list .tt_more_preview_comments_wrap {
	padding: 0;
	border: 0;
}
.comment-list .tt_more_preview_comments_text {
	display: block;
	margin: -1px 0 0;
	padding: 28px 0 12px;
	color: #0bb;
	background: url("data:image/gif;base64,R0lGODlhDgAIAIABAP///////yH5BAEAAAEALAAAAAAOAAgAAAIVjA9wu5nc3IPO1KjQDBfzzUgZZAEFADs=") no-repeat 50% 30%;
	border-top: 0;
	border-bottom: 1px solid #333;
	font-size: .875em;
	text-align: center;
}
.comment-list .tt_more_preview_comments_text:active {
	box-shadow: 0 0 6px #000 inset;
}
.comment-list .tistoryProfileLayerTrigger {
	display: none;
}
.comment-list ul li .author-meta {
	position: relative;
	margin-bottom: 7px;
	padding: 2px 0 0 60px;
	color: #999;
	font-size: .8125em;
	cursor: default;
}
.comment-list ul li .author-meta .nickname {
	color: #ddd;
	font-weight: normal;
}
.comment-list ul li .author-meta .nickname a {
	color: #ddd;
	font-weight: bold;
}
.comment-list ul li .author-meta .avatar {
	float: left;
	width: 46px;
	margin: -2px 0 0 -60px;
	border: 1px solid #333;
	border-radius: 50%;
}
.comment-list ul li .author-meta .date {
	font-size: .85em;
}
.comment-list ul li .author-meta .date:before {
	content: "";
	display: inline-block;
	width: 2px;
	height: 2px;
	margin: 0 7px 0 3px;
	background: #e3e3e3;
	vertical-align: middle;
}
.comment-list ul li .author-meta .date a {
	display: none;
}
.comment-list ul li .author-meta .control {
	position: absolute;
	top: 0;
	right: 15px;
	border-bottom: 0;
}
.comment-list ul li .author-meta .control button {
	content: "";
	display: block;
	width: 20px;
	height: 20px;
	background: url("./images/ico_package.png") no-repeat -141px 5px;
	text-indent: -999em;
}
.comment-list ul li .author-meta .control .link {
	display: none;
	position: absolute;
	top: 100%;
	left: -98px;
	width: 110px;
	background: #fff;
	border-top: 8px solid #fff;
	border-bottom: 10px solid #fff;
	box-shadow: 0 2px 6px #000;
}
.comment-list ul li .author-meta .control .link a {
	display: block;
	padding-left: 15px;
	color: #333;
	font-size: .9em;
	line-height: 1.8rem;
}
.comment-list ul li .author-meta .control .link a:hover {
	color: #000;
	background: #f6f6f6;
}
.comment-list ul li p {
	max-width: 85%;
	padding: 0 0 0 60px;
	font-size: .8em;
	line-height: 1.3125rem;
	word-break: break-all;
	cursor: default;
}
.comment-list ul li .reply {
	display: inline-block;
	margin-top: 12px;
	padding: 2px 14px;
	color: #333;
	background: #fff;
	background: linear-gradient(#fff, #ddd);
	border-radius: 3px;
	font-size: .8125rem;
	font-weight: 400;
	box-shadow: 0 0 8px #000;
}
.comment-list ul li .reply:hover {
	color: #000;
	box-shadow: 0 0 6px #0bb;
}

.comment-list ul li ul {
	margin: 28px 0 -32px 0;
	padding: 10px 0;
	background: #333;
	border-top: 1px solid #333;
}
.comment-list ul li ul li {
	padding: 10px 0 10px 60px;
	border-bottom: 0;
}
.comment-list ul li ul li .author-meta {
	margin-bottom: 8px;
}
.comment-list ul li ul li .author-meta .control {
	right: 15px;
}
.comment-list ul li ul li .author-meta .avatar {
	width: 42px;
}
.comment-list ul li ul li p {
	max-width: 90%;
}
.comment-list ul li ul .tt_more_preview_comments_wrap {
	display: block;
}
.comment-list ul li ul .tt_more_preview_comments_text {
	margin-bottom: 16px;
	border-top: 0;
	border-right: 0;
	border-left: 0;
}
.comment-list ul li ul .tt_more_preview_comments_text:first-child {
	margin-top: -24px;
	padding: 12px 0 11px;
}
.comment-list li.rp_secret .author-meta .nickname:after, .comment-list li.guest_secret .author-meta .nickname:after {
	content: "🔒";
	margin-left: 5px;
}
.comment-list li.rp_admin .author-meta .nickname a {
	color: #fa0
}

.comment-form {
	position: relative;
	margin-bottom: 60px;
}
.comment-form .field {
	overflow: hidden;
	margin-bottom: -1px;
	border: 1px solid #333;
}
.comment-form .field input[type=text], .comment-form .field input[type=password] {
	float: left;
	width: 50%;
	padding: 12px 16px;
	color: #fff;
	background: #333;
	border: 0;
	border-left: 1px solid #222;
	border-bottom: 1px solid #222;
	font-size: .875em;
}
.comment-form .field input:first-child {
	border-left: 0;
}
.comment-form textarea {
	display: block;
	width: 100%;
	margin-bottom: 10px;
	padding: 16px 100px 16px 16px;
	color: #fff;
	background: #333;
	border: 1px solid #333;
	font-size: .875em;
	resize: none;
}
.comment-form input::-webkit-input-placeholder, .comment-form textarea::-webkit-input-placeholder {
	color: #999;
}
.comment-form .secret {
	position: absolute;
	bottom: 15px;
	margin: 15px 2px 0;
	user-select: none; -wekit-user-select: none; -moz-user-select: none;
}
.comment-form .secret label {
	display: block;
	overflow: hidden;
	width: 25px;
	height: 6px;
	padding: 0;
	background: #666;
	border-radius: 3px;
	font-size: 0;
	cursor: pointer;
}
.comment-form .secret label:before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	right: 17px;
	bottom: 0;
	margin: -5px;
	width: 15px;
	height: 15px;
	background: #fff;
	border-radius: 50%;
	transition: right .1s ease-in; -webkit-transition: right .1s ease-in; -moz-transition: right .1s ease-in;
}
.comment-form .secret label:after {
	content: "비밀글";
	position: absolute;
	top: 0;
	right: -55px;
	color: #666;
	font-size: 0.9rem;
	line-height: 5px;
}
.comment-form .secret input {
	display: none;
}
.comment-form .secret input:checked + label {
	background: #0bb;
}
.comment-form .secret input:checked + label:before {
	right: 3px;
	background: #fff;
	box-shadow: 0 0 10px #0bb;
}
.comment-form .secret input:checked + label:after {
	color: #fff;
}
.comment-form .submit {
	text-align: right;
}
.comment-form .submit button:hover {
	background: #0bb;
}

/* Aside(sidebar) */
.sidebar h2 {
	margin-bottom: 7px;
	color: #999;
	font-size: .875em;
	cursor: default;
}
.sidebar ul li {
	padding: 4px 0 5px;
	font-size: .8125em;
	line-height: 1.25rem;
}
.sidebar ul li a {
	color: #999;
}
.sidebar ul li a:hover {
	color: #0bb;
}
.sidebar .sidebar-2 {
	margin-top: 38px;
	padding-top: 46px;
	border-top: 1px solid #333;
}

.sidebar .category {
	margin: -6px 0 36px;
}
.sidebar .category ul li {
	padding: 0;
	font-size: .875em;
}
.sidebar .category ul li a {
	color: #999;
	font-weight: bold;
	letter-spacing: 1px;
}
.sidebar .category ul li a:hover {
	color: #0bb;
}
.sidebar .category ul li a.link_tit {
	display: none;
	color: inherit;
	cursor: default;
}
.sidebar .category ul li a .c_cnt {
	color: #555;
	font-size: .7em;
	font-weight: 400;
	vertical-align: top;
}
.sidebar .category ul li ul {
	padding-top: 8px;
}
.sidebar .category ul li ul li {
	padding: 6px 0 7px;
	font-weight: 400;
	font-size: 1em;
}
.sidebar .category ul li ul li ul {
	margin-bottom: -4px;
	padding: 5px 0 0 5px;
	overflow: hidden;
}
.sidebar .category ul li ul li ul li {
	position: relative;
	padding: 3px 0 3px 16px;
	font-size: .75rem;
}
.sidebar .category ul li ul li ul li:before {
	content: "";
	position: absolute;
	bottom: 7px;
	left: 0;
	width: 2px;
	height: 100%;
	background: #333;
}
.sidebar .category ul li ul li ul li:first-child:before {
	top: 7px;
	bottom: auto;
}
.sidebar .category ul li ul li ul li a {
	color: #666;
	font-weight: normal;
}
.sidebar .notice {
	margin-bottom: 37px;
}
.sidebar .notice ul li a {
	color: #666;
}
.sidebar .recent-comment {
	margin-bottom: 36px;
}
.sidebar .recent-comment ul li a {
	display: block;
	color: #666;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}
.sidebar .notice ul li, .sidebar .recent-comment ul li {
	font-size: .75em;
}
.sidebar .post-list {
	margin-bottom: 46px;
}
.sidebar .post-list h2 {
	margin-bottom: 12px;
}
.sidebar .post-list ul li {
	margin-bottom: 18px;
	padding: 0;
	overflow: hidden;
}
.sidebar .post-list ul li:nth-of-type(n+4) {
	display: none;
}
.sidebar .post-list ul li img {
	float: right;
	width: 50px;
	height: auto;
	margin: 2px 0 0 15px;
}
.sidebar .post-list ul li a {
	display: block;
	overflow: hidden;
}
.sidebar .post-list ul li .title {
	display: block;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}
.sidebar .post-list ul li .date {
	display: block;
	margin-top: 6px;
	color: #666;
	font-size: .7rem;
	line-height: 1;
}
.sidebar .archive {
	margin-bottom: 40px;
	padding-top: 46px;
	border-top: 1px solid #333;
}
.sidebar .archive h2 {
	margin-bottom: 6px;
}
.sidebar .archive ul li {
	padding: 2px 8px;
	letter-spacing: 1px;
	cursor: default;
}
.sidebar .archive ul li:before {
	content: "";
	display: inline-block;
	width: 3px;
	height: 3px;
	margin: 0 10px 0 5px;
	background: #999;
	vertical-align: middle;
}
.sidebar .archive ul li span {
	color: #666;
	font-size: 0.7em;
}
.sidebar .social-list {
	margin-bottom: 46px;
}
.sidebar .social-list h2 {
	margin-bottom: 18px;
}
.sidebar .social-list .tab-list {
	width: 100%;
	overflow: hidden;
}
.sidebar .social-list ul li {
	margin-bottom: 15px;
	padding: 0 0 0 48px;
}
.sidebar .social-list ul li a {
	display: block;
}
.sidebar .social-list ul li .avatar {
	float: left;
	width: 40px;
	height: 40px;
	margin-left: -48px;
	border-radius: 50%;
	overflow: hidden;
}
.sidebar .social-list ul li .title {
	display: block;
}
.sidebar .social-list ul li .date {
	display: block;
	margin-top: 6px;
	color: #666;
	font-size: .75rem;
}
.sidebar .social-channel {
	margin-bottom: 48px;
}
.sidebar .social-channel ul {
	width: 100%;
	overflow: hidden;
}
.sidebar .social-channel ul li {
	float: left;
	margin-left: 10px;
	padding: 0;
}
.sidebar .social-channel ul li:first-child {
	margin-left: 0;
}
.sidebar .social-channel ul li a {
	display: block;
	width: 34px;
	height: 34px;
	background: url("./images/ico_package.png") no-repeat 0 -100px;
	border: 1px solid #333;
	border-radius: 50%;
	text-indent: -999em;
}
.sidebar .social-channel ul li.youtube a {
	background-position-x: -50px;
}
.sidebar .social-channel ul li.instagram a {
	background-position-x: -100px;
}
.sidebar .social-channel ul li.twitter a {
	background-position-x: -150px;
}
.sidebar .social-channel ul li a:hover {
	background: #666;
	background-position-y: -150px;
}
.sidebar .count {
	margin-bottom: 46px;
	cursor: default;
}
.sidebar .count h2 {
	margin-bottom: 3px;
}
.sidebar .count h2:before {
	content: "";
	display: block;
	width: 18px;
	height: 1px;
	margin-bottom: 18px;
	background: #333;
}
.sidebar .count p {
	margin-bottom: 6px;
	color: #666;
	font-size: .7em;
}
.sidebar .count .total {
	margin-bottom: 12px;
	color: #999;
	font-size: 1.875em;
	font-weight: 700;
	letter-spacing: 1px;
}
#aside .tags {
	margin: 0 0 41px;
	padding: 0;
	font-size: 1em;
}
#aside .tags h2 {
	margin-bottom: 8px;
}
#aside .tags a {
	float: none;
	margin: 0 4px 0 0;
	padding: 0;
	color: #666;
	background: none;
	border: 0;
	font-size: .75em;
	line-height: 2;
}
#aside .tags a:after {
	content: ", ";
}
#aside .tags a:last-child:after {
	content: none;
}
#aside .tags a:hover {
	color: #0bb;
}

/* ETC */
#dimmed {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 300;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.6);
}

.tab-ui h2 a {
	color: #555;
}
.tab-ui h2 a.current {
	color: #999;
}
.tab-ui h2 a:before {
	content: "";
	display: inline-block;
	width: 1px;
	height: 5px;
	margin: 0 10px;
	background: url("./images/ico_package.png") no-repeat -100px -50px;
	vertical-align: middle;
}
.tab-ui h2 a:first-child:before {
	content: none;
}

.mobile-menu {
	height: 100%;
	overflow: hidden;
}

.slide-wrap {
	overflow: hidden;
}

/* Overwrite */
#content .container_postbtn {
	margin: 50px 0 0;
	padding: 0 !important;
}
#content .container_postbtn .postbtn_like, .container_postbtn .btn_menu_toolbar {
	border: 1px solid #999 !important;
}
#content .container_postbtn .btn_post .ico_like {
	filter: grayscale(1); -webkit-filter: grayscale(1); -moz-filter: grayscale(1);
}

#content .another_category {
	margin: 0 0 47px !important;
	padding: 15px 20px;
	border: 1px solid #999 !important;
	border-radius: 16px;
}
#content .another_category a:hover {
	color: #0bb !important;
	text-decoration: underline !important;
}
#content .another_category h4 {
	margin: 0 0 8px !important;;
	padding: 0 0 8px !important;
	border-bottom: 1px solid #999 !important;
	font-size: .875em !important;
}
#content .another_category table {
	margin: 0 !important;
	background: #222;
	border: 0;
}
#content .another_category th {
	padding: 2px 0 !important;
}
#content .another_category th a.current {
	color: #444 !important;
	border: 0 !important;
	font-weight: 400;
	text-decoration: underline !important;
}
#content .another_category td {
	padding: 2px 0 !important;
	border: 0;
	font-size: .75rem !important;
}

.absent_post:before {
	content: "글이 존재하지 않습니다.";
	display: block;
	margin-bottom: 7px;
	color: #444;
	font-size: 1.75em;
	font-weight: bold;
	line-height: 1.3;
	white-space: pre;
}
.absent_post:after {
	content: "."
}
.absent_post {
	padding: 92px 0 !important;
	color: #999 !important;
	background: none !important;
	font-weight: normal !important;
	font-size: .9em !important;
	line-height: 1.75;
}

.post-item a:hover > .title {
	color: #0bb;
}
.post-item .thum, .tab-list ul li figure {
	border: 1px solid #111;
	overflow: hidden;
	background: rgba(50,50,50,.5)
	            url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAKdJREFUeNrsU0EKgDAMq2P4zB23J+jJgye/sOse5yM8WbViEXVlQ1QwEHAhWNYshbW2BIAWaWBBQDbIATacerz3s+CcO/RoEiv2s/W7ZlqyR7GJHCZyFnsU3AxFu9ojRM5ij6aw4CBAjmRPga8oawXrK7pa0e0ZvGLAVKIO2RM70qLQwgGSomXdwAi192YQhFpyBpKiZQ0YKND6sz34i/YX7cGijQIMAAgxNCj3f1TSAAAAAElFTkSuQmCC")
	            no-repeat center center;
}
.post-item .thum:hover {
	box-shadow: 0 0 10px #000;
}
.post-item .thum:hover > img {
	transform: scale(1.25); -webkit-transform: scale(1.25); -moz-transform: scale(1.25);
	filter: brightness(25%); -webkit-filter: brightness(25%); -moz-filter: brightness(25%);
}
.post-item .thum img {
	width: 100%;
	height: auto;
	transform: scale(1); -webkit-transform: scale(1); -moz-transform: scale(1);
	transition: .3s; -webkit-transition: .3s; -moz-transition: .3s;
}
.post-item .title {
	color: #ccc;
}

/* Option (Color Type & List Type) */
.layout-aside-left #content {
	float: right;
}
.layout-aside-left #aside {
	float: left;
	margin-left: 0;
	padding: 80px 0;
}

.list-type-vertical .post-item .thum {
	margin-bottom: 0;
	padding-bottom: 129.325%;
}
.list-type-vertical .post-item .thum:before {
	content: attr(data-date);
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	padding: 3px 8px;
	color: #eee;
	background: #111;
	font-size: .75em;
	box-sizing: border-box;
}
.list-type-vertical .post-item .excerpt, .list-type-vertical .post-item .meta {
	display: none;
}
.list-type-vertical .post-item .meta .rpcnt:before {
	content: "";
	width: 2px;
	height: 2px;
	margin: 0 8px 3px 3px;
}

.list-type-thumbnail .post-header {
	margin-bottom: 28px;
	padding-bottom: 18px;
	border-bottom: 1px solid #333;
}
.list-type-thumbnail .post-header h1 {
	margin-bottom: 0;
}
.list-type-thumbnail .post-item {
	float: none;
	width: 100%;
	margin: 0 0 28px;
	overflow: hidden;
}
.list-type-thumbnail .post-item .thum {
	display: inline;
	width: auto;
	height: auto;
	margin: 0;
	padding: 0;
}
.list-type-thumbnail .post-item .thum img {
	float: right;
	width: 126px;
	height: auto;
	margin-left: 57px;
	border: 1px solid #111;
}
.list-type-thumbnail .post-item.protected .thum {
	float: right;
	width: 126px;
	height: 166px;
	margin-left: 57px;
	background: rgba(50,50,50,.5);
}
.list-type-thumbnail .post-item .title {
	margin-bottom: 12px;
	padding-top: 7px;
	font-size: 1.25em;
}
.list-type-thumbnail .post-item .excerpt {
	overflow: hidden;
	height: 3.75rem;
	margin-bottom: 20px;
	font-size: .8em;
	line-height: 1.25rem;
}
.list-type-thumbnail .post-item .meta .comment {
	display: none;
}
.list-type-thumbnail .post-item .meta span:before {
	content: none;
}

.list-type-text .post-header {
	margin-bottom: 38px;
	padding-bottom: 18px;
	border-bottom: 1px solid #333;
}
.list-type-text .post-header h1 {
	margin-bottom: 0;
}
.list-type-text .post-item {
	float: none;
	overflow: hidden;
	width: 100%;
	margin: 0 0 35px;
}
.list-type-text .post-item .thum {
	display: none;
}
.list-type-text .post-item .title {
	max-width: 96%;
	margin-bottom: 10px;
	padding-top: 0;
	font-size: 1em;
}
.list-type-text .post-item .excerpt {
	max-width: 96%;
	margin-bottom: 20px;
	font-size: .8em;
	line-height: 1.25rem;
}
.list-type-text .post-item .meta .comment {
	display: none;
}
.list-type-text .post-item .meta span:before {
	content: none;
}
.list-type-text .pagination {
	margin-top: 36px;
}

.revenue_unit_wrap.position_list {
	max-width: 740px;
	margin: 30px auto
}

/* Retina Display */
@media only screen and (-webkit-min-device-pixel-ratio: 1.5) {
	#header .util .search:before, #header .util .search button,
	#footer .page-top,
	.cover-thumbnail-3 button, .cover-thumbnail-4 button,
	.page-nav a strong:after,
	.entry-content .protected_form h2:before,
	.comment-list ul li .author-meta .control button,
	.sidebar .social-channel ul li a, .tab-ui h2 a:before {
		background-image: url("./images/ico_package_2x.png");
		background-size: 200px auto;
	}
	.post-item.protected .thum:before {
		background-image: url("./images/ico_package_2x.png");
		background-size: 120px auto;
	}
}

/* Media Screen */
@media all and (max-width: 1119px) {
	#header, #footer {
		padding-left: 24px;
		padding-right: 24px;
	}

	#header .util {
		top: 0;
		right: -24px;
		padding: 24px 70px 24px 0;
	}
	#header .util .search {
		float: right;
	}
	#header .util .search.on {
		z-index: 20;
	}
	#header .util .search.on input {
		float: right;
		width: 100%;
	}

	#header .util .profile {
		display: none;
	}

	#header .util .menu {
		display: block;
		position: absolute;
		top: 24px;
		right: 24px;
		z-index: 300;
		width: 32px;
		height: 32px;
		background: #333 url("./images/ico_package.png") no-repeat -50px 0;
		border-radius: 50%;
		text-indent: -999em;
	}

	#container .content-wrap {
		max-width: 100%;
		padding: 0 24px;
	}
	#content {
		float: none;
		width: auto;
	}

	#aside {
		position: fixed;
		top: 0;
		right: -278px;
		z-index: 400;
		float: none;
		width: 278px;
		height: 100%;
		padding: 24px 24px 40px;
		background: rgba(32,32,32,.9);
		overflow: auto;
		transition: left .5s; -webkit-transition: right .5s; -moz-transition: right .5s;
	}
	#aside .aside-profile {
		display: inline;
		width: 80px;
		margin: 3px 70px 15px;
		background: #333;
		border-radius: 50%;
	}
	#aside .font-select {
		display: block;
		width: 130px;
		height: 20px;
		margin: 5px 45px 35px;
		color: #ccc;
		background: #333;
		border: 1px solid #333;
		font-size: .75em;
	}
	#aside .close {
		display: inline-block;
		position: absolute;
		top: 24px;
		right: 20px;
		z-index: 300;
		width: 30px;
		height: 30px;
		text-indent: -999em;
	}
	#aside .close span {
		display: none;
	}
	#aside .close:before, #aside .close:after {
		content: "";
		position: absolute;
		top: 50%;
		left: 50%;
		width: 16px;
		height: 1px;
		margin: 0 0 0 -8px;
		background: #999;
	}
	#aside .close:before {
		transform: rotate(-45deg);
	}
	#aside .close:after {
		transform: rotate(45deg);
	}

	#aside .profile {
		display: block;
		position: relative;
		margin-bottom: -40px;
	}
	#aside .profile:before {
		content: "";
		position: absolute;
		top: 0;
		left: -24px;
		z-index: 0;
		width: 100%;
		height: 100%;
		padding: 0 24px;
		background: #333;
	}
	#aside .profile ul {
		position: relative;
		z-index: 10;
		text-align: center;
	}
	#aside .profile ul li {
		display: inline-block;
		padding: 16px 0 18px;
		font-size: .875em;
		vertical-align: middle;
	}
	#aside .profile ul li a {
		display: inline-block;
		vertical-align: middle;
	}
	#aside .profile ul li:before {
		content: "";
		display: inline-block;
		width: 1px;
		height: 7px;
		margin: 0 20px 0 16px;
		background: url("./images/ico_package.png") -100px -50px;
		vertical-align: middle;
	}
	#aside .profile ul li:first-child:before {
		content: none;
	}

	#tt-body-index .post-cover.notice, #tt-body-index .entry-content.notice {
		padding: 0;
	}

	.post-item {
		float: left;
		width: 32%;
	}
	.post-item:nth-of-type(3n+2) {
		margin-left: 2%;
		margin-right: 2%;
	}

	.post-cover {
		padding-left: 24px;
		padding-right: 24px;
	}
	.post-cover h1 {
		font-size: 1.75em;
	}

	.mobile-menu #aside {
		right: 0;
	}

	.list-type-thumbnail .post-item:nth-of-type(3n+2) {
		margin-left: 0;
		margin-right: 0;
	}

	#header .util .menu, #footer .page-top {
		transition: all .5s ease; -webkit-transition: all .5s ease; -moz-transition: all .5s ease;
	}
}

@media screen and (max-width: 767px) {
	#header h1 {
		padding-bottom: 0;
		font-size: 1.5em;
	}
	#header .util, #header .util .search.on {
		width: calc(100% + 14px);
	}

	#container .content-wrap {
		padding: 0;
	}

	#footer {
		padding: 20px 24px 10px;
	}
	#footer p {
		margin-bottom: 8px;
		font-size: .8125em;
	}

	#tt-body-index .post-header, #tt-body-category .post-header {
		padding-top: 36px;
		padding-left: 24px;
	}
	#tt-body-index #content, #tt-body-category #content {
		padding: 0;
	}
	#tt-body-index #content > .inner, #tt-body-category #content > .inner {
		padding: 0 24px;
	}
	#tt-body-index #content > .inner:first-child, #tt-body-category #content > .inner:first-child {
		padding-top: 40px;
	}
	#tt-body-index.promotion-mobile-hide .main-slider, #tt-body-category.promotion-mobile-hide .main-slider {
		display: none;
	}
	#tt-body-index.list-type-text #content > .inner:first-child, #tt-body-category.list-type-text #content > .inner:first-child {
		padding-top: 36px;
	}
	#tt-body-index .pagination, #tt-body-category .pagination {
		margin: 40px 20px;
	}
	#tt-body-page #container {
		padding-top: 150px;
	}
	#tt-body-page #content {
		padding-left: 0;
		padding-right: 0;
	}
	#tt-body-tag #content {
		padding-left: 24px;
		padding-right: 24px;
	}
	#tt-body-tag .tags {
		padding: 0;
	}
	#tt-body-guestbook .post-header {
		margin: 0 24px 28px;
	}

	.layout-aside-left #content {
		float: none;
	}
	.layout-aside-left #aside {
		padding: 80px 20px 40px;
	}

	.post-header {
		padding-top: 2px;
	}
	.post-item {
		float: none;;
		width: auto;
		margin-bottom: 30px;
		margin-left: 0;
	}
	.post-item:nth-child(3n+2) {
		margin-left: 0;
		margin-right: 0;
	}
	.post-item .thum {
		margin-bottom: 7px;
	}
	.post-item .title {
		margin-bottom: 12px;
	}
	.post-item .excerpt {
		margin-bottom: 12px;
	}

	.not-found {
		padding: 0 24px 24px;
	}

	.pagination {
		display: none;
	}
	.pagination.mobile {
		display: block;
		margin: 0 20px;
	}
	.pagination.mobile .prev, .pagination .next {
		width: 32px;
		height: 32px;
		margin: -2px 0 0;
		background: url("./images/ico_package.png") no-repeat 0 0;
		border: 0;
	}
	.pagination.mobile .prev {
		float: left;
		background-position: -106px -281px;
	}
	.pagination.mobile .next {
		float: right;
		background-position: -141px -281px;
	}
	.pagination.mobile .prev.no-more-prev, .pagination.mobile .next.no-more-next {
		background-position-y: -237px;
	}
	.pagination.mobile select {
		min-width: 150px;
		height: 30px;
		margin: 0 5px;
		padding: 4px 10px;
		color: #ccc;
		background: #111;
		border: 1px solid #333;
		font-size: .8em;
	}

	.list-type-thumbnail .post-item .thum img {
		width: 96px;
		margin-left: 25px;
	}
	.list-type-thumbnail .post-item .title {
		margin-bottom: 9px;
		padding-top: 3px;
		font-size: 1.125em;
	}
	.list-type-thumbnail .post-item .excerpt {
		margin-bottom: 11px;
	}
	.list-type-thumbnail .post-item.protected .thum {
		margin-left: 25px;
		width: 96px;
		height: 128px;
	}

	.list-type-text .post-header {
		margin-bottom: 28px;
	}
	.list-type-text .post-item {
		margin-bottom: 26px;
	}
	.list-type-text .post-item .title {
		margin-bottom: 10px;
	}
	.list-type-text .post-item .excerpt {
		margin-bottom: 12px;
		-webkit-line-clamp: 4;
	}

	.post-cover {
		height: 160px;
	}
	.post-cover .inner {
		padding-bottom: 18px;
		vertical-align: bottom;
	}
	.post-cover h1 {
		font-weight: 300;
	}
	.post-cover .inner > h1 {
		display: -webkit-box;
		font-size: 1.5em;
		overflow: hidden;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
	}
	.post-cover .meta {
		margin-top: 18px;
		font-size: .8125em;
	}

	.entry-content {
		padding: 0 24px;
	}
	.entry-content p {
		line-height: 1.625rem;
	}
	.entry-content figure.imageblock {
		margin-top: 6px;
	}
	.entry-content figure.imageblock figcaption {
		color: #777;
		font-size: .8em;
	}
	.entry-content figure[data-ke-type="opengraph"] {
		max-width: 500px !important;
		margin: 20px auto 40px !important;
	}
	.entry-content figure[data-ke-type="opengraph"] a {
		height: 65px !important;
	}
	.entry-content figure[data-ke-type="opengraph"] .og-image {
		width: 65px !important;
	}
	.entry-content figure[data-ke-type="opengraph"] .og-text {
		left: 65px !important;
	}
	.entry-content figure[data-ke-type="opengraph"] .og-text .og-desc {
		display: none !important;
	}
	.entry-content figure[data-ke-type="opengraph"] .og-text .og-host {
		margin-top: -14px !important;
	}
	.entry-content pre code {
		width: 100%;
	}
	.entry-content .protected_form input {
		width: 163px;
	}

	#content .another_category {
		margin: 0 0 37px !important;
	}
	#content .another_category th {
		overflow: hidden;
		display: -webkit-box;
		-webkit-line-clamp: 1;
		-webkit-box-orient: vertical;
	}

	.container_postbtn {
		margin: 35px 0 0;
	}

	.tags {
		margin: 37px 0 25px;
		padding: 0 24px;
	}

	.page-nav {
		margin: 32px 24px 32px;
		padding: 25px 0 25px;
	}
	.page-nav a {
		line-height: 1.6875rem;
	}

	.post-articles {
		padding: 0 24px;
	}
	.post-articles .tab-list {
		margin-bottom: 24px;
	}
	.post-articles .tab-list ul li {
		width: 50%;
		margin-bottom: -13px;
	}

	.comments {
		margin: 0;
	}
	.comments iframe {
		position: absolute;
		bottom: 0;
		left: 0;
	}
	.comments h2 {
		margin: -3px 0 15px;
		padding: 0 24px;
	}
	.comment-list {
		margin-bottom: 32px;
	}
	.comment-list .tt_more_preview_comments_text {
		border-top: 1px solid #333;
		border-bottom: 1px solid #333;
	}
	.comment-list > ul > .tt_more_preview_comments_wrap {
		margin-top: 11px;
		padding: 0 24px;
	}
	.comment-list ul li {
		padding: 34px 0 28px;
	}
	.comment-list ul li .author-meta {
		max-width: none;
		margin-bottom: 6px;
		padding-right: 65px;
	}
	.comment-list ul li .author-meta .avatar {
		width: 30px;
		height: 30px;
		margin-left: -42px;
	}
	.comment-list ul li .author-meta .nickname {
		font-weight: 400;
	}
	.comment-list ul li .author-meta .control {
		top: -2px;
		right: 13px;
	}
	.comment-list ul li p {
		max-width: none;
		padding: 0 20px 0 60px;
	}
	.comment-list ul li ul {
		margin-top: 27px;
		padding: 19px 0 12px;
	}
	.comment-list ul li ul li {
		padding: 5px 0 15px;
	}
	.comment-list ul li ul li p {
		max-width: none;
	}
	.comment-list ul li ul li .author-meta {
		margin-bottom: 6px;
	}
	.comment-list ul li ul li .author-meta .avatar {
		width: 30px;
	}
	.comment-form {
		margin-bottom: 40px;
		padding: 0 24px;
	}
	.comment-form textarea {
		padding-right: 32px;
	}
}

@media screen and (max-width: 767px) and (orientation: landscape) {
	.post-item {
		float: left;
		width: 31%;
	}
	.post-item:nth-of-type(3n+2) {
		margin-left: 3.5%;
		margin-right: 3.5%;
	}
}