@charset "utf-8";

/* 폰트적용 */
@import url("../font/OpenSans/OpenSans.css");
@import url("../font/NotoSans/NotoSansKR.css");

/**
* File Name : default.css
* Description : 기본 스타일시트
*/

/* 기본설정 */
* {
	box-sizing: border-box;
	-ms-user-select: none;
	-moz-user-select: -moz-none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	user-select:none;

	outline: none;
}

html, body {
	width: 100%;
	height: 100%;
	font-family: 'Open Sans', sans-serif;
	font-size: 16px;
}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form,
	fieldset, input, textarea, p, blockquote, th, td {
	padding: 0;
	margin: 0;
	line-height: normal;
	-webkit-text-size-adjust: none;
}

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

h1, h2, h3, h4, h5, h6 {
	font-weight: normal;
	font-size: 100%;
}

form, fieldset {
	border: 0;
}

address, caption, em {
	font-weight: normal;
	font-style: normal;
}

img {
	border: 0;
	margin: 0;
	padding: 0;
}

button {
	margin: 0;
	padding: 0;
	border: none;
	background-color: rgba(0, 0, 0, 0);
	outline: none;
	cursor: pointer !important;
}

/* a:link, a:visited, a:hover, a:active순서로 작성 */
a, a:link {
	color: #555;
	text-decoration: none;
}

a:visited, a.visited, a.visited:visited {
	color: inherit;
	text-decoration: none;
}

a:hover, a.visited:hover, a:active {
	color: inherit;
	text-decoration: none;
}

a:focus {
	text-decoration: none;
}

/* 숨김영역 */
.hidden {
	display: none;
}

/* 이미지 인풋등 세로중앙정렬 */
input, textarea, select, img {
	vertical-align: middle;
}

/* 드래그시 배경컬러 */
::-moz-selection {
	background: #454545;
	color: #fff;
}

::selection {
	background: #454545;
	color: #fff;
}

.no-drag {
	-moz-user-select: none;
	-webkit-user-select: none;
	cursor: unset;
}

input[type="text"] {
	outline: none;
}

textarea {
	outline: none;
}

/* 레이아웃 */