@charset "utf-8";

@font-face{
	font-family:"Font_Awesome_5_Free";
	src:url(./images/fa-solid-900.woff2) format("woff2"),
		url(./images/fa-solid-900.woff) format("woff"),
		url(./images/fa-solid-900.ttf) format("truetype"),
		url(./images/fa-solid-900.svg#fontawesome) format("svg");
	font-style:normal;
	font-weight:900;
	font-display: auto;
}
@font-face{
	font-family:"Font_Awesome_5_Free_regular";
	src:url(./images/fa-regular-400.woff2) format("woff2"),
		url(./images/fa-regular-400.woff) format("woff"),
		url(./images/fa-regular-400.ttf) format("truetype"),
		url(./images/fa-regular-400.svg#fontawesome) format("svg");
	font-style:normal;
	font-weight:400;
	font-display: auto;
}
@font-face{
	font-family:"Font_Awesome_5_Free_brands";
	src:url(./images/fa-brands-400.woff2) format("woff2"),
		url(./images/fa-brands-400.woff) format("woff"),
		url(./images/fa-brands-400.ttf) format("truetype"),
		url(./images/fa-brands-400.svg#fontawesome) format("svg");
	font-style:normal;
	font-weight:400;
	font-display: auto;
}

/* common */
*:focus {
	outline: 0;
}
html {
	font-size: 18px !important;
}
a {
	text-decoration: none;
	color: #000;
	cursor: pointer;
}
a:hover, button:hover {
	opacity: 0.8;
	transition: all 0.1s linear;
}
ul li {
	list-style: none;
}
div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, textarea, p, blockquote, th, td, figure, button {
	margin: 0;
	padding: 0;
	text-underline-position: under;
}
html, body {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
}
input, select, textarea, button {
	border-radius: 0;
	border: 0;
}
button {
	overflow: visible;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
}
button:hover {
	cursor: pointer;
}

/* bug fix */
.module.module_plugin a {
	display: flex;
}

/* header */
header {
	position: relative;
	width: 100%;
	overflow: hidden;
	z-index: 100;
	height: 127px;
}
header:after {
	content:"";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0.1;
	z-index: -1;
}
header .inner {
	position: relative;
	margin: 0 auto;
	padding: 10px;
}
header p {
	position: absolute;
	font-weight: 400;
	font-size: 1.6em !important;
	line-height: 32px;
	letter-spacing: -0.2px;
	padding-right: 50px;
}
header p a {
	font-weight: bold;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 1.4;
	display: block;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
#blog-menu {
	padding-top: 70px;
	overflow: auto;
}
#blog-menu ul {
	width: max-content;
	vertical-align: top;
}
#blog-menu ul li {
	float: left;
	padding: 0 20px;
}
#blog-menu ul li:first-child {
	padding-left: 0px;
}
#blog-menu ul li a {
	position: relative;
	display: block;
	text-decoration: none;
	padding: 10px 0 10px;
	color: #000;
	font-weight: bold;
}
#tt-body-tag .post-header h1:before {
	content: "\f292";
	padding-right: 5px;
}
#tt-body-search .post-header h1:before {
	content: "\f002";
	padding-right: 5px;
}
#tt-body-guestbook .post-header h1:before {
	content: "\f0f3";
	padding-right: 5px;
}
#tt-body-category .post-header h1:before {
	content: "\f0ca";
	padding-right: 5px;
	vertical-align: middle;
}
#tt-body-archive .post-header h1:before {
	content: "\f073";
	padding-right: 5px;
}
.title-image {
	max-height: 60px;
}

/* footer */
footer {
	position: relative;
	z-index: 109;
}
footer:after {
	content:"";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0.1;
	z-index: -1;
}
footer .inner {
	margin: 0 auto;
	padding: 10px;
	min-height: 105px;
	position: relative;
	text-align: center;
}
footer p {
	margin-bottom: 10px;
	font-size: 0.875em !important;
}
footer .page-top {
	display: none;
}

footer .copyright {
	color: #555;
	font-size: 0.8em !important;
}

/* section */
section {
	width: calc(100% - 2px);
	padding: 1px;
	position: relative;
}
section:after {
	content:"";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0.1;
	z-index: -1;
}
section .content-wrapper {
	margin: 0 auto;
	padding: 30px;
}
section .content-wrapper:after {
	content: "";
	clear: both;
	display: block;
	height: 0;
	visibility: hidden;
}
article {
	box-sizing: border-box;
}
article>.inner {
	margin-bottom: 10px;
}
article>.inner:after {
	content: "";
	clear: both;
	display: block;
	height: 0;
	visibility: hidden;
}
article h2,
.post-header h1 {
	margin-bottom: 10px;
	font-size: 1.2em !important;
	line-height: 1.375;
}
.post-header h1 em {
	margin-left: 7px;
	font-style: normal;
}

@keyframes post-item-ani {
	25% {
		transform: rotate( 0.5deg ) scale(1.005);
	}
  50% {
    transform: rotate( 0deg ) scale(1);
  }
	75% {
		transform: rotate( -0.5deg ) scale(1.005);
	}
}
.post-item a:hover {
	opacity: 1.0;
	animation: post-item-ani 0.8s linear 1;
}
.post-item {
	float: left;
	width: 31%;
	margin: 0 0 20px 3.5%;
}
@media (min-width:768px) {
	.post-item:nth-child(3n+1) {
		clear: both;
		margin-left: 0;
	}
}
.post-item a {
	display: block;
	padding: 5px;
}
.post-item .thum {
	position: relative;
	display: block;
	overflow: hidden;
	width: 100%;
	height: 0;
	padding-bottom: 100%;
}
.thum:before {
	width: 100%;
	height: 100%;
	content: "";
	background-image: url('./images/logo.svg');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	opacity: 0.3;
}
.post-item .thum img {
	width: 100%;
	height: auto;
	position: absolute;
}
.post-item .title {
	overflow: hidden;
	margin-bottom: 4px;
	padding-top: 1.5%;
	text-overflow: ellipsis;
	line-height: 1.4;
	font-weight: bold;
	display: block;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	word-break: break-all;
	font-size: 1.05em;
}
.post-item .excerpt {
	overflow: hidden;
	margin-bottom: 5px;
	text-overflow: ellipsis;
	font-size: 0.8125em;
	line-height: 1.6;
	display: block;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	color: #555;
}
.post-item .meta {
	display: block;
	display: -webkit-box;
	text-overflow: ellipsis;
	overflow: hidden;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	font-size: 0.7em;
	color: #888;
	line-height: 1.6;
}
.post-item .meta span:before {
	content: "";
	display: inline-block;
	width: 2px;
	height: 2px;
	margin: 0 8px 0 5px;
	background-color: #d2d2d2;
	vertical-align: middle;
}
.post-item .meta span:first-child:before {
	content: none;
}
.post-item .meta .category {
	font-weight: bold;
}

.post-item.protected .thum:before {
	width: 100%;
	height: 100%;
	content: "";
	background-image: url(./images/logo.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	opacity: 0.3;
}

article > .inner {
	position: relative;
	width: 100%;
}
article > .inner > ul {
	margin-bottom: 15px;
}
article > .inner > ul li {
	width: revert !important;
	overflow: hidden;
}
article > .inner > ul li a {
	display: block;
	text-decoration: none;
	height: 180px;
	padding: 5px;
}
article > .inner > ul li figure {
	float: left;
	margin-right: 15px;
	position: relative;
	display: block;
	overflow: hidden;
	width: 180px;
	height: 180px;
}
article > .inner > ul li figure:before {
	width: 100%;
	height: 100%;
	content: "";
	background-image: url('./images/logo.svg');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	opacity: 0.3;
}
article > .inner > ul li figure img {
	width: 90%;
	height: 90%;
	position: absolute;
	object-fit: cover;
	padding-top: 8px;
	padding-left: 8px;
	padding-bottom:8px;
}
article > .inner > ul li figure img:hover {
	transform: scale(1.05);
	transition: all 0.1s linear;
}
article > .inner > ul li .title {
	display: block;
	
	overflow: hidden;
	max-width: 95%;
	margin-top: 15px;
	margin-bottom: 10px;
	padding-left:6px;
	text-overflow: ellipsis;
	line-height: 1.2;
	font-weight: bold;
	-webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
	font-size: 1.02em;
}
article > .inner > ul li .excerpt {
	overflow: hidden;
	max-width: 80%;
	margin-bottom: 12px;
	padding-left:6px;
	text-overflow: ellipsis;
	line-height: 1.4rem;
	display: block;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	font-size: 0.9em;
	color: #555;
}
article > .inner > ul li .meta {
	font-size: 0.7em;
	color: #888;
	padding-left:6px;
	max-width: 95%;
	overflow: hidden;
	display: block;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
}
article > .inner > ul li .meta span:first-child:before {
    content: none;
}
article > .inner > ul li .meta span:before {
	content: "";
	display: inline-block;
	width: 2px;
	height: 2px;
	margin: 0 8px 0 5px;
	background-color: #d2d2d2;
	vertical-align: middle;
}
article > .inner .meta .category {
	font-weight: bold;
}

/* mynem cover list */
.cover-list {
	position: relative;
	width: 100%;
}
.cover-list ul {
	margin-bottom: 30px;
}
.cover-list ul li {
	margin-bottom: 15px;
	overflow: hidden;
}
.cover-list ul li a {
	display: block;
	text-decoration: none;
	height: 180px;
	padding: 5px;
}
.cover-list ul li figure {
	float: left;
	margin-right: 15px;
	position: relative;
	display: block;
	overflow: hidden;
	width: 180px;
	height: 180px;
}
.cover-list ul li figure:before {
	width: 100%;
	height: 100%;
	content: "";
	background-image: url('./images/logo.svg');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	opacity: 0.3;
}
.cover-list ul li figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	object-fit: cover;
}
.cover-list ul li figure img:hover {
	transform: scale(1.05);
	transition: all 0.1s linear;
}
.cover-list ul li .title {
	display: block;
	display: -webkit-box;
	overflow: hidden;
	max-width: 95%;
	margin-top: 15px;
	margin-bottom: 10px;
	text-overflow: ellipsis;
	line-height: 1.4;
	font-weight: bold;
	-webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
	font-size: 1.05em;
}
.cover-list ul li .excerpt {
	overflow: hidden;
	max-width: 95%;
	margin-bottom: 12px;
	text-overflow: ellipsis;
	line-height: 1.5rem;
	display: block;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	font-size: 0.8125em;
	color: #555;
}
.cover-list ul li .meta {
	font-size: 0.7em;
	color: #888;
	max-width: 95%;
	overflow: hidden;
	display: block;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
}
.cover-list ul li .meta span:first-child:before {
    content: none;
}
.cover-list ul li .meta span:before {
	content: "";
	display: inline-block;
	width: 2px;
	height: 2px;
	margin: 0 8px 0 5px;
	background-color: #d2d2d2;
	vertical-align: middle;
}
.cover-list .meta .category {
	font-weight: bold;
}

/* mynem cover special */
.cover-special {
	margin-bottom: 30px;
}
.cover-special ul li {
	position: relative;
	overflow: hidden;
	text-align: center;
	padding: 5px;
	margin-bottom: 5px;
}
@keyframes cover-special-ani {
	25% {
		transform: scale(0.995);
	}
  50% {
    transform: scale(1);
  }
	75% {
		transform: scale(1.005);
	}
}
.cover-special ul li img:hover {
	opacity: 1.0;
	animation: cover-special-ani 0.8s linear 1;
}
.cover-special ul li img {
	max-width: 100%;
	float: right;
	width: 50%;
}
.cover-special ul li .box {
	display: block;
	position: absolute;
	width: 50%;
	height: 90%;
	left: 0;
	margin-top: 3%;
}
.cover-special ul li .category {
	display: block;
	display:-webkit-box;
	-webkit-line-clamp:1;
	-webkit-box-orient:vertical;
	text-overflow:ellipsis;
	overflow: hidden;
	margin: 4%;
	font-weight: 700;
	font-size: 1em;
}
.cover-special ul li .title {
	display: block;
	display:-webkit-box;
	-webkit-line-clamp:2;
	-webkit-box-orient:vertical;
	text-overflow:ellipsis;
	overflow: hidden;
	margin: 0 3.5% 5%;
	font-weight: bold;
	font-size: 1.4em;
	line-height: 1.3333;
}
.cover-special ul li .excerpt {
	display: block;
	display:-webkit-box;
	-webkit-line-clamp:5;
	-webkit-box-orient:vertical;
	overflow: hidden;
	padding:0 8%;
	font-size: 0.9em;
	line-height: 1.7;
	text-overflow:ellipsis;
	color: #555;
}
.cover-special ul li .meta {
	position: absolute;
	display: block;
	display:-webkit-box;
	-webkit-line-clamp:1;
	-webkit-box-orient:vertical;
	overflow: hidden;
	bottom: 0;
	font-size: 0.7em;
	color: #888;
	left: 0;
	margin: 0 5%;
}
.cover-special ul li .meta span:first-child:before {
    content: none;
}
.cover-special ul li .meta span:before {
	content: "";
	display: inline-block;
	width: 2px;
	height: 2px;
	margin: 0 8px 0 5px;
	background-color: #d2d2d2;
	vertical-align: middle;
}
.cover-special ul li:nth-child(even) img {
	float: left;
}
.cover-special ul li:nth-child(even) .box {
	right: 0;
	left: initial;
}
.cover-special ul li:nth-child(even) .meta {
	right: 0;
	left: initial;
}

/* pagination */
.pagination {
	text-align: center;
	margin-bottom: 20px;
}
.pagination a {
	display: inline-block;
	margin: 0 10px;
	font-size: 0.875em;
	line-height: 1.5rem;
	vertical-align: top;
	color: #999;
}
.pagination .selected {
	color: #333;
	font-weight: bold;
}
.pagination .prev,
.pagination .next {
	position: relative;
	width: 22px;
	height: 22px;
	visibility: hidden;
}
.pagination .prev:before {
	content: "\f104";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	visibility: visible;
}
.pagination .next:before {
	content: "\f105";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	visibility: visible;
}

/* sidebar */
.sidebar {
	width: 300px;
	box-sizing: border-box;
	overflow:auto;
	position: sticky;
	top: 0px;
	padding-top: 10px;
	scrollbar-width: none;
}
.sidebar .close,
.sidebar .profile {
	display: none;
}
.sidebar div:not(#aside-top-blank) {
	min-height: 30px;
}
.sidebar h2 {
	font-weight: bold;
	font-size: 0.875em !important;
	padding: 10px;
}
.sidebar .category .c_cnt {
	font-weight: bold;
	font-size: 0.8125em;
	padding-left: 3px;
}
.sidebar .category .link_tit {
	display: none;
}
.sidebar .category .category_list {
	padding: 10px 15px 10px;
}
.sidebar .category .category_list .link_item {
	font-size: 0.875em;
}
.sidebar .category .category_list .link_item:before {
	padding-right: 5px;
}
.sidebar .category ul li ul li {
	padding: 0 0 10px 10px;
	padding-top: 10px;
}
.sidebar .category ul li ul li ul li,
body.dark-mode .sidebar .category ul li ul li ul li {
	border-bottom: none;
	padding-top: 0px;
}
.sidebar .category ul li ul li:first-child,
body.dark-mode .sidebar .category ul li ul li:first-child {
	padding-top: 0px;
}
.sidebar .category ul li ul li:last-child,
body.dark-mode .sidebar .category ul li ul li:last-child {
	padding-bottom: 0;
	border-bottom: none;
}
.sidebar .category ul li ul li ul li:last-child,
body.dark-mode .sidebar .category ul li ul li ul li:last-child {
	padding-bottom: 0;
}
.sidebar .category .sub_category_list {
	padding: 10px 0 0 0;
}
.sidebar .category .sub_category_list .link_sub_item {
	font-size: 0.8125em;
}
.sidebar .category .sub_category_list .link_sub_item:before {
	padding-right: 5px;
}
.sidebar .category,
.sidebar .notice, 
.sidebar .recent, 
.sidebar .popular, 
.sidebar .recent-comment,
.sidebar .tags,
.sidebar .archives,
.sidebar .count,
.sidebar .profile-info,
.sidebar .module_plugin,
.sidebar .revenue_unit_wrap,
.sidebar .best-post {
	margin-bottom: 30px;
}
.sidebar .notice ul li,
.sidebar .recent ul li,
.sidebar .popular ul li,
.sidebar .recent-comment ul li,
.sidebar .archives ul li,
.sidebar .module_plugin div:not(#recommend-ads),
.sidebar .best-post ul li {
	font-size: 0.875em;
	padding-top: 10px;
	padding-left: 10px;
	padding-right: 10px;
}
.sidebar .notice ul li:last-child,
.sidebar .recent ul li:last-child,
.sidebar .popular ul li:last-child,
.sidebar .recent-comment ul li:last-child,
.sidebar .archives ul li:last-child,
.sidebar .module_plugin div:last-child,
.sidebar .best-post ul li:last-child {
	padding-bottom: 10px;
}
.sidebar .notice ul li a,
.sidebar .best-post ul li a,
.sidebar .archives ul li a {
	font-size: 0.875em;
}
.sidebar .recent-comment ul li a {
	display: block;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	font-size: 0.875em;
}
.sidebar .recent-comment ul li a:before,
.sidebar .archives ul li a:before,
.sidebar .notice ul li a:before, 
.sidebar .best-post ul li a:before {
	content: "\f105";
	padding-right: 3px;
}
.sidebar .count h2 {
	margin-bottom: 10px;
}
.sidebar .count p {
	font-size: 0.8125em;
	color: #777;
	padding: 0 0 10px 10px;
}
.sidebar .count .total {
	font-weight: 700;
	font-size: 1.5em;
	color: #555;
	padding: 0 0 10px 10px;
}
.sidebar .content-item .thum {
	width: 70px;
	height: 70px;
	float: left;
	margin: 0 10px 0 0;
	overflow: hidden;
	position: relative;
}
.sidebar .content-item ul li img:hover {
	transform: scale(1.05);
	transition: all 0.1s linear;
}
.sidebar .content-item ul li a {
	display: block;
	text-decoration: none;
	height: 72px;
}
.sidebar .content-item ul li .title {
	display: block;
	display: -webkit-box;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	font-size: 0.8125em;
	word-break: break-all;
	line-height: 1.5;
	margin-bottom: 4%;
	padding-top: 3px;
	
}
.sidebar .content-item ul li .date {
	display: block;
	margin-top: 6px;
	font-size: 0.76em;
	line-height: 1;
	color: #888;
}
.sidebar #recommend-ads.revenue_unit_item.adsense {
	width: 290px;
	padding: 10px;
}
.sidebar #recommend-ads > ins {
	width: 230px !important;
}
.sidebar::-webkit-scrollbar {
	display: none;
}
.sidebar .revenue_unit_wrap {
	overflow-x: hidden;
}
#___gcse_1 {
	display: none;
	margin-bottom: 20px;
}

/* top button */
.top-button {
	position: absolute;
	top: 15px;
	right: 15px;
	z-index: 120;
}
.top-button .profile {
	position: relative;
	float: left;
	margin-left: 14px;
}
.top-button .profile button {
	display: block;
	overflow: hidden;
	width: 32px;
	height: 32px;
	border-radius: 50%;
}
.top-button .profile img {
	width: 100%;
	height: 100%;
}
.top-button .profile nav {
	display: none;
	position: absolute;
	top: 100%;
	left: 50%;
	width: 96px;
	margin: 0 0 0 -80px;
	padding-top: 10px;
}
.top-button .profile ul li a {
	display: block;
	margin-top: -1px;
	border: 1px solid #ccc;
	background-color: #fff;
	text-align: center;
	font-size: 0.875em !important;
	line-height: 1.5rem;
	color: #777;
}
.top-button .profile ul li a:hover {
	background-color: #f9f9f9;
	color: #333;
}
.top-button .menu {
	display: none;
}

/* language button */
.lang-box {
	display: flex;
	padding: 0 !important;
}
.lang-box h2 {
	text-align: center;
	width: 25%;
}

/* change font */
.change-font-box {
	display:flex;
	padding: 0 !important;
}
.change-font-box h2 {
	text-align: center;
	width: 25%;
}
.change-font-btn {
	text-align: right;
	cursor: pointer;
	font-weight: bold;
	font-size: 1.3em;
	margin: auto;
}

/* bgm button */
.bgm-box {
	display: flex;
}
.bgm-header {
	font-family:'Font_Awesome_5_Free_brands';
	padding-right:5px;
	padding-left: 0px !important;
}
.bgm-btn {
	margin: auto;
	font-size: 1.3em;
}
.bgm-title-wrap {
	width: 220px;
	display: inline-flex;
}
.bgm-title-box {
	overflow: hidden;
	position: relative;
	width: 100%;
}
#bgm-mute {
	vertical-align: middle;
	padding-left: 5px;
	font-size: 1em;
}
#current-bgm {
	margin: 0;
  display: inline-block;
	white-space:nowrap;
}
.bgm-playing {
  padding-left:100%;
	animation: fade-in-out 2s infinite linear alternate,
             flow-text 10s infinite linear;
}
.bgm-playing:hover {
-moz-animation-play-state: paused;
-webkit-animation-play-state: paused;
animation-play-state: paused;
}

@keyframes fade-in-out {
	from {opacity: 1.0;}
	to {opacity: 0.5;}
}
@keyframes flow-text {
  from   { transform: translate(0%);}
  100%,to { transform: translate(-100%);}
}

/* search button */
.search {
	position: relative;
	overflow: hidden;
	width: 32px;
	box-sizing: border-box;
	width: 100%;
	margin-bottom: 30px;
}
.search input {
	width: 84%;
	float: left;
	padding: 5px 15px;
	background-color: transparent;
	line-height: 1.3125rem;
	outline: none;
	box-sizing: border-box;
	display: block;
	font-size: 0.875em;
}
.search button {
	width: 30px;
	height: 30px;
	float: right;
	vertical-align: top;
	position: relative;
	visibility: hidden;
}
.search button:before {
	content: "\f002";
	position: absolute;
	top: 25%;
	left: 0;
	width: 100%;
	height: 100%;
	visibility: visible;
}
.not-found .tag,
.not-found .category,
.not-found .archive {
	display: none;
}

/* no content */
.no-content {
	padding: 50px 0 50px;
	color: #aaa;
	text-align: center;
}

/* daum search box disable */
#daumSearchBox {
	display: none;
}

/* content title */
.content-title {
	position: relative;
	display: table;
	width: 100%;
	box-sizing: border-box;
	padding: 20px;
	margin-bottom: 10px;
}
.content-title:after {
	content: "";
	position: absolute;
	width:100%;
	height:100%;
	opacity: 0.05;
	top: 0;
	left: 0;
}
.content-title .inner {
	position: relative;
	z-index: 10;
	vertical-align: bottom;
}
.content-title .category {
	display: block;
	margin: 0 auto 13px;
	font-size: 0.875em;
	color: rgba(0,0,0,0.8);
	font-weight: bold;
}
.content-title .title-box {
	height: 66px;
	display: table-cell;
	vertical-align: middle;
	overflow: hidden;
}
.content-title h1 {
	line-height: 1.2352;
	color: #000;
	display: block;
	display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
	overflow: hidden;
	padding-right: 10px;
}
.content-title a {
	text-decoration: none;
	color: #000;
}
.content-title .meta {
	display: block;
	margin: 13px auto 0;
	font-size: 0.875em;
	color: rgba(0,0,0,0.6);
}
.content-title .meta a {
	color: rgba(0,0,0,0.6);
}
.content-title .meta a:before,
.content-title .meta span:before {
	content: "";
	display: inline-block;
	width: 2px;
	height: 2px;
	margin: 0 8px 0 4px;
	background-color: rgba(0,0,0,0.6);
	vertical-align: middle;
}
.content-title .meta span:first-child:before {
	content: none;
}
.content-title .meta .author:before {
	content: "\f007" !important;
	padding-right: 5px;
	margin: 0;
	width: auto;
	height: auto;
	background-color: transparent;
}
.content-title.notice {
	margin-bottom: 20px;
}

/* content article */
.content-article h1 {
	clear: both;
	margin: 25px 0 25px;
	font-size: 1.5em;
}
.content-article h2 {
	clear: both;
	margin: 25px 0 25px;
	text-align: left;
	padding: 3px 0 3px 8px;
}
.content-article h3 {
	clear: both;
	margin: 22px 0 22px;
	text-align: left;
	padding: 3px 0 3px 6px;
}
.content-article h4 {
	clear: both;
	margin: 18px 0 18px;
	font-weight: 400;
	text-align: left;
	padding: 3px 0 3px 4px;
}
.content-article p {
	margin-bottom: 32px;
	word-break: break-all;
	font-size: 1em;
	line-height: 2;
	margin: auto;
}
.content-article p img {
	max-width: 100%;
	height: auto;
}
.content-article figure {
	margin-top: 8px !important;
	margin-bottom: 8px !important;
}
.content-article hr {
	display: block;
	height: 0;
	border: 0;
	border-bottom: 1px solid #000;
}
.content-article pre {
	background: rgba(0, 0, 0, 0.05);
	color: rgba(34, 85, 51, 0.87);
	white-space: pre;
	margin: 10px 0;
	border-radius: 10px;
}
.content-article pre code {
  padding: 10px;
	font-family: 'IBM Plex Mono', monospace !important;
	font-size: 0.85em;
	line-height: 1.35em;
	font-weight: 500;
	border-radius: 10px;
}
.content-article ul {
	list-style: disc inside;
	margin-bottom: 22px;
}
.content-article ul li {
	position: relative;
	margin-bottom: 10px;
	padding-left: 22px;
	line-height: 1.4;
	color: #666;
	text-indent: -22px;
	list-style: inherit;
}
.content-article ol {
	list-style: decimal inside;
	margin-bottom: 22px;
}
.content-article ol li {
	position: relative;
	margin-bottom: 10px;
	padding-left: 16px;
	line-height: 1.4;
	color: #666;
	text-indent: -15px;
	list-style: inherit;
}
.content-article img.alignleft {
	float: left;
	margin: 0 22px 22px 0;
}
.content-article img.aligncenter {
	display: block;
	margin: 0 auto 22px;
}
.content-article img.alignright {
	float: right;
	margin: 0 0 22px 22px;
}
.content-article blockquote {
	margin-bottom: 20px;
	margin-top: 20px;
	padding: 16px 20px;
	border-left: 4px solid #ccc;
}
.content-article blockquote p {
	margin: 22px 0 0;
}
.content-article blockquote p:first-child {
	margin-top: 0;
}
.content-article table {
	width:100%;
	margin-bottom: 22px;
	border-collapse: collapse;
	text-align: center;
	font-size: 0.9375em;
	line-height: 1.5714;
	color: #666;
	border-color: #ccc;
}
.content-article table thead th {
	padding:7px 0 11px;
}
.content-article table tbody td {
	padding:7px 0 11px;
}
.content-article input {
	height: 36px;
	padding: 0 10px;
	border: 1px solid #ccc;
	font-size: 0.875em;
	line-height: 1.25;
	color: #666;
	box-sizing: border-box;
	vertical-align: middle;
}
.content-article .protected_form {
	margin-bottom: 40px;
	padding: 120px 0 200px;
	border-bottom: 1px solid #ccc;
	text-align: center;
}
.content-article .protected_form input {
	width: 200px;
	margin-bottom: 10px;
	vertical-align: top;
}
.content-article .cap1 {
	text-align: center;
	font-size: 0.875em;
	font-style: italic;
}
.content-article .iframe-wrap {
	position: relative;
	height: 0;
	padding-bottom: 56.25%;
}
.content-article .iframe-wrap iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.content-article .protected_form {
	display: block;
	width: 100%;
	padding: 98px 0 120px;
	text-align: center;
}
.content-article .protected_form h2 {
	margin: 0 0 8px;
	font-weight: 600;
	font-size: 1.625em;
	line-height: 2.125rem;
	color: #555;
	border-left: none !important;
}
.content-article .protected_form p {
	margin: 34px 0 34px;
	font-weight: 300;
	font-size: 1em;
	line-height: 1.75;
	color: #999;
}
.content-article .protected_form input {
	width: 183px;
	padding: 0 23px;
	border: 1px solid #ccc;
	font-size: 0.9125em;
	line-height: 2.125rem;
}
.content-article .protected_form input:focus {
	border-color: #484848;
}
.content-article .protected_form .btn {
	margin-left: 5px;
	vertical-align: -webkit-baseline-middle;
}
.content-article .copy-title-btn {
	width:25px;
	height:25px;
	margin-left:10px;
	font-size:0.8em;
}

/* override */
#tt-body-page h2[data-ke-size],
#tt-body-page h3[data-ke-size],
#tt-body-page h4[data-ke-size] {
    font-weight: bold !important;
}
figure[data-ke-type='opengraph'] a,
#tt-body-page figure[data-ke-type='opengraph'] a {
	height: 150px;
	border: 0;
}
figure[data-ke-type='opengraph'] div.og-image {
	width: 150px;
	border: 0;
	margin: 5px;
}
figure[data-ke-type='opengraph'] div.og-text {
	position:absolute;
	left: 151px;
	padding: 15px 15px 0;
}
@media (max-width: 600px) {
	figure[data-ke-type='opengraph'] div.og-text,
	#tt-body-page figure[data-ke-type='opengraph'] div.og-text {
		padding-top: 10px;
	}
	figure[data-ke-type='opengraph'] a,
	#tt-body-page figure[data-ke-type='opengraph'] a {
		height: 90px;
	}
	figure[data-ke-type='opengraph'] div.og-image {
		width: 88px;
		margin: 3px;
	}
	figure[data-ke-type='opengraph'] div.og-text p.og-title,
	#tt-body-page figure[data-ke-type='opengraph'] div.og-text p.og-title {
		white-space: normal;
		-webkit-line-clamp: 2;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		line-height: 1.5 !important;
	}
}
.book-toc ul[data-ke-list-type='disc'],
.book-toc ul[data-ke-list-type='disc'] li,
#tt-body-page .book-toc ul[data-ke-list-type='disc'],
#tt-body-page .book-toc ul[data-ke-list-type='disc'] li,
.floating-toc-new ul[data-ke-list-type='disc'],
.floating-toc-new ul[data-ke-list-type='disc'] li,
#tt-body-page .floating-toc-new ul[data-ke-list-type='disc'],
#tt-body-page .floating-toc-new ul[data-ke-list-type='disc'] li {
	list-style-type: none;
}
#tt-body-page blockquote {
	margin: 10px auto 10px;
	line-height: 1.7;
	word-break: break-all;
}

td figure.imageblock, #tt-body-page td figure.imageblock {
	border-width: 0px;
}

/* another category */
article .another_category {
	margin: 0;
	padding: 0;
	border: 0;
}
article .another_category h4 {
	margin: 0 0 5px !important;
	padding: 0 !important;
	font-size: 1rem !important;
	color: #000 !important;
	font-weight: bold;
	border: 0 !important;
	visibility: hidden;
	overflow:hidden;
	text-overflow:ellipsis;
	white-space:nowrap;
	font-style: normal;
}
article .another_category h4:before {
	content: "관련 글";
	visibility: visible;
	padding-right: 10px;
}

article .another_category h4 a{
	color: #203c0a !important;
}
article .another_category table {
	margin: 0 !important;
	border: 0;
}
article .another_category th {
	padding: 2px 0 !important;
	font-size: 1rem !important;
	text-overflow: ellipsis;
	white-space: nowrap;
}
article .another_category th:before {
	content: "\f0da";
	padding: 0 5px 0 15px;
}
article .another_category th a:hover {
	text-decoration: underline;
}
article .another_category th a.current {
	font-weight: bold;
	font-size: 1rem !important;
	border: 0 !important;
}
article .another_category th a.current:hover {
	text-decoration: underline !important;
}
article .another_category td {
	padding: 2px 0 !important;
	border: 0;
	font-size: 1rem !important;
	color: #517135 !important;
	opacity: 0.7;
	display: none;
}
article .another_category th span {
	font-size: 1rem !important;
	color: #517135 !important;
	opacity: 0.7;
	display: none;
}

/* tags */
.tags a {
	display: inline-block;
	padding: 10px 10px 0 10px;
	font-size: 0.765625em;
	line-height: 1.1rem;
}
.tags a:before {
	content: "#";
}
.tags a:last-child {
	padding-bottom: 10px;
}
article .tags h2 {
	margin-bottom: 5px;
	font-weight: 600;
	font-size: 1em !important;
}
article .tags a {
	padding-right: 10px;
	padding-top: 15px;
}

/* comment */
.comments {
	margin-bottom: 60px;
}
.comments h2 {
	margin-bottom: 10px;
	font-weight: 600;
	font-size: 1em !important;
}
.comments h2 .count{
	margin-left: 4px;
}
.comment-list {
	margin-bottom: 60px;
	border-top: 1px dashed #ccc;
}
.comment-list ul li {
	display: inline-block;
	width: 100%;
	padding: 30px 0 0 0;
	border-bottom: 1px dashed #ccc;
	vertical-align: top;
	box-sizing: border-box;
}
.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: 12px 0 12px;
	border: 1px solid #ccc;
	text-align: center;
	font-size: 0.875em;
	color: #777;
}
.comment-list .tt_more_preview_comments_text:hover {
	text-decoration: underline;
}
.comment-list ul li .author-meta {
	position: relative;
	margin-bottom: 7px;
	padding: 2px 0 0 80px;
	font-size: 0.8125em;
	color: #555;
	min-height: 35px;
	line-height: 1.5;
}
.comment-list ul li .author-meta .date {
	margin-right: 40px;
}
.comment-list ul li .author-meta a {
	color: #555;
}
.comment-list ul li .author-meta a:before,
.comment-list ul li .author-meta span:before {
	content: "";
	display: inline-block;
	width: 2px;
	height: 2px;
	margin: 0 7px 0 5px;
	background-color: #e3e3e3;
	vertical-align: middle;
}
.comment-list ul li .author-meta .nickname {
	font-weight: 700;
	color: #555;
}
.comment-list ul li .author-meta .nickname a {
	color: #555;
}
.comment-list ul li .author-meta .avatar {
	float: left;
	width: 60px;
	height: 60px;
	margin: -2px 0 0 -75px;
	border-radius: 50%;
}
.comment-list ul li .author-meta .control {
	position: absolute;
	top: 0;
	right: -9px;
	border-bottom: 0;
}
.comment-list ul li .author-meta .control button {
	content: "";
	display: block;
	width: 20px;
	height: 20px;
	visibility: hidden;
	overflow: hidden;
}
.comment-list ul li .author-meta .control button:before {
	content: "\f103";
	position: absolute;
	top: 0;
	left: 0;
	visibility: visible;
	color: #ccc;
}
.comment-list ul li .author-meta .control .link {
	display: none;
	position: absolute;
	top: 100%;
	left: -65px;
	width: 70px;
	font-size: 0.8125em;
}
.comment-list ul li .author-meta .control .link a {
	display: block;
	margin-top: -1px;
	border: 1px solid #ccc;
	background-color: #fff;
	text-decoration: none;
	line-height: 1.5rem;
	color: #333;
	text-align: center;
}
.comment-list ul li .author-meta .control .link a:focus,
.comment-list ul li .author-meta .control .link a:hover {
	background-color: #fafafa;
	color: #222;
}
.comment-list ul li .author-meta .nickname:before,
.comment-list ul li .author-meta .nickname a:before,
.comment-list ul li .author-meta .control:before,
.comment-list ul li .author-meta .control a:before {
	content: none;
}
.comment-list ul li p {
	max-width: 95%;
	padding: 0 0 30px 80px;
	font-size: 0.875em !important;
	line-height: 1.3125rem;
	box-sizing: border-box;
	word-break: break-all;
}
.comment-list ul li .reply {
	display: inline-block;
	margin-top: 10px;
	font-size: 0.8125rem !important;
	color: #999;
}
.comment-list ul li ul li {
	padding: 30px 0 0 0;
	border-bottom: 0;
	border-top: 1px dashed #ccc;
	position: relative;
}
.comment-list ul li ul li:after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: linear-gradient(90deg, #aaa, transparent 50%);
	opacity: 0.1;
	z-index: -1;
}
.comment-list ul li ul li .author-meta {
	margin-bottom: 8px;
	padding-left: 110px;
}
.comment-list ul li ul li .author-meta .avatar {
	width: 60px;
	height: 60px;
	margin: -2px 0 0 -75px;
}
.comment-list ul li ul li p {
	padding-left: 110px;
	word-break: break-all;
}
.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-left: 0;
	border-right: 0;
}
.comment-list ul li ul .tt_more_preview_comments_text:first-child {
	margin-top: -24px;
	padding: 12px 0 11px;
}

.comment-form {
	position: relative;
	margin-bottom: 60px;
}
.comment-form .field {
	overflow: hidden;
	margin-bottom: -1px;
	border: 1px solid #ccc;
}
.comment-form .field input[type=text],
.comment-form .field input[type=password] {
	float: left;
	width: 50%;
	padding: 12px 16px;
	border: 0;
	border-left: 1px solid #ccc;
	font-size: 0.875em;
	color: #777;
	box-sizing: border-box;
}
.comment-form .field input:first-child {
	border-left: 0;
}
.comment-form textarea {
	display: block;
	width: 100%;
	margin-top: 1px;
	margin-bottom: 20px;
	padding: 16px 16px 16px 16px;
	border: 1px solid #ccc;
	font-size: 0.875em;
	color: #777;
	box-sizing: border-box;
	resize: none;
	line-height: 1.3125rem;
}
.comment-form .secret {
	position: absolute;
	left: 0;
	bottom: 20px;
}
.comment-form .secret input {
	display: inline-block;
}
.comment-form .secret label {
	display: inline-block;
	font-size: 0.8125em;
	line-height: 1.25rem;
	color: #666;
	outline: none;
	cursor: pointer;
}
.comment-form .submit {
	text-align: right;
}
.comment-form .submit button {
	display: inline-block;
	width: 100px;
	height: 36px;
	text-align: center;
	font-weight: 400;
	font-size: 0.77em !important;
	color: #fff;
	vertical-align: middle;
}

.comment-list .tt_more_preview_comments_text {
	margin-top: 5px;
}

/* maker : armynem */
.maker {
	position: absolute;
	left: 10px;
	bottom: 20px;
	margin: 0px;
}
.maker a {
	font-size: 0.8125em;
	opacity: 0.8;
	text-align: right;
}

/* related articles */
.related-articles h2 {
	margin-bottom: 5px;
	font-weight: 600;
	font-size: 1em !important;
}
.related-articles-wrap {
	padding: 5px;
}

/* progress bar */
.progress-bar-vertical {
	width: 5px;
	transition: all 0.1s linear;
	display: block;
	position: fixed;
	top: 0;
	opacity: 0;
}
.progress-bar-horizontal {
	height: 5px;
	transition: all 0.1s linear;
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	opacity: 0;
}
.progress-bar-etc-vertical {
	width: 5px;
	background-color: #ff6500;
	transition: all 0.1s linear;
	display: block;
	position: fixed;
	bottom: 0;
	opacity: 0;
}
.progress-bar-etc-horizontal {
	height: 5px;
	background-color: #ff6500;
	transition: all 0.1s linear;
	display: block;
	position: fixed;
	bottom: 0;
	right: 0;
	opacity: 0;
}
.progress-bar-ani {
	animation: blinker-progress-bar 3s linear infinite;
	position: relative;
	z-index: 129;
}
@keyframes blinker-progress-bar {
	0% {
		opacity: 0.5;
	}
  50% {
		opacity: 1.0;
  }
	100% {
		opacity: 0.5;
	}
}

/* iframe container */
.video-container iframe {
  z-index: 1;
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
}
.game-container iframe {
  z-index: 1;
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
}
.more-reply {
  text-align:center;
  margin-bottom:-20px;
  cursor:pointer;
}
.video-container-instagram {
  position: relative;
  width: 100%;
  height: auto;
}
.video-container {
  position: relative;
  width: 100%;
  height: auto;
  padding-top: 56.25%;
  margin-bottom: 10px;
	margin-top: 10px;
}
.game-container {
  position: relative;
  width: 50%;
  padding-top: 77%;
  box-shadow: 0.5em 0.4em 1em -0.8em #a6bb97;
}

/* toast */
.toast-wrap {
	display: table;
	position: fixed;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	padding: 10px 15px 10px;
	border-radius: 5%;
	z-index: 999;
	background: #fff;
	border-radius: 10px;
	width: max-content;
	max-width: 80vw;
}
.toast-wrap:after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height:100%;
	opacity: 0.5;
	z-index: -1;
	border-radius: 10px;
}
.toast {
	display: table-cell;
	text-align: center;
	vertical-align: middle;
	font-weight: bold;
	font-size: 1.2em;
}

/* like bubble */
.like_bubble{
  width: 152px;
  height: 190px;
	margin: auto !important;
	display: flex;
}
.like_bubble span{
	color: #ffbc26;
	position: absolute;
	font-size: 10em;
	font-weight: 900;
	z-index: -1;
	display: flex;
	animation: blinker-rotate 5s linear infinite;
	opacity: 0.6;
	text-shadow: 1px 1px 5px #da9419;
}
.like_bubble .inner{
	position: absolute;
	z-index: -1;
	width: 152px;
	margin-left: 3px;
	line-height: 1.4em;
	color: #ce7b16;
	font-size: 0.94em;
	font-weight: bold;
	animation: rotate 5s linear infinite;
	display: flex;
	justify-content: center;
  align-items: center;
	margin-top: 38px;
}
@keyframes blinker-rotate {
	25% {
		transform: rotate( 1deg ) scale(1.01);
	}
  50% {
    transform: rotate( 0deg ) scale(1);
		opacity: 0.5;
  }
	75% {
		transform: rotate( -1deg ) scale(1.02);
	}
}
@keyframes rotate {
	25% {
		transform: rotate( -1deg );
	}
  50% {
    transform: rotate( 0deg );
  }
	75% {
		transform: rotate( 1deg );
	}
}
.bubble_image {
	display: inline-block;
	line-height: 1;
}
.bubble_image:before {
	content: "\f0f3";
	font-family: "Font_Awesome_5_Free";
}

/* ads */
.main-ads {
	padding: 5px;
}
.top-ads {
	display: flex;
	margin: 20px 0 20px;
}
#ad-top-left {
	margin: auto;
	overflow: hidden;
	padding: 5px;
}
#ad-top-right {
	margin: auto;
	overflow: hidden;
	padding: 5px;
}
.adsbygoogle.top-left {
	display: block;
	width: 336px;
	height: 280px;
}
.adsbygoogle.top-right {
	display: block;
	width: 336px;
	height: 280px;
}
.bottom-ads {
	display: flex;
	margin: 20px 0 20px;
}
#ad-bottom-left {
	margin: auto;
	overflow: hidden;
	padding: 5px;
}
#ad-bottom-right {
	margin: auto;
	overflow: hidden;
	padding: 5px;
}
.adsbygoogle.bottom-left {
	display: block;
	width: 336px;
	height: 280px;
}
.adsbygoogle.bottom-right {
	display: block;
	width: 336px;
	height: 280px;
}
.middle-ads {
	display: flex;
	margin: 20px 0 20px;
}
.ad-middle-left {
	margin: auto;
	overflow: hidden;
	padding: 5px;
}
.ad-middle-right {
	margin: auto;
	overflow: hidden;
	padding: 5px;
}
.adsbygoogle.middle-left {
	display: block;
	width: 336px;
	height: 280px;
}
.adsbygoogle.middle-right {
	display: block;
	width: 336px;
	height: 280px;
}
.gsc-search-button-v2 {
	margin-top: 0 !important;
	padding: 10px 27px !important;
}
.gsc-input-box {
	height: 31px;
	padding-top: 2px !important;
	padding-bottom: 3px !important;
}
table.gsc-search-box td {
	height: 22px;
}
.content-article > div > div > p > ins {
	margin: 20px 0 20px 0;
}

/* toc style */
.book-toc {
	position: relative;
	padding: 10px 20px 10px 15px;
	margin: 10px 0 10px 0;
	z-index: 1;
}
.book-toc:after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
	opacity: 0.1;
}
.book-toc p {
	font-weight: bold;
	font-size: 1.2em !important;
	cursor: pointer;
}
#toc * {
	color: #000;
}
#toc {
	margin-top: 5px;
	margin-bottom: 0;
  padding-left: 0;
	max-height: 800px;
	overflow: auto;
}
#toc a:hover {
	color: #000;
}
#toc ul {
	margin-top: 5px;
	margin-bottom: 0px;
}
#toc > li {
	padding-left: 0;
	text-indent: 0;
	list-style-type: none;
	margin-bottom: 5px;
}
#toc > li:last-child {
	margin-bottom: 0px;
}
#toc > li:before {
  padding-right: 5px;
	font-size: 0.8em;
}
#toc > li > ul {
	padding-left: 10px;
	margin-top: 0;
	margin-bottom: 0;
}
#toc > li > ul > li {
	padding-left: 0;
	text-indent: 0;
	list-style-type: none;
	margin-bottom: 0;
	margin-top: 5px;
}
#toc > li > ul > li:before {
  padding-right: 5px;
	font-size: 0.8em;
}
#toc > li > ul > li > ul {
	padding-left: 10px;
	margin-top: 0;
	margin-bottom: 0;
}
#toc > li > ul > li > ul > li {
	padding-left: 0;
	text-indent: 0;
	list-style-type: none;
	margin-bottom: 0;
	margin-top: 3px;
}
#toc > li > ul > li > ul > li:before {
  padding-right: 5px;
	font-size: 0.8em;
}
.floating-toc-new {
	position: fixed;
	top: 10px;
	padding: 10px;
	overflow: hidden;
	opacity: 0.0;
	z-index: 129;
	max-width: 500px;
}
.floating-toc-new:after {
	content:"";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0.9;
	z-index: -1;
}
.floating-toc-new p {
	font-weight: bold;
	font-size: 0.9em !important;
	cursor: pointer;
}
.floating-toc-new #toc {
	overflow: visible;
}
.floating-toc-new #toc-body {
	margin-top: 10px;
	overflow: auto;
	max-height: 60vh;
}
.floating-toc-new #toc-body #toc {
	margin-left: 0;
	height: max-content;
	padding-right: 5px;
}
.floating-toc-header-ani {
	animation: bounce-toc-header 5s linear infinite;
}
@keyframes bounce-toc-header {
	0% {
		transform: scale(0.8);
	}
  50% {
    transform: scale(0.7);
  }
	100% {
		transform: scale(0.8);
	}
}
.floating-toc-title-ani {
	animation: blinker-toc-title 2s linear infinite;
	font-weight: bold;
}
@keyframes blinker-toc-title {
	0% {
		opacity: 0.5;
	}
  50% {
		opacity: 1.0;
  }
	100% {
		opacity: 0.5;
	}
}
.floating-icon {
	cursor: pointer;
}
.floating-icon:after {
  content: "\f03a";
	font-size: 0.8125;
}
.book-toc, .floating-toc-new {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

/* bounce heart */
.ico_like { position: relative; animation: ico_like 1s infinite; margin:0 auto } .ico_like:before, .ico_like:after { position: absolute; content: ""; top: 0; -webkit-transform-origin: 0 100%; -moz-transform-origin: 0 100%; -ms-transform-origin: 0 100%; -o-transform-origin: 0 100%; transform-origin: 0 100%; } .ico_like:after { left: 0; -webkit-transform-origin: 100% 100%; -moz-transform-origin: 100% 100%; -ms-transform-origin: 100% 100%; -o-transform-origin: 100% 100%; transform-origin :100% 100%; } @keyframes ico_like { 0% { transform: scale( .75 ); } 20% { transform: scale( 1 ); } 40% { transform: scale( .75 ); } 60% { transform: scale( 1 ); } 80% { transform: scale( .75 ); } 100% { transform: scale( .75 ); } }

/* like button style  */
.container_postbtn {
	text-align: center;
}
.container_postbtn button {
	vertical-align: top !important;
}
.container_postbtn .postbtn_like {
	float: none !important;
	display: inline-block;
	border: 1px solid #ccc !important;
}

/* floating button box */
.floating-button {
	position: fixed;
	right: 10px;
	bottom: 15px;
	z-index: 201;
	font-family: 'Font_Awesome_5_Free';
}

.floating-button a {
	margin-left: 5px;
}

/* change font size button */
.font-size-up-btn {
	float: left;
	display: flex;
	position: relative;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	cursor: pointer;
	justify-content: center;
    align-items: center;
}
.font-size-up-btn:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 0.1;
	border-radius: 50%;
}
.font-size-up-btn:after {
	content: "\f00e";
	position: absolute;
	visibility: visible;
	border-radius: 50%;
	line-height: 1;
}

.font-size-down-btn {
	float: left;
	display: flex;
	position: relative;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	cursor: pointer;
	justify-content: center;
    align-items: center;
}
.font-size-down-btn:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 0.1;
	border-radius: 50%;
}
.font-size-down-btn:after {
	content: "\f010";
	position: absolute;
	visibility: visible;
	border-radius: 50%;
	line-height: 1;
}

/* move top button */
.move-top-btn {
	float: left;
	display: flex;
	position: relative;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	cursor: pointer;
	justify-content: center;
    align-items: center;
}
.move-top-btn:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 0.1;
	border-radius: 50%;
}
.move-top-btn:after {
	content: "\f102";
	position: absolute;
	visibility: visible;
	border-radius: 50%;
	line-height: 1;
}

/* move comment button */
.move-comment-btn {
	float: left;
	display: flex;
	position: relative;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	cursor: pointer;
	justify-content: center;
    align-items: center;
}
.move-comment-btn:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 0.1;
	border-radius: 50%;
}
.move-comment-btn:after {
	content: "\f4ad";
	position: absolute;
	visibility: visible;
	border-radius: 50%;
	line-height: 1;
}

/* share button */
.share-btn {
	display: none;
}
#tt-body-page .share-btn {
	float: left;
	display: flex;
	position: relative;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	cursor: pointer;
	justify-content: center;
    align-items: center;
}
#tt-body-page .share-btn:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 0.1;
	border-radius: 50%;
}
#tt-body-page .share-btn:after {
	content: "\f1e0";
	position: absolute;
	visibility: visible;
	border-radius: 50%;
	line-height: 1;
}
.container_postbtn .postbtn_like {
	min-height: 30px;
	min-width: 25px;
}
.postbtn_like .wrap_btn_share {
	display: none;
}
#tistorySnsLayer.layer_post .ico_arrbt {
	display: none;
}

/* dark mode button */
.dark-mode-on-btn, .dark-mode-off-btn {
	float: left;
	display: flex;
	position: relative;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	cursor: pointer;
	justify-content: center;
    align-items: center;
}
.dark-mode-on-btn:before, .dark-mode-off-btn:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 0.1;
	border-radius: 50%;
}
.dark-mode-on-btn:after {
	content: "\f185";
	position: absolute;
	visibility: visible;
	border-radius: 50%;
	line-height: 1;
}
.dark-mode-off-btn:after {
	content: "\f186";
	position: absolute;
	visibility: visible;
	border-radius: 50%;
	line-height: 1;
}


/* 실시간 상담*/
.sns-btn {
	float: left;
	display: flex;
	position: relative;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	cursor: pointer;
	justify-content: center;
    align-items: center;
}

.sns-btn:after {
	
	position: absolute;
	visibility: visible;
	border-radius: 50%;
	line-height: 1;
}

/* 네이버예약 */
.gaudi-btn {
	float: left;
	display: flex;
	position: relative;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	cursor: pointer;
	justify-content: center;
    align-items: center;
}

.gaudi-btn:after {
	
	position: absolute;
	visibility: visible;
	border-radius: 50%;
	line-height: 1;
}
/* scroll style */
::-webkit-scrollbar {
	width: 5px;
	height: 5px;
}
::-webkit-scrollbar-thumb {
	border-radius: 5px;
	background-clip: padding-box;
	border: 1px solid transparent;
}
::-webkit-scrollbar-track {
	border-radius: 5px;
	box-shadow: inset 0px 0px 3px white;
}

/* space fix */
.revenue_unit_wrap {
	overflow: hidden;
}
.gcse-searchbox {
	height: 31px;
}
#article-google {
	overflow:hidden;
}

/* dark mode */
.dark-mode-background {
	background: black !important;
}
.dark-mode-color {
	color: #d6d6d6 !important;
}
.dark-mode-opacity {
	opacity: 0.9 !important;
}
.dark-mode-floating-toc {
	background: #000 !important;
}
.dark-mode-box {
	display:flex;
	padding: 0 !important;
}
.dark-mode-box h2 {
	text-align: center;
	width: 25%;
}
.dark-mode-btn-dark {
	text-align: right;
	cursor: pointer;
	font-weight: bold;
	font-size: 1.3em;
	margin: auto;
}
.dark-mode-btn-default {
	text-align: right;
	cursor: pointer;
	font-weight: bold;
	font-size: 1.3em;
	margin: auto;
}

body.dark-mode section,body.dark-mode header,body.dark-mode footer, body.dark-mode .comment-form input,
body.dark-mode .floating-toc-new, body.dark-mode .sidebar .close,
body.dark-mode .sidebar .profile ul, body.dark-mode .comment-list ul li .author-meta .control .link a, body.dark-mode .top-button .menu button {
	background: #000000;
}
body.dark-mode #tistoryEtcLayer,
body.dark-mode #tistorySnsLayer.layer_post {
	background-color:#1e1e1ee5;
}
body.dark-mode #tistoryEtcLayer .bundle_post .btn_mark:hover,
body.dark-mode #tistorySnsLayer.layer_post a:hover {
	color: #1e1e1e !important;
}
body.dark-mode .sidebar h2, body.dark-mode.mobile-menu aside,
body.dark-mode textarea, body.dark-mode .top-button .profile ul li a {
	color:#d6d6d6;
	background-color:#1e1e1e;
}
body.dark-mode .floating-toc-new:after,
body.dark-mode .content-box {
	background: #1e1e1e;
}
body.dark-mode .content-title .meta a:before, body.dark-mode .content-title .meta span:not(.author):before,
figure.fileblock a::after, #tt-body-page figure.fileblock a::after {
	background-color: rgb(255,255,255,0.6);
}
body.dark-mode h1,body.dark-mode h2,body.dark-mode h3,body.dark-mode h4,body.dark-mode p, body.dark-mode .tags a,
body.dark-mode .sidebar a, body.dark-mode .maker a, body.dark-mode .auto-link,
body.dark-mode span:not(#bgm-status, .bubble_image, .hljs-selector-id, .hljs-selector-class, .hljs-attribute,
.hljs-number, .hljs-meta, .hljs-string, .hljs-keyword, .hljs-name, .hljs-tag, .hljs-comment, .hljs-attr, .hljs-function,
.hljs-literal, .hljs-selector-pseudo, .hljs-built_in, .hljs-selector-attr, .hljs-selector-tag, .hljs-title, .hljs-params, .category,
#current-bgm, .bgm-header, .bgm-title-box, .bgm-title-wrap),
body.dark-mode input, body.dark-mode #toc *, body.dark-mode #blog-menu ul li a,
body.dark-mode .container_postbtn .btn_post .txt_like, body.dark-mode blockquote,
body.dark-mode .container_postbtn .btn_menu_toolbar .txt_state, body.dark-mode .content-box,
body.dark-mode #tistoryEtcLayer .bundle_post .btn_mark, body.dark-mode .content-box a,
body.dark-mode figure[data-ke-type='opengraph'] div.og-text p.og-title,
body.dark-mode#tt-body-page figure[data-ke-type='opengraph'] div.og-text p.og-title,
body.dark-mode .comment-list ul li .author-meta .nickname a, body.dark-mode header p a,
body.dark-mode .comment-list ul li .author-meta a, body.dark-mode .content-comment,
body.dark-mode .sidebar .count p, body.dark-mode .sidebar .count .total,
body.dark-mode .profile-details, body.dark-mode figure figcaption {
	color: #d6d6d6;
}
body.dark-mode .btn_menu_toolbar, body.dark-mode #wrapper div div.profile button {
	opacity: 0.5;
}
body.dark-mode ins, body.dark-mode img, body.dark-mode #___gcse_1 {
	opacity: 0.95 !important;
}
body.dark-mode .another_category.another_category_color_gray h4,
body.dark-mode .container_postbtn .btn_post .txt_like,
body.dark-mode .comment-list ul li .author-meta .control .link a,
body.dark-mode article .another_category h4,
body.dark-mode #tistorySnsLayer.layer_post .btn_mark {
	color: #d6d6d6 !important;
}
body.dark-mode .like_bubble .inner {
	color: #ffb355;
}

body.dark-mode td figure.imageblock, #tt-body-page td figure.imageblock {
	    border-width: 0px !important;
}

/* profile */
.profile-desc {
	font-size:0.9em;
	font-weight:bold;
	text-align:center;
	margin-top:10px;
}

.profile-details {
	font-size:0.8em;
	font-weight:bold;
	color:#777;
	text-align:center;
	margin-top:10px;
}

/* recommend content */
.recommend-contents-wrap {
	position: fixed;
	z-index: 999;
}
.recommend-contents-body {
	display: flex;
}
.content-comment {
	margin: 0 0 5px 0;
	padding: 8px;
	width: 294px;
	font-weight: bold;
	font-style: italic;
	border-radius: 5px;
	font-size: 0.8em;
}
.content-box {
	padding: 5px;
	width: 142px;
	display: flex;
	align-items: center;
	border-radius: 5px;
	font-weight: bold;
}
.content-box .content-arrow:nth-child(1) {
	padding-right: 5px;
}
.content-box .content-arrow:nth-child(2) {
	padding-left: 5px;
}
.content-box:nth-child(1) {
	margin-right: 5px;
}
.pre-content,
.next-content {
	font-size: 0.7em;
	overflow: hidden;
	text-overflow: ellipsis;
	display: block;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	text-align: center;
	width: inherit;
}
.no-post {
	opacity: 0.5;
}

/* mobile menu */
#dimmed {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 130;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.6);
}

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

/* mobile */
@media (max-width: 767px) {
	header p {
		font-size: 1.25em !important;
	}
	.cover-list ul li {
		height: 126px;
		margin-bottom: 10px;
	}
	.cover-list ul li figure {
		float: left;
		position: relative;
		display: block;
		overflow: hidden;
		max-width: 120px;
		max-height: 120px;
		margin-right: 5px;
	}
	.cover-list ul li figure:before {
		width: 100%;
		height: 100%;
		content: "";
		background-image: url('./images/logo.svg');
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center;
		position: absolute;
		top: 0;
		left: 0;
		z-index: -1;
		opacity: 0.3;
	}
	.cover-list ul li a {
		height: 120px;
		padding: 3px;
	}
	.cover-list ul li .title {
		margin-top: 7px;
		margin-bottom: 5px;
		font-size: 0.875em;
	}
	.cover-list ul li .excerpt {
		margin-bottom: 7px;
		-webkit-line-clamp: 3;
		font-size: 0.7em;
		line-height: 1.5;
	}
	.cover-list ul li .meta {
		font-size: 0.55em;
	}
	.post-item:nth-child(2n+1) {
		clear: both;
		margin-left: 0;
	}
	.post-item {
		width: 48.2%;
	}
	.post-item a {
		padding: 3px;
	}
	.post-item .title {
		font-size: 0.875em;
		line-height: 1.6;
	}
	.post-item .excerpt {
		font-size: 0.7em;
	}
	.post-item .meta {
		font-size: 0.55em;
	}
	article > .inner > ul {
		margin-bottom: 10px;
	}
	article > .inner > ul li {
		height: 126px;
	}
	article > .inner > ul li figure {
		float: left;
		position: relative;
		display: block;
		overflow: hidden;
		max-width: 120px;
		max-height: 120px;
		margin-right: 5px;
	}
	article > .inner > ul li figure:before {
		width: 100%;
		height: 100%;
		content: "";
		background-image: url('./images/logo.svg');
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center;
		position: absolute;
		top: 0;
		left: 0;
		z-index: -1;
		opacity: 0.3;
	}
	article > .inner > ul li a {
		height: 120px;
		padding: 3px;
	}
	article > .inner > ul li .title {
		margin-top: 7px;
		margin-bottom: 5px;
		font-size: 0.875em;
	}
	article > .inner > ul li .excerpt {
		margin-bottom: 7px;
		-webkit-line-clamp: 3;
		font-size: 0.7em;
		line-height: 1.5;
	}
	article > .inner > ul li .meta {
		font-size: 0.55em;
	}
	.related-articles-wrap {
		padding: 3px;
	}
	.main-ads {
		padding: 3px;
	}
	#ad-top-left {
		padding: 3px;
	}
	#ad-top-right {
		padding: 3px;
	}
	article h2,
	.post-header h1 {
		margin-bottom: 8px;
		font-size: 1em !important;
	}
	.cover-special ul li .box {
		position: relative;
		width: 100%;
		height: 100%;
	}
	.cover-special ul li {
		padding: 3px;
		margin-bottom: 10px;
	}
	.cover-special ul li .title {
		-webkit-line-clamp: 2;
		margin: 2%;
		font-size: 1.2em;
		height: 56px;
	}
	.cover-special ul li .excerpt {
		-webkit-line-clamp: 4;
		font-size: 0.8em;
		padding: 0 5%;
		margin-bottom: 2%;
		height: 96px;
	}
	.cover-special ul li .category {
		margin: 2%;
		font-size: 0.9em;
	}
	.cover-special ul li .meta {
		position: relative;
		margin: 2%;
		vertical-align: middle;
		font-size: 0.6em;
	}
	.cover-special ul li:nth-child(even) img {
		float: none;
	}
	.top-button {
		top: 10px;
		right: 10px;
	}
	.pagination a {
		margin: 0 5px;
	}
	article .another_category th {
		line-height: 1.15;
	}
	article .another_category th:before {
		padding: 0 5px 0 10px;
	}
	.content-title {
		padding: 10px;
	}
	.comment-list .tt_more_preview_comments_text {
		padding: 8px 0 8px;
	}
	.comment-list ul li p {
		line-height: 1.15rem;
	}
	.content-article h2 {
		margin: 15px 0 15px 0;
		padding: 3px 0 10px 10px;
	}
	.content-article h3 {
		margin: 12px 0 12px 0;
		padding: 3px 0 10px 10px;
	}
	.content-article h4 {
		margin: 10px 0 10px 0;
		padding: 3px 0 10px 10px;
	}
	.content-article figure {
		margin-top: 5px !important;
		margin-bottom: 5px !important;
	}
	.comment-form textarea {
		margin-bottom: 10px;
		line-height: 1rem;
	}
	.content-article ul li {
		line-height: 1.25;
	}
	#toc-body #toc li {
		line-height: 1.15;
	}
	.book-toc {
		margin: 5px 0 5px 0;
		padding: 8px 16px 8px 12px;
	}
	.floating-toc-new #toc-body {
		max-height: 50vh;
	}
}


html{box-sizing:content-box}*,*:before,*:after{box-sizing:inherit}
.w3-image{max-width:100%;height:auto}img{vertical-align:middle}a{color:inherit}
.w3-table,.w3-table-all{border-collapse:collapse;border-spacing:0;width:100%;display:table}.w3-table-all{border:1px solid #ccc}
.w3-bordered tr,.w3-table-all tr{border-bottom:1px solid #ddd}.w3-striped tbody tr:nth-child(even){background-color:#f1f1f1}
.w3-table-all tr:nth-child(odd){background-color:#fff}.w3-table-all tr:nth-child(even){background-color:#f1f1f1}
.w3-hoverable tbody tr:hover,.w3-ul.w3-hoverable li:hover{background-color:#ccc}.w3-centered tr th,.w3-centered tr td{text-align:center}
.w3-table td,.w3-table th,.w3-table-all td,.w3-table-all th{padding:8px 8px;display:table-cell;text-align:left;vertical-align:top}
.w3-table th:first-child,.w3-table td:first-child,.w3-table-all th:first-child,.w3-table-all td:first-child{padding-left:16px}
.w3-btn,.w3-button{border:none;display:inline-block;padding:8px 16px;vertical-align:middle;overflow:hidden;text-decoration:none;color:inherit;background-color:inherit;text-align:center;cursor:pointer;white-space:nowrap}
.w3-btn:hover{box-shadow:0 8px 16px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19)}
.w3-btn,.w3-button{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}   
.w3-disabled,.w3-btn:disabled,.w3-button:disabled{cursor:not-allowed;opacity:0.3}.w3-disabled *,:disabled *{pointer-events:none}
.w3-btn.w3-disabled:hover,.w3-btn:disabled:hover{box-shadow:none}
.w3-badge,.w3-tag{background-color:#000;color:#fff;display:inline-block;padding-left:8px;padding-right:8px;text-align:center}.w3-badge{border-radius:50%}
.w3-ul{list-style-type:none;padding:0;margin:0}.w3-ul li{padding:8px 16px;border-bottom:1px solid #ddd}.w3-ul li:last-child{border-bottom:none}
.w3-tooltip,.w3-display-container{position:relative}.w3-tooltip .w3-text{display:none}.w3-tooltip:hover .w3-text{display:inline-block}
.w3-ripple:active{opacity:0.5}.w3-ripple{transition:opacity 0s}
.w3-input{padding:8px;display:block;border:none;border-bottom:1px solid #ccc;width:100%}
.w3-select{padding:9px 0;width:100%;border:none;border-bottom:1px solid #ccc}
.w3-dropdown-click,.w3-dropdown-hover{position:relative;display:inline-block;cursor:pointer}
.w3-dropdown-hover:hover .w3-dropdown-content{display:block}
.w3-dropdown-hover:first-child,.w3-dropdown-click:hover{background-color:#ccc;color:#000}
.w3-dropdown-hover:hover > .w3-button:first-child,.w3-dropdown-click:hover > .w3-button:first-child{background-color:#ccc;color:#000}
.w3-dropdown-content{cursor:auto;color:#000;background-color:#fff;display:none;position:absolute;min-width:160px;margin:0;padding:0;z-index:1}
.w3-check,.w3-radio{width:24px;height:24px;position:relative;top:6px}
.w3-sidebar{height:100%;width:200px;background-color:#fff;position:fixed!important;z-index:1;overflow:auto}
.w3-bar-block .w3-dropdown-hover,.w3-bar-block .w3-dropdown-click{width:100%}
.w3-bar-block .w3-dropdown-hover .w3-dropdown-content,.w3-bar-block .w3-dropdown-click .w3-dropdown-content{min-width:100%}
.w3-bar-block .w3-dropdown-hover .w3-button,.w3-bar-block .w3-dropdown-click .w3-button{width:100%;text-align:left;padding:8px 16px}
.w3-main,#main{transition:margin-left .4s}
.w3-modal{z-index:3;display:none;padding-top:100px;position:fixed;left:0;top:0;width:100%;height:100%;overflow:auto;background-color:rgb(0,0,0);background-color:rgba(0,0,0,0.4)}
.w3-modal-content{margin:auto;background-color:#fff;position:relative;padding:0;outline:0;width:600px}
.w3-bar{width:100%;overflow:hidden}.w3-center .w3-bar{display:inline-block;width:auto}
.w3-bar .w3-bar-item{padding:8px 16px;float:left;width:auto;border:none;display:block;outline:0}
.w3-bar .w3-dropdown-hover,.w3-bar .w3-dropdown-click{position:static;float:left}
.w3-bar .w3-button{white-space:normal}
.w3-bar-block .w3-bar-item{width:100%;display:block;padding:8px 16px;text-align:left;border:none;white-space:normal;float:none;outline:0}
.w3-bar-block.w3-center .w3-bar-item{text-align:center}.w3-block{display:block;width:100%}
.w3-responsive{display:block;overflow-x:auto}
.w3-container:after,.w3-container:before,.w3-panel:after,.w3-panel:before,.w3-row:after,.w3-row:before,.w3-row-padding:after,.w3-row-padding:before,
.w3-cell-row:before,.w3-cell-row:after,.w3-clear:after,.w3-clear:before,.w3-bar:before,.w3-bar:after{content:"";display:table;clear:both}
.w3-col,.w3-half,.w3-third,.w3-twothird,.w3-threequarter,.w3-quarter{float:left;width:100%}
.w3-col.s1{width:8.33333%}.w3-col.s2{width:16.66666%}.w3-col.s3{width:24.99999%}.w3-col.s4{width:33.33333%}
.w3-col.s5{width:41.66666%}.w3-col.s6{width:49.99999%}.w3-col.s7{width:58.33333%}.w3-col.s8{width:66.66666%}
.w3-col.s9{width:74.99999%}.w3-col.s10{width:83.33333%}.w3-col.s11{width:91.66666%}.w3-col.s12{width:99.99999%}
@media (min-width:601px){.w3-col.m1{width:8.33333%}.w3-col.m2{width:16.66666%}.w3-col.m3,.w3-quarter{width:24.99999%}.w3-col.m4,.w3-third{width:33.33333%}
.w3-col.m5{width:41.66666%}.w3-col.m6,.w3-half{width:49.99999%}.w3-col.m7{width:58.33333%}.w3-col.m8,.w3-twothird{width:66.66666%}
.w3-col.m9,.w3-threequarter{width:74.99999%}.w3-col.m10{width:83.33333%}.w3-col.m11{width:91.66666%}.w3-col.m12{width:99.99999%}}
@media (min-width:993px){.w3-col.l1{width:8.33333%}.w3-col.l2{width:16.66666%}.w3-col.l3{width:24.99999%}.w3-col.l4{width:33.33333%}
.w3-col.l5{width:41.66666%}.w3-col.l6{width:49.99999%}.w3-col.l7{width:58.33333%}.w3-col.l8{width:66.66666%}
.w3-col.l9{width:74.99999%}.w3-col.l10{width:83.33333%}.w3-col.l11{width:91.66666%}.w3-col.l12{width:99.99999%}}
.w3-rest{overflow:hidden}.w3-stretch{margin-left:-16px;margin-right:-16px}
.w3-content,.w3-auto{margin-left:auto;margin-right:auto}.w3-content{max-width:980px}.w3-auto{max-width:1140px}
.w3-cell-row{display:table;width:100%}.w3-cell{display:table-cell}
.w3-cell-top{vertical-align:top}.w3-cell-middle{vertical-align:middle}.w3-cell-bottom{vertical-align:bottom}
.w3-hide{display:none!important}.w3-show-block,.w3-show{display:block!important}.w3-show-inline-block{display:inline-block!important}
@media (max-width:1205px){.w3-auto{max-width:95%}}
@media (max-width:600px){.w3-modal-content{margin:0 10px;width:auto!important}.w3-modal{padding-top:30px}
.w3-dropdown-hover.w3-mobile .w3-dropdown-content,.w3-dropdown-click.w3-mobile .w3-dropdown-content{position:relative}	
.w3-hide-small{display:none!important}.w3-mobile{display:block;width:100%!important}.w3-bar-item.w3-mobile,.w3-dropdown-hover.w3-mobile,.w3-dropdown-click.w3-mobile{text-align:center}
.w3-dropdown-hover.w3-mobile,.w3-dropdown-hover.w3-mobile .w3-btn,.w3-dropdown-hover.w3-mobile .w3-button,.w3-dropdown-click.w3-mobile,.w3-dropdown-click.w3-mobile .w3-btn,.w3-dropdown-click.w3-mobile .w3-button{width:100%}}
@media (max-width:768px){.w3-modal-content{width:500px}.w3-modal{padding-top:50px}}
@media (min-width:993px){.w3-modal-content{width:900px}.w3-hide-large{display:none!important}.w3-sidebar.w3-collapse{display:block!important}}
@media (max-width:992px) and (min-width:601px){.w3-hide-medium{display:none!important}}
@media (max-width:992px){.w3-sidebar.w3-collapse{display:none}.w3-main{margin-left:0!important;margin-right:0!important}.w3-auto{max-width:100%}}
.w3-top,.w3-bottom{position:fixed;width:100%;z-index:1}.w3-top{top:0}.w3-bottom{bottom:0}
.w3-overlay{position:fixed;display:none;width:100%;height:100%;top:0;left:0;right:0;bottom:0;background-color:rgba(0,0,0,0.5);z-index:2}
.w3-display-topleft{position:absolute;left:0;top:0}.w3-display-topright{position:absolute;right:0;top:0}
.w3-display-bottomleft{position:absolute;left:0;bottom:0}.w3-display-bottomright{position:absolute;right:0;bottom:0}
.w3-display-middle{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%)}
.w3-display-left{position:absolute;top:50%;left:0%;transform:translate(0%,-50%);-ms-transform:translate(-0%,-50%)}
.w3-display-right{position:absolute;top:50%;right:0%;transform:translate(0%,-50%);-ms-transform:translate(0%,-50%)}
.w3-display-topmiddle{position:absolute;left:50%;top:0;transform:translate(-50%,0%);-ms-transform:translate(-50%,0%)}
.w3-display-bottommiddle{position:absolute;left:50%;bottom:0;transform:translate(-50%,0%);-ms-transform:translate(-50%,0%)}
.w3-display-container:hover .w3-display-hover{display:block}.w3-display-container:hover span.w3-display-hover{display:inline-block}.w3-display-hover{display:none}
.w3-display-position{position:absolute}
.w3-circle{border-radius:50%}
.w3-round-small{border-radius:2px}.w3-round,.w3-round-medium{border-radius:4px}.w3-round-large{border-radius:8px}.w3-round-xlarge{border-radius:16px}.w3-round-xxlarge{border-radius:32px}
.w3-row-padding,.w3-row-padding>.w3-half,.w3-row-padding>.w3-third,.w3-row-padding>.w3-twothird,.w3-row-padding>.w3-threequarter,.w3-row-padding>.w3-quarter,.w3-row-padding>.w3-col{padding:0 8px}
.w3-container,.w3-panel{padding:0.01em 16px}.w3-panel{margin-top:16px;margin-bottom:16px}
.w3-code,.w3-codespan{font-family:Consolas,"courier new";font-size:16px}
.w3-code{width:auto;background-color:#fff;padding:8px 12px;border-left:4px solid #4CAF50;word-wrap:break-word}
.w3-codespan{color:crimson;background-color:#f1f1f1;padding-left:4px;padding-right:4px;font-size:110%}
.w3-card,.w3-card-2{box-shadow:0 2px 5px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12)}
.w3-card-4,.w3-hover-shadow:hover{box-shadow:0 4px 10px 0 rgba(0,0,0,0.2),0 4px 20px 0 rgba(0,0,0,0.19)}
.w3-spin{animation:w3-spin 2s infinite linear}@keyframes w3-spin{0%{transform:rotate(0deg)}100%{transform:rotate(359deg)}}
.w3-animate-fading{animation:fading 10s infinite}@keyframes fading{0%{opacity:0}50%{opacity:1}100%{opacity:0}}
.w3-animate-opacity{animation:opac 0.8s}@keyframes opac{from{opacity:0} to{opacity:1}}
.w3-animate-top{position:relative;animation:animatetop 0.4s}@keyframes animatetop{from{top:-300px;opacity:0} to{top:0;opacity:1}}
.w3-animate-left{position:relative;animation:animateleft 0.4s}@keyframes animateleft{from{left:-300px;opacity:0} to{left:0;opacity:1}}
.w3-animate-right{position:relative;animation:animateright 0.4s}@keyframes animateright{from{right:-300px;opacity:0} to{right:0;opacity:1}}
.w3-animate-bottom{position:relative;animation:animatebottom 0.4s}@keyframes animatebottom{from{bottom:-300px;opacity:0} to{bottom:0;opacity:1}}
.w3-animate-zoom {animation:animatezoom 0.6s}@keyframes animatezoom{from{transform:scale(0)} to{transform:scale(1)}}
.w3-animate-input{transition:width 0.4s ease-in-out}.w3-animate-input:focus{width:100%!important}
.w3-opacity,.w3-hover-opacity:hover{opacity:0.60}.w3-opacity-off,.w3-hover-opacity-off:hover{opacity:1}
.w3-opacity-max{opacity:0.25}.w3-opacity-min{opacity:0.75}
.w3-greyscale-max,.w3-grayscale-max,.w3-hover-greyscale:hover,.w3-hover-grayscale:hover{filter:grayscale(100%)}
.w3-greyscale,.w3-grayscale{filter:grayscale(75%)}.w3-greyscale-min,.w3-grayscale-min{filter:grayscale(50%)}
.w3-sepia{filter:sepia(75%)}.w3-sepia-max,.w3-hover-sepia:hover{filter:sepia(100%)}.w3-sepia-min{filter:sepia(50%)}
.w3-tiny{font-size:10px!important}.w3-small{font-size:12px!important}.w3-medium{font-size:15px!important}.w3-large{font-size:18px!important}
.w3-xlarge{font-size:24px!important}.w3-xxlarge{font-size:36px!important}.w3-xxxlarge{font-size:48px!important}.w3-jumbo{font-size:64px!important}
.w3-left-align{text-align:left!important}.w3-right-align{text-align:right!important}.w3-justify{text-align:justify!important}.w3-center{text-align:center!important}
.w3-border-0{border:0!important}.w3-border{border:1px solid #ccc!important}
.w3-border-top{border-top:1px solid #ccc!important}.w3-border-bottom{border-bottom:1px solid #ccc!important}
.w3-border-left{border-left:1px solid #ccc!important}.w3-border-right{border-right:1px solid #ccc!important}
.w3-topbar{border-top:6px solid #ccc!important}.w3-bottombar{border-bottom:6px solid #ccc!important}
.w3-leftbar{border-left:6px solid #ccc!important}.w3-rightbar{border-right:6px solid #ccc!important}
.w3-section,.w3-code{margin-top:16px!important;margin-bottom:16px!important}
.w3-margin{margin:16px!important}.w3-margin-top{margin-top:16px!important}.w3-margin-bottom{margin-bottom:16px!important}
.w3-margin-left{margin-left:16px!important}.w3-margin-right{margin-right:16px!important}
.w3-padding-small{padding:4px 8px!important}.w3-padding{padding:8px 16px!important}.w3-padding-large{padding:12px 24px!important}
.w3-padding-16{padding-top:16px!important;padding-bottom:16px!important}.w3-padding-24{padding-top:24px!important;padding-bottom:24px!important}
.w3-padding-32{padding-top:32px!important;padding-bottom:32px!important}.w3-padding-48{padding-top:48px!important;padding-bottom:48px!important}
.w3-padding-64{padding-top:64px!important;padding-bottom:64px!important}
.w3-padding-top-64{padding-top:64px!important}.w3-padding-top-48{padding-top:48px!important}
.w3-padding-top-32{padding-top:32px!important}.w3-padding-top-24{padding-top:24px!important}
.w3-left{float:left!important}.w3-right{float:right!important}
.w3-button:hover{color:#000!important;background-color:#ccc!important}
.w3-transparent,.w3-hover-none:hover{background-color:transparent!important}
.w3-hover-none:hover{box-shadow:none!important}
/* Colors */
.w3-amber,.w3-hover-amber:hover{color:#000!important;background-color:#ffc107!important}
.w3-aqua,.w3-hover-aqua:hover{color:#000!important;background-color:#00ffff!important}
.w3-blue,.w3-hover-blue:hover{color:#fff!important;background-color:#2196F3!important}
.w3-light-blue,.w3-hover-light-blue:hover{color:#000!important;background-color:#87CEEB!important}
.w3-brown,.w3-hover-brown:hover{color:#fff!important;background-color:#795548!important}
.w3-cyan,.w3-hover-cyan:hover{color:#000!important;background-color:#00bcd4!important}
.w3-blue-grey,.w3-hover-blue-grey:hover,.w3-blue-gray,.w3-hover-blue-gray:hover{color:#fff!important;background-color:#607d8b!important}
.w3-green,.w3-hover-green:hover{color:#fff!important;background-color:#4CAF50!important}
.w3-light-green,.w3-hover-light-green:hover{color:#000!important;background-color:#8bc34a!important}
.w3-indigo,.w3-hover-indigo:hover{color:#fff!important;background-color:#3f51b5!important}
.w3-khaki,.w3-hover-khaki:hover{color:#000!important;background-color:#f0e68c!important}
.w3-lime,.w3-hover-lime:hover{color:#000!important;background-color:#cddc39!important}
.w3-orange,.w3-hover-orange:hover{color:#000!important;background-color:#ff9800!important}
.w3-deep-orange,.w3-hover-deep-orange:hover{color:#fff!important;background-color:#ff5722!important}
.w3-pink,.w3-hover-pink:hover{color:#fff!important;background-color:#e91e63!important}
.w3-purple,.w3-hover-purple:hover{color:#fff!important;background-color:#9c27b0!important}
.w3-deep-purple,.w3-hover-deep-purple:hover{color:#fff!important;background-color:#673ab7!important}
.w3-red,.w3-hover-red:hover{color:#fff!important;background-color:#f44336!important}
.w3-sand,.w3-hover-sand:hover{color:#000!important;background-color:#fdf5e6!important}
.w3-teal,.w3-hover-teal:hover{color:#fff!important;background-color:#009688!important}
.w3-yellow,.w3-hover-yellow:hover{color:#000!important;background-color:#ffeb3b!important}
.w3-white,.w3-hover-white:hover{color:#000!important;background-color:#fff!important}
.w3-black,.w3-hover-black:hover{color:#fff!important;background-color:#000!important}
.w3-grey,.w3-hover-grey:hover,.w3-gray,.w3-hover-gray:hover{color:#000!important;background-color:#9e9e9e!important}
.w3-light-grey,.w3-hover-light-grey:hover,.w3-light-gray,.w3-hover-light-gray:hover{color:#000!important;background-color:#f1f1f1!important}
.w3-dark-grey,.w3-hover-dark-grey:hover,.w3-dark-gray,.w3-hover-dark-gray:hover{color:#fff!important;background-color:#616161!important}
.w3-pale-red,.w3-hover-pale-red:hover{color:#000!important;background-color:#ffdddd!important}
.w3-pale-green,.w3-hover-pale-green:hover{color:#000!important;background-color:#ddffdd!important}
.w3-pale-yellow,.w3-hover-pale-yellow:hover{color:#000!important;background-color:#ffffcc!important}
.w3-pale-blue,.w3-hover-pale-blue:hover{color:#000!important;background-color:#ddffff!important}
.w3-text-amber,.w3-hover-text-amber:hover{color:#ffc107!important}
.w3-text-aqua,.w3-hover-text-aqua:hover{color:#00ffff!important}
.w3-text-blue,.w3-hover-text-blue:hover{color:#2196F3!important}
.w3-text-light-blue,.w3-hover-text-light-blue:hover{color:#87CEEB!important}
.w3-text-brown,.w3-hover-text-brown:hover{color:#795548!important}
.w3-text-cyan,.w3-hover-text-cyan:hover{color:#00bcd4!important}
.w3-text-blue-grey,.w3-hover-text-blue-grey:hover,.w3-text-blue-gray,.w3-hover-text-blue-gray:hover{color:#607d8b!important}
.w3-text-green,.w3-hover-text-green:hover{color:#4CAF50!important}
.w3-text-light-green,.w3-hover-text-light-green:hover{color:#8bc34a!important}
.w3-text-indigo,.w3-hover-text-indigo:hover{color:#3f51b5!important}
.w3-text-khaki,.w3-hover-text-khaki:hover{color:#b4aa50!important}
.w3-text-lime,.w3-hover-text-lime:hover{color:#cddc39!important}
.w3-text-orange,.w3-hover-text-orange:hover{color:#ff9800!important}
.w3-text-deep-orange,.w3-hover-text-deep-orange:hover{color:#ff5722!important}
.w3-text-pink,.w3-hover-text-pink:hover{color:#e91e63!important}
.w3-text-purple,.w3-hover-text-purple:hover{color:#9c27b0!important}
.w3-text-deep-purple,.w3-hover-text-deep-purple:hover{color:#673ab7!important}
.w3-text-red,.w3-hover-text-red:hover{color:#f44336!important}
.w3-text-sand,.w3-hover-text-sand:hover{color:#fdf5e6!important}
.w3-text-teal,.w3-hover-text-teal:hover{color:#009688!important}
.w3-text-yellow,.w3-hover-text-yellow:hover{color:#d2be0e!important}
.w3-text-white,.w3-hover-text-white:hover{color:#fff!important}
.w3-text-black,.w3-hover-text-black:hover{color:#000!important}
.w3-text-grey,.w3-hover-text-grey:hover,.w3-text-gray,.w3-hover-text-gray:hover{color:#757575!important}
.w3-text-light-grey,.w3-hover-text-light-grey:hover,.w3-text-light-gray,.w3-hover-text-light-gray:hover{color:#f1f1f1!important}
.w3-text-dark-grey,.w3-hover-text-dark-grey:hover,.w3-text-dark-gray,.w3-hover-text-dark-gray:hover{color:#3a3a3a!important}
.w3-border-amber,.w3-hover-border-amber:hover{border-color:#ffc107!important}
.w3-border-aqua,.w3-hover-border-aqua:hover{border-color:#00ffff!important}
.w3-border-blue,.w3-hover-border-blue:hover{border-color:#2196F3!important}
.w3-border-light-blue,.w3-hover-border-light-blue:hover{border-color:#87CEEB!important}
.w3-border-brown,.w3-hover-border-brown:hover{border-color:#795548!important}
.w3-border-cyan,.w3-hover-border-cyan:hover{border-color:#00bcd4!important}
.w3-border-blue-grey,.w3-hover-border-blue-grey:hover,.w3-border-blue-gray,.w3-hover-border-blue-gray:hover{border-color:#607d8b!important}
.w3-border-green,.w3-hover-border-green:hover{border-color:#4CAF50!important}
.w3-border-light-green,.w3-hover-border-light-green:hover{border-color:#8bc34a!important}
.w3-border-indigo,.w3-hover-border-indigo:hover{border-color:#3f51b5!important}
.w3-border-khaki,.w3-hover-border-khaki:hover{border-color:#f0e68c!important}
.w3-border-lime,.w3-hover-border-lime:hover{border-color:#cddc39!important}
.w3-border-orange,.w3-hover-border-orange:hover{border-color:#ff9800!important}
.w3-border-deep-orange,.w3-hover-border-deep-orange:hover{border-color:#ff5722!important}
.w3-border-pink,.w3-hover-border-pink:hover{border-color:#e91e63!important}
.w3-border-purple,.w3-hover-border-purple:hover{border-color:#9c27b0!important}
.w3-border-deep-purple,.w3-hover-border-deep-purple:hover{border-color:#673ab7!important}
.w3-border-red,.w3-hover-border-red:hover{border-color:#f44336!important}
.w3-border-sand,.w3-hover-border-sand:hover{border-color:#fdf5e6!important}
.w3-border-teal,.w3-hover-border-teal:hover{border-color:#009688!important}
.w3-border-yellow,.w3-hover-border-yellow:hover{border-color:#ffeb3b!important}
.w3-border-white,.w3-hover-border-white:hover{border-color:#fff!important}
.w3-border-black,.w3-hover-border-black:hover{border-color:#000!important}
.w3-border-grey,.w3-hover-border-grey:hover,.w3-border-gray,.w3-hover-border-gray:hover{border-color:#9e9e9e!important}
.w3-border-light-grey,.w3-hover-border-light-grey:hover,.w3-border-light-gray,.w3-hover-border-light-gray:hover{border-color:#f1f1f1!important}
.w3-border-dark-grey,.w3-hover-border-dark-grey:hover,.w3-border-dark-gray,.w3-hover-border-dark-gray:hover{border-color:#616161!important}
.w3-border-pale-red,.w3-hover-border-pale-red:hover{border-color:#ffe7e7!important}.w3-border-pale-green,.w3-hover-border-pale-green:hover{border-color:#e7ffe7!important}
.w3-border-pale-yellow,.w3-hover-border-pale-yellow:hover{border-color:#ffffcc!important}.w3-border-pale-blue,.w3-hover-border-pale-blue:hover{border-color:#e7ffff!important}



