@charset "UTF-8";
@import url(http://fonts.googleapis.com/earlyaccess/notosanskr.css);




* { margin:0; padding:0; border:0;  -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; font-family: 'Noto Sans KR', sans-serif; color: #373737; font-size: 8px; }
* a { color: #373737; }
a:link { text-decoration: none }
a:visited { text-decoration: none }
a:hover { text-decoration: none }
a:active { text-decoration: none }
ol, ul, li { list-style:none }
input,select,textarea,button { outline: none; background: none; }
iframe, video, embed, object { max-width: 100%; }
#tistorytoolbarid { display:none }
.entry-ccl { display: none; }
.container_postbtn .postbtn_ccl { display: none; }

@keyframes background {
  0% {
    background-position: 0% 50%;
  } 50% {
      background-position: 100% 50%;
  } 100% {
      background-position: 0% 50%;
  }
}
html {
    width: 100%;
    height: 100vh;
    background-size: 400% 1200%;
  
    background-image: linear-gradient(-45deg, #ccccff 0%, #efe3c7 25%, #d4c7ef 50%, #c8c4ee 100%);
    background-color: #e5dcf8;
  
    animation: background 15s ease infinite;
}


body { 
    word-break: normal; 
    word-wrap: break-word;

	  margin-top: 88px
}




/* 스크롤 */
::-webkit-scrollbar {
	width:2px;
	background-color:rgba (255, 255, 255, 0);
}
::-webkit-scrollbar-thumb {
	width:2px;
	background-color:#9aa5ea;
}


/* 드래그 */
::selection{ 
  color: transparent; 
  text-shadow: 0 0 2px #373737; 
  transition: all 250ms ease-in; 
} 
::-moz-selection{ 
  color: transparent; 
  text-shadow: 0 0 2px #373737; 
  transition: all 250ms ease-in; 
} 


/* 더보기 */
.moreless_fold span, .moreless_top span, .moreless_bottom span { 
    transition: 0.6s; 
    font-size: 8px; 
}
.moreless_fold:before { 
    font-family: 'FontAwesome'; 
    content: '\f067'; 
    margin-right: 5px; 
}
.moreless_top:before { 
    font-family: 'FontAwesome'; 
    content: '\f077'; 
    margin-right: 5px; 
}
.moreless_content { 
    padding: 10px; 
    margin: 10px 0; 
    border: 1px solid #ffe25c;  
    border-radius: 4px; 
}
.moreless_bottom { 
    text-align: right; 
}
.moreless_bottom:after { 
    margin-left: 5px; 
    font-family: 'FontAwesome'; 
    content: '\f077'; 
}
.moreless_fold span:hover, .moreless_top span:hover, .moreless_bottom span:hover { 
    letter-spacing: 4px; 
}


/* header */
#header { 
    width: 100%;
    border: 1px solid rgba(55, 55, 55, 0.2);
    border-radius: 3px;
    margin-bottom: 20px;
    text-align: center;
    -webkit-box-shadow: 1px 1px 1px -1px rgba(55, 55, 55, 0.5); 
    -moz-box-shadow: 1px 1px 1px -1px rgba(55, 55, 55, 0.5);
    box-shadow: 1px 1px 1px -1px rgba(55, 55, 55, 0.5);
    background: rgba(255, 255, 255, 0.8);
}
#header i {
    font-size: 13px;
    transition: .4s;
}
#header li { 
    display: inline-block; 
}
#header li a {
    display: block;
    padding: 7px 15px;
}
#header li a:hover i {
    transform: rotateY(180deg);
    color: #ffe25c;
}


/* footer */
.footer {
    width: 100%;
    border: 1px solid rgba(55, 55, 55, 0.2);
    border-radius: 3px;
    margin-top: 20px;
    text-align: center;
    -webkit-box-shadow: 1px 1px 1px -1px rgba(55, 55, 55, 0.5); 
    -moz-box-shadow: 1px 1px 1px -1px rgba(55, 55, 55, 0.5);
    box-shadow: 1px 1px 1px -1px rgba(55, 55, 55, 0.5);
    background: rgba(255, 255, 255, 0.8);
}
.footer i {
    font-size: 13px;
    transition: .4s;
}
.footer a {
    display: inline-block;
    padding: 7px 15px;
}
.footer a:hover i {
    color: #ffe25c;
}
.no-more-prev, .no-more-next { 
    opacity: 0.2; 
}
.footer .no-more-prev:hover i, .footer .no-more-next:hover i {
	color: #373737;
}
.search input { 
    width: 40px; 
    height: 17px; 
    border-bottom: 1px solid #373737; 
    padding: 1px; 
}
.search input:focus {
    border-bottom: 1px solid #ffe25c;
}


/* content */
#content {
    width: 100%;
    border: 1px solid rgba(55, 55, 55, 0.2);
    border-radius: 3px;
    padding: 15px; 
    -webkit-box-shadow: 1px 1px 1px -1px rgba(55, 55, 55, 0.5); 
    -moz-box-shadow: 1px 1px 1px -1px rgba(55, 55, 55, 0.5);
    box-shadow: 1px 1px 1px -1px rgba(55, 55, 55, 0.5);
    background:  rgba(255, 255, 255, 1);
    overflow: hidden;
}

/* searchList */
.back_s { 
    margin-bottom: 30px;
}
.back { 
    display: inline-block; 
}
.back a {
    display: block;
    width: 20px;
}
.back a:hover {
    -moz-animation-duration: .5s;
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
    -moz-animation-name: slidein;
    -webkit-animation-name: slidein;
    animation-name: slidein;
    -moz-animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -moz-animation-direction: alternate;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
}
@-moz-keyframes slidein {
    from {
        margin-left: 0;
    }
    to {
        margin-left: -5px;
    }
}
@-webkit-keyframes slidein {
    from {
        margin-left: 0;
    }
    to {
        margin-left: -5px;
    }
}
@keyframes slidein {
    from {
        margin-left: 0;
    }
    to {
        margin-left: -5px;
    }
}
.searchList { 
    width: 90%;
    float: right;
    text-align: right;
    font-weight: bold;
    font-size: 8.5px;
    color: #373737;
    cursor: default;
}


/* list */
.list_wrap:after { 
    display: block; 
    clear: both; 
    content: ''; }
#lst_gal .list_content .date, #lst_gal .list_content .listTitle { 
    display: none; 
}
#lst_gal .list_content { 
    width: 32.3%; 
    margin: 0.5%; 
    float: left; 
    position: relative; 
    -moz-box-sizing: border-box; 
    -webkit-box-sizing: border-box; 
    box-sizing: border-box; 
}
#lst_gal .list_content .thumb { 
    width: 100%; 
    height: auto; 
    overflow: hidden; 
}
#lst_gal .list_content .thumb img { 
    display: block; 
    width: 100%; 
    height: auto; 
    position: relative; 
}
#lst_gal .list_content .overlay { 
    opacity: 0; 
    position: absolute; 
    top: 0; 
    bottom: 0; 
    left: 0; 
    right: 0; 
    height: 100%; 
    width: 100%; 
    transition: .5s ease; 
    background-color: rgba(0, 0, 0, 0.4); 
}
#lst_gal .list_content .overlay_title { 
    color: white; 
    position: absolute; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
    -ms-transform: translate(-50%, -50%); 
    text-align: left; 
    font-size: 8px; 
    max-width: 90%; 
    white-space: nowrap; 
    text-overflow: ellipsis; 
    overflow: hidden; 
    font-weight: bold; 
}
#lst_gal .list_content:hover .overlay { 
    opacity: 1; 
    position: absolute; 
}

#lst_web .list_content .date, #lst_web .list_content .thumb, #lst_web .list_content .overlay {
    display: none;
}
#lst_web .list_content { 
    border-bottom: 1px solid rgba(55, 55, 55, 0.3);
    padding: 5px 1px;
    margin-bottom: 3px;
}
#lst_web .list_content .listTitle {
    transition: .4s; 
    max-width:90%; 
    white-space: nowrap; 
    text-overflow: ellipsis; 
    overflow: hidden;
}
#lst_web .list_content .listTitle:hover {
    letter-spacing: 1px;
    font-weight: bold;
}


/* 본문 */
.Wrap_title {
    border-bottom: 1px solid rgba(55, 55, 55, 0.08);
    padding-bottom: 7px;
}
.titleWrap {
    float: right;
    text-align: center;
    font-weight: bold;
    white-space: nowrap; 
    text-overflow: ellipsis; 
    overflow: hidden;
}
.date {
    font-size: 8px;
    color: rgba(55, 55, 55, 0.5);
    cursor: default;
}
.admin {
    width: 40%;
    float: right;
    text-align: right;
}
.admin i {
    font-size: 8px;
    color: rgba(55, 55, 55, 0.5);
    transition: .4s; 
}
.admin i:hover {
    color: #373737;
}
.entry .article {
    margin: 25px 0;
}
.tagTrail {
    text-align: right;
    border-top: 1px solid rgba(55, 55, 55, 0.05);
    border-bottom: 1px solid rgba(55, 55, 55, 0.05);
    padding: 5px 0;
    margin-bottom: 10px;
}
.tagTrail a {
    cursor: pointer;
    color: rgba(55, 55, 55, 0.7);
    font-size: 8px;
}
.actionTrail {
    margin-bottom: 30px;
}
.actionTrail .cnt img { 
    transition: 0.3s;
    opacity: .7; 
}
.actionTrail .cnt img:hover { 
    opacity: 1; 
}

/* 커버 */
h1 {
	font-size:11px;
	margin-top:10px;
}
.cover_notice .xi-bell {
	color:#ece4f8;
	font-size:9px;
	margin-left:6px;
}
.xi-folder-open {
	color:#ece4f8;
	font-size:9px;
	margin-left:6px;
}

/*커버 갤러리*/

.cover_gal .thumb_gal {
	float:left;
	width:22.8%;
	 margin-top:1%;
	 margin-bottom:1%;
	 margin-left:2%;
	position:relative;
	display:inline-block;
	 overflow:hidden;
}
.cover_gal .thumb_gal .thumb_post {
	position:relative;
	display:block;
	overflow:hidden;
}
.cover_gal .thumb_post img {
	width:100%;
	display:block;
}
.thumb_gal .thumb_post img:hover {
	-webkit-transition:all 0.60s ease;
	transition:all 0.60s ease;
	background-color:rgba(255,255,255,0.50);
}

.cover_gal .info .title {
	display: block;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	position: absolute;
	top: 50%;
	left: 0;
	z-index: 30;
	overflow: hidden;
	width: 100%;
	max-height: 4.2em;
	text-align: center;
	line-height: 1.4;
	padding: 0 20px;
	box-sizing: border-box;
	transform: translateY(-50%);
}

.cover_gal a .info {
	opacity: 0;
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	transition: .5s;
}

.cover_gal a:hover img {
	-webkit-filter: blur(1px);
	filter: blur(1px);
	opacity: 0.5;
}

.cover_gal a:hover .info {
	opacity: 1;
}


/* 보호글 */
.article_P { 
    margin: 60px 0; 
    text-align: center; 
}
.article_P .lock { 
    font-weight: bold; 
    margin-bottom: 25px; 
}
.p_input { 
    width: 70px; 
    height: 20px; 
    border-bottom: solid 1px rgba(55, 55,55, 0.2); 
    vertical-align: bottom; 
    padding: 5px; 
}


/* 공지 */
.entryNotice { padding: 20px; }
.entryNotice:last-child { margin-bottom: 0; }
.entryNotice .notice_date { font-weight: bold; margin-bottom: 10px; }
.entryNotice .article { text-align: justify; }


/* 댓글, 방명록 */
.name {
    display: inline-block;
    font-weight: bold;
    margin-bottom: 3px;
}
.control {
    float: right;
    width: 30%;
    text-align: right;
    transition: 0.3s;
}
.control a {
    font-size: 9px;
    transition: 0.3s;
    opacity: .8;
}
.control a:hover {
    opacity: 1;
    font-weight: bold;
}
.ny {
    margin-left: 5px;
    margin-bottom: 10px;
}
.rp {
    margin-left: 30px;
}
.rep {
    border-bottom: 1px solid rgba(55, 55, 55, 0.08);
    margin-bottom: 30px;
    padding-bottom: 20px;
}
.commentList .rep:last-child {
    margin-bottom: 50px;
}
.rp_admin .name a, .guest_admin .name a {
    color: #ffe25c;
}
.hiddenComment .name:before { 
    content:"secret"; 
}



/* write */
.commentWrite {
    margin-top: 50px;
}
.gwrite input { 
    width: 35%; 
    border-bottom: 1px solid rgba(55, 55, 55, 0.2); 
    padding: 2px; 
}
.guestWrite textarea { 
    width: 100%; 
    height: 70px; 
    border: 1px solid rgba(55, 55, 55, 0.2); 
    margin-top: 10px; 
    padding: 5px; 
}
.commentWrite textarea { 
    width: 100%; 
    height: 70px; 
    border: 1px solid rgba(55, 55, 55, 0.2); 
    margin-top: 10px; 
    padding: 5px; 
}
.guestWrite .gsubmit { 
    margin-bottom: 60px; 
}
.gsubmit button { 
    width: 100%; 
    line-height: 25px; 
    border: 1px solid rgba(55, 55, 55, 0.2); 
    opacity: .5; 
    transition: 0.4s; 
}
.gsubmit button:hover { 
    opacity: 1; 
    color: #ffe25c;
    border: 1px solid #ffe25c;
}
.checkbox { 
    display: none; 
}
.lb_secret { 
    display: block; 
    text-align: center; 
    height: 25px; 
    margin-bottom: 3px;
}
.checkbox + .lb_secret:after { 
    content:"SECRET"; 
    display: block; 
    line-height: 23px;
    opacity: .5; 
    border: 1px solid rgba(55, 55, 55, 0.2);
}
.checkbox:checked + .lb_secret:after { 
    content:"SECRET"; 
    display: block; 
    line-height: 23px;
    opacity: 1;  
    color: #ffe25c;
    border: 1px solid #ffe25c;
}


/* copyright */
.copyright img { width: 12px; position: fixed; text-align: left; cursor: pointer; left: 20px; bottom: 20px; opacity: .6; transition: 0.4s; }
.copyright img:hover { opacity: 1; }



/* 피씨 */
@media all and (min-width:550px) {
    #container { width: 400px; margin: 70px auto; }
    #header li a { padding: 7px 15px; }
	.search { padding: 7px 10px; }
    .control { opacity: 0; }
    .desc:hover .control { opacity: 1; }
    .titleWrap { width: 93% }

}


/* 모바일 */
@media all and (max-width:500px) {
    #container { width: 82%; margin: 20px auto; }
    #header li a { padding: 7px 10px; }
	.search { padding: 7px 10px; }
    .titleWrap { width: 92% }
}

/* Start https://www.cursors-4u.com */ * {cursor: url(https://cur.cursors-4u.net/cursors/cur-9/cur817.cur), auto !important;} /* End https://www.cursors-4u.com */