@charset "utf-8";

/* HTML Elements
---------------------------------------------------------*/
article,aside,figcaption,figure,footer,header,hgroup,main,nav,section { display:block;margin:0;padding:0;border:0; }
* { margin:0;padding:0; }
body {
  font: 13px/1.5 '맑은 고딕', Malgun Gothic, sans-serif;
  color: #333;
  background: url(/images/main.jpg) no-repeat center/cover;
  background-attachment: fixed;
}
hr { display:none; }
img,fieldset,button { border:none; vertical-align: middle; }
ul, ol { list-style:none; }
legend,caption { position:relative;width:0;height:0;font-size:0;line-height:0;overflow:hidden;text-indent:-9999px; }
a:link, a:visited { color:#222;text-decoration:none;cursor: pointer; }
a:hover, a:active { color:#4271cd;text-decoration:none;cursor: pointer; }
table a:link, table a:visited { color:#4271cd; text-decoration:none; }
/*table a:link, table a:visited { text-decoration:none; }*/
table a:hover, table a:active { text-decoration: underline; color:#2d72da; }
table { border-collapse:collapse;width:100%; }
table td { word-break:break-all;  }
table th{ font-weight:600; white-space:nowrap; }
td.cont { height:150px; vertical-align:top; }
input[type="text"], input[type="password"], input[type="search"], input[type="file"], input[type="date"], select, textarea, button {font:12px '맑은 고딕', Malgun Gothic, sans-serif;}
input[type="text"], input[type="password"], input[type="search"], input[type="file"] {height:25px;padding:2px 5px;border:1px solid #d5d5d5;color:#444444;box-sizing:border-box;vertical-align:middle;}

/* 로그인 */
#wrapping {
    width: 100%;
    height: 520px;
    position: absolute;
    left: 50%;
    margin-left: -50%;
    margin-top: -260px;
    vertical-align: middle;
    top: 50%;
}

#wrapping .Login {
	position: absolute;
	width: 400px;
	height: 400px;
	top: 50%;
	left: 30%;
	margin: -230px 0 0 -250px;
	border: 1px solid #cfdbe2;
	font-weight: 300;
	background: #fff;
	border-radius: 12px;	
}

/* 로그인 상자 안의 로그인 폼 부분 */
#wrapping .Login .login_box dl {
    width: 100%;
}

#wrapping .Login .login_box dt {
    width: 70px;
    padding: 5px 0 5px 0px;
    font-size: 13px;
    color: #939393;
    letter-spacing: -1px;
}

#wrapping .Login h1 {
    width: 340px;
    height: 43px;
    left: 30px;
    top: 40px;
    position: absolute;
    font-size: 23px;
}

#wrapping .Login h1 img {
    vertical-align: middle;
    padding-right: 15px;
    padding-bottom: 3px;
}

#wrapping .Login .login_box {
    width: 340px;
    top: 110px;
    position: relative;
    left: 30px;
}
#wrapping .Login .login_box dd {
    width: 100%;
    padding: 2px 0 20px 0;
}

#wrapping .Login .login_box input[type='text'], #wrapping .Login .login_box input[type='password'] {
    width: 100%;
    height: 35px;
    border: 0px;
    border-bottom: 1px solid #cfd4d9;
    font-size: 14px;
    color: #202020;
}


#wrapping .Login .login_box input::placeholder {
    color: #202020;
}

#wrapping .Login .login_box input::-webkit-input-placeholder {
    color: #202020;
}

#wrapping .Login .login_box input:-ms-input-placeholder {
    color: #202020;
}

#wrapping .Login .btn_login {
    display: block;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    padding: 0;
    background: #0d4082;
    border: solid 0px #004899;
    border-radius: 3px;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
}

#wrapping .Login .login_box p {
    height: 40px;
}

#wrapping .Login .login_box .checkbox {
    font-size: 12px;
    color: #202020
}

#wrapping .Login .login_box .checkbox input+label {
    display: inline-block;
}

#wrapping .Login .login_box .checkbox input+label>span {
    display: inline-block;
}


/* The checkbox */
.checkbox {
    display: block;
    position: relative;
    padding-left: 25px;
    margin-bottom: 30px;
    cursor: pointer;
    font-size: 13px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 16px;
    width: 16px;
    background-color: #fff;
    border: 2px solid #d0d0d0;
    border-radius: 5px;
}

/* On mouse-over, add a grey background color */
.checkbox:hover input ~ .checkmark {
    background-color: #fff;
}

/* When the checkbox is checked, add a blue background */
.checkbox input:checked ~ .checkmark {
    background-color: #fff;
    border: 2px solid #12263f;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.checkbox input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.checkbox .checkmark:after {
    left: 6px;
    top: 2px;
    width: 3px;
    height: 8px;
    border: solid #12263f;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
