
/************************* 초기화 *************************/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-weight: inherit;
	font-style: inherit;
	/* font-size: 100%; */
	/* font-size: 11px; */
	/* font-family: '굴림',gulim,sans-serif; */
	font-family: '돋움',dotum,sans-serif;
	vertical-align: baseline;
}
fieldset legend {display:none;}
i { font-style:normal !important; }

:focus {
	outline: 0;
}
body {
	line-height: 1;
	color: black/*#575757*/;
	background: #fff; /*#f7f7f7;*/
}
ol, ul {
	list-style: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
}
blockquote, q {
	quotes: "" "";
}
table {
  width: 100%;
	table-layout:fixed;
	border-spacing: 0;
}

label { /* padding:3px 0; cursor:pointer; display:inline-block;  */}
input[type='radio'],
input[type='checkbox'] { vertical-align:middle; }

input.disable, select.disable, textarea.disable { background:#f7f7f7; }

textarea {
  resize: none;
}

caption, th, td {
	text-align: left;
	font-weight: normal;
}

img { border:0; vertical-align: middle; }
img.cal { vertical-align: middle; }

.vertical-middle { vertical-align: middle !important; }
p + p { margin-top:5px; }

a { color: #777; text-decoration: none;}
a:hover { /* color: #000;  */text-decoration: underline; }

/************************************ 데이터 로딩중 백그라운드 ***************************/
#loadingBg {
  position: fixed;
  top: 0;
  left: 0;
  width:100%;
  height: 100%;
  background: #000;
  opacity: 0.7;
  z-index: 10000;
}
#loadingBox.show {
  opacity: 1;
  display: block;
}
#loadingBox.hide {
  opacity: 0;
  display: none;
}
#loadingBox {
  position: fixed;
  display: block;
  z-index: 10001;
  clear: both;
  top: 50%;
  left: 50%;
  transition: opacity .5s;
  opacity: 1;
}
/** 로딩 프로세스 바 */
#loading-progress.show {
  opacity: 1;
  display: flex;
}
#loading-progress.hide {
  opacity: 0;
  display: none;
}
#loading-progress {
  position: fixed;
  height: 1rem;
  overflow: hidden;
  font-size: .75rem;
  background-color: #e9ecef;
  border-radius: .25rem;
  width: 200px;
  top: 55%;
  left: 50%;
  margin-left: -100px;
  z-index: 10001;
}
#loading-progress-bar {
  background-color: #03c75a;
  transition: width .6s ease;
}
#loading-progress-text {
  position: absolute;
  left: 50%;
  transform: translate(-50%);
}
/** 로딩 이미지에 애니메이션 바 */
.loading-box-bg {
  height: 5px;
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  background: #fff;
  opacity: 0.5;
  margin-left: -50%;
  border-radius: 10%;
  animation: spin-bar 1.5s linear infinite;
  -webkit-animation: spin-bar 1.5s linear infinite;
  -moz-animation: spin-bar 1.5s linear infinite;
}
@-moz-keyframes spin-bar {
  0% { background: #fff; -moz-transform: translate(0px, 0px); }
  /* 50% { background: #f7f7f7; -moz-transform: translate(0px, -10px); } */
  70% { background: #000; -moz-transform: translate(0px, -20px); }
  100% { -moz-transform: translate(0px, -30px); }
}
@-webkit-keyframes spin-bar {
  0% { background: #fff; -webkit-transform: translate(0px, 0px); }
  /* 50% { background: #f7f7f7; -webkit-transform: translate(0px, -10px); } */
  70% { background: #000; -webkit-transform: translate(0px, -20px); }
  100% { -webkit-transform: translate(0px, -30px); }
}
@keyframes spin-bar {
  0% { background: #fff; transform: translate(0px, 0px); }
  /* 50% { background: #f7f7f7; transform: translate(0px, -10px); } */
  70% { background: #000; transform: translate(0px, -20px); }
  100% { -webkit-transform: translate(0px, -30px); transform: translate(0px, -30px); }
}
@-moz-keyframes spin {
  100% { -moz-transform: rotate(-360deg); }
}
@-webkit-keyframes spin {
  100% { -webkit-transform: rotate(-360deg); }
}
@keyframes spin {
  100% { -webkit-transform: rotate(-360deg); transform:rotate(-360deg); }
}
#loadingBox > img {
  width: 100%;
  margin-left: -50%;
}

/************************* 공통 *************************/
body { font-size: 11px; }
/* body, html {height:100%} */
