@charset "UTF-8";

/*
*
* Tasty.CSS 0.1.1 Simplified Edition for Tistory
* Copyright 2015, Lawlite <lawlite9@gmail.com>
* Licensed under the MIT License
*
*/

/* Base
------------------------------
*/

html {
	font-size: 1em;
}

body {
	margin: 0;
	font-family: 'Noto Sans Korean',"Apple SD Gothic Neo",NanumBarunGothic,"나눔바른고딕",NanumGothic,"나눔고딕","Malgun Gothic","Helvetica Neue",Helvetica,"Open Sans",Arial,Dotum,"돋움",sans-serif;
  /* For Korean */
	letter-spacing: -1px;
	font-size: 1.25rem;
	font-weight: 300;
	line-height: 1.6;
	color: #333;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

a:link,
a:visited {
	color: #3598D9;
	text-decoration: none;
	outline: 0;
}

a:link:focus,
a:link:hover,
a:visited:focus,
a:visited:hover {
	color: #2A80B8;
	border-bottom: 1px dashed #2A80B8;
}

::-moz-selection {
	background: #BAE7F7;
	text-shadow: none;
}

::selection {
	background: #BAE7F7;
	text-shadow: none;
}

textarea {
	resize: vertical;
	overflow: auto;
}

b, strong {
	font-weight: bold;
}

/* Grid
------------------------------
*/

.container {
	position: relative;
	width: 100%;
	box-sizing: border-box;
	padding: 0 10px;
	margin: 0 auto;
}

@media (min-width: 400px) {
	.container {
		padding: 0 10px;
	};
}

@media (min-width: 1024px) {
	.container {
		width: 96%;
		padding: 0;
	};
}

@media (min-width: 1180px) {
	.container {
		width: 92%;
		padding: 0;
	};
}

@media (min-width: 1380px) {
	.container {
		width: 88%;
		padding: 0;
	};
}

@media (min-width: 1580px) {
	.container {
		width: 84%;
		padding: 0;
	};
}

@media (min-width: 1880px) {
	.container {
		width: 80%;
		padding: 0;
	};
}

.container::after, .container::before, .clearfix::after, .clearfix::before {
	content: "";
	display: table;
}

.container::after, .clearfix::after {
	clear: both;
}

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col-fix-1, .col-fix-2, .col-fix-3, .col-fix-4, .col-fix-5, .col-fix-6, .col-fix-7, .col-fix-8, .col-fix-9, .col-fix-10, .col-fix-11, .col-fix-12, .col-gold-s, .col-gold-l {
	position: relative;
	float: left;
	padding-left: 10px;
	padding-right: 10px;
	box-sizing: border-box;
	width: 100%;
}

/* Always (no-responsive) fixed width columns */
.col-fix-1 {
	width: 8.3333%;
}

.col-fix-2 {
	width: 16.6667%;
}

.col-fix-3 {
	width: 25%;
}

.col-fix-4 {
	width: 33.3333%;
}

.col-fix-5 {
	width: 41.6667%;
}

.col-fix-6 {
	width: 50%;
}

.col-fix-7 {
	width: 58.3333%;
}

.col-fix-8 {
	width: 66.6667%;
}

.col-fix-9 {
	width: 75%;
}

.col-fix-10 {
	width: 83.3333%;
}

.col-fix-11 {
	width: 91.6667%;
}

.col-fix-12 {
	width: 100%;
}

/* Device width >= 560px */
@media (min-width: 560px) {
}

/* Device width >= 1024x */
@media (min-width: 1024px) {
	.col-1 {
		width: 8.3333%;
	}

	.col-2 {
		width: 16.6667%;
	}

	.col-3 {
		width: 25%;
	}

	.col-4 {
		width: 33.3333%;
	}

	.col-5 {
		width: 41.6667%;
	}

	.col-6 {
		width: 50%;
	}

	.col-7 {
		width: 58.3333%;
	}

	.col-8 {
		width: 66.6667%;
	}

	.col-9 {
		width: 75%;
	}

	.col-10 {
		width: 83.3333%;
	}

	.col-11 {
		width: 91.6667%;
	}

	.col-12 {
		width: 100%;
	};
}

/* Button
------------------------------
*/

button, input[type="submit"], input[type="reset"], input[type="button"] {
	display: inline-block;
	padding: 5px 10px;
	color: #333;
	text-align: center;
	vertical-align: middle;
	font-size: 1rem;
	letter-spacing: -1px;
	text-decoration: none;
	white-space: nowrap;
	background-color: transparent;
	border-radius: 2px;
	border: 1px solid #ccc;
	cursor: pointer;
	-moz-appearance: button;
	-webkit-appearance: button;
}

button[disabled], input[disabled] {
	cursor: not-allowed;
}

.pull-right {
	float: right;
}

.pull-left {
	float: left;
}

.div-center {
/* margin: 0 auto; */
/* vertically and horizontally align, it needs a parent div with relative position */
	margin: auto;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
}

.txt-center {
	text-align: center;
}

.txt-right {
	text-align: right;
}

.txt-left {
	text-align: left;
}

.txt-justify {
	text-align: justify;
}

.hidden {
	display: none !important;
}

.invisible {
	visibility: hidden;
}

.fixed-position {
	position: fixed !important;
}

.no-padding {
	padding: 0;
}

.img-responsive {
	display: block;
	max-width: 100%;
	height: auto;
}

.img-circle {
	border-radius: 50%;
}

.img-rounded {
	border-radius: 4px;
}

.img-crop {
	position: absolute;
	left: -100%;
	right: -100%;
	top: -100%;
	bottom: -100%;
	margin: auto;
	height: auto;
	width: auto;
}

.force-3d {
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	-webkit-perspective: 1000;
	-moz-perspective: 1000;
	-ms-perspective: 1000;
	perspective: 1000;
}

.recentbrowser {
	margin: 0.2em 0;
	background: #D85358;
	color: #fff;
	padding: 0.2em 0;
}
