html, body {height: 100%}

body {
	background-color: #ffffff;
	margin: 0;
	font-family: 'Noto Sans KR', sans-serif;
	font-size: 12px;
}


a {color:inherit; text-decoration:none;}
a:visited {color:inherit;}
a:hover {text-decoration:none;}

.al {text-align: left !important;}
.ar {text-align: right !important;}
.ac {text-align: center !important;}

input:focus, textarea:focus, select:focus {
	outline: none;
}

input[type=text], input[type=tel], input[type=email], input[type=number], input[type=password] {
	border: 1px #ccc solid;
	font-size: inherit;
	height: 26px;
	padding-left: 5px;
	padding-right: 5px;
	vertical-align: middle;
	border-radius: 3px;
}
input::placeholder {
	font-weight: normal;
	color: #ccc;
	font-size: 12px;
}
input[type=button],
input[type=submit] {
	height: 28px;
	padding-top: 0;
	padding-bottom: 0;
	border: 0;
	border-radius: 3px;
	background-color: #333;
	vertical-align: middle;
	color: #fff;
	cursor: pointer;
}

input.date {
	width: 90px;
}


/* Common Dialog */
.cdlg-matt {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: none;
}
.cdlg {
	position: fixed;
	margin: 0 auto;
	background-color: #fff;
	border: 1px #ccc solid;
	border-radius: 4px;
	box-shadow: 1px 3px 8px rgba(0,0,0,.3);
	text-align: center;
	top: 100px;
	/*max-height: calc(100% - 200px);*/
	display: none;
}
.cdlg .dlg-title-wrap {
	position: relative;
	height: 40px;
	background-color: #1c94c4;
	color: #fff;
	cursor: move;
	cursor: grab;
}
.cdlg .dlg-title {
	color: #fff;
	font-size: 14px;
	padding-top: 8px;
}
.cdlg .dlg-title-wrap .close {
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
	width: 30px;
	background: url(images/btn-close-white.png) no-repeat center center;
	cursor: pointer;
}

.cdlg .dlg-body {

}
.cdlg .dlg-content {
	padding: 20px 10px;
}

.cdlg .dlg-desc {
	padding: 10px;
	line-height: 150%;
	border: 1px #ccc solid;
	background-color: #f1f1f1;
	text-align: left;
}


.cdlg .dlg-item-help {
	padding: 5px 0;
	color: #888;
}
.cdlg .dlg-table-item {
	width: 100%;
	border-spacing: 0;
	border: 1px #ccc solid;
	border-collapse: collapse;
}
.cdlg .dlg-table-item th {
	border: 1px #ccc solid;
	background-color: #eee;
	padding: 4px 5px;
	font-weight: normal;
	text-align: left;
}
.cdlg .dlg-table-item td {
	border: 1px #ccc solid;
	padding: 4px 5px;
	text-align: left;
}

.cdlg .dlg-table-item input[type=text],
.cdlg .dlg-table-item input[type=number],
.cdlg .dlg-table-item input[type=tel],
.cdlg .dlg-table-item input[type=email] {
	width: calc(100% - 10px);
	border: 1px #d7d7d7 solid;
	padding-left: 4px;
	padding-right: 4px;
}

.cdlg .dlg-table-item textarea {
	width: calc(100% - 10px);
	height: 70px;
	padding: 5px;
	line-height: 130%;
}


.cdlg .dlg-foot {
	padding: 10px;
	text-align: center;
	border-top: 1px #ccc solid;
	background-color: #f1f1f1;
}

.cdlg .dlg-foot input[type=button],
.cdlg .dlg-foot input[type=submit] {
	padding: 0 20px 0 20px;
	height: 28px;
	background-color: #1c94c4;
	color: #fff;
	border: 0;
	border-radius: 3px;
	font-size: 12px;
}
.cdlg .dlg-foot input[type=button]:hover,
.cdlg .dlg-foot input[type=submit]:hover {
	background-color: #f80;
}
