.wp100 {
	width:100%;
}

.wx70 {
	width:70px;
}
.wx100 {
	width:100px;
}
.wx150 {
	width:150px;
}
.wx160 {
	width:160px;
}
.wx180 {
	width:180px;
}
.wx200 {
	width:200px;
}


textarea {
	overflow: auto;
	overflow-x: hidden;
	padding: 5px;
	border: 1px solid #ddd;
}
*+html textarea {
	margin-top: -1px;
}

select {
	height: 34px;
	padding: 0.2em 2.1em 0.2em 0.5em;
	border: 0px solid transparent;
	background:url(/img/board_skin/arrow1.png) no-repeat 97% 50% #f4f6f9;
	border-radius:4px;
	-webkit-appearance: none;
	-moz-appearance:none;
	-webkit-appearance:none;
	appearance:none;
}
select::-ms-expand {
	display: none;
}
::-webkit-selection { /* Edge */
	color: #000;
}
::-moz-selection {
	color:#000;
}
::selection {
	color:#000;
}

input::-webkit-input-placeholder { /* Edge */
	color: #aaa;
}

input:-ms-input-placeholder { /* Internet Explorer 10-11 */
	color: #aaa;
}

input::placeholder {
	color: #aaa;
}

input[type=text] ,  input[type=email] ,  input[type=number], input[type=file], input[type=password] ,  input[type=date] ,  input[type=time] {
	height: 42px;
	padding: 0px 3px;
	line-height: 40px;
	border: 1px solid #ddd;
}
input[type=text].line, input[type=file].line, input[type=password].line {
	height: 30px;
	line-height: 30px;
	border: 1px solid #ddd;
	padding-left: 5px;
}
input[type=checkbox], input[type=radio] {
	margin: 0px;
	padding: 0px;
	height: 12px;
}



/*** anchor reset ***/
a {
	color: #777;
	text-decoration: none;
}
a:hover {
	color: #000066;
	text-decoration: underline;
}
a:active, a:visited {
	text-decoration: none;
}
.link-type02 {
	color: #5591c6;
	text-decoration: underline;
}
.link-type03 {
	color: #5591c6;
	font-weight: bold;
}
/*** anchor reset ***/

/*** inputbox reset ***/
input.txt {
	height:21px;
	padding:0 0 0 4px;
	border:1px solid #ddd;
	border-radius:0;
	background-color:#fff;
	color:#777;
	font-size:12px;
	font-family:dotum, gulim, sans-serif;
	vertical-align:middle;
}
input.txt2 {
	height: 15px;
	padding: 6px 0 0 4px;
	border: 1px solid #dedede;
	border-radius: 0;
	background: #fff;
	color: #777;
	font-size: 11px;
	font-family: dotum, gulim, sans-serif;
	vertical-align: middle;
}
input.txt3 {
	height: 15px;
	padding: 5px 0 0 4px;
	border: 1px solid #dedede;
	border-radius: 0;
	background: #fff;
	color: #777;
	font-size: 12px;
	font-family: dotum, gulim, sans-serif;
	vertical-align: middle;
}
input.bdnone {
	border: 0px;
	border-radius: 0;
	background: #fff;
}

.inbtn_search {
	width:42px;
	height:42px;
	margin:0px 4px;
	border:0;
}

*+html input.txt {
	margin-top: -1px;
}
*+html input.txt2 {
	margin-top: -1px;
}
*+html input.txt4 {
	margin-top: -1px;
}

/************ type="checkbox" ***/
input.check {
	width: 15px;
	height: 15px;
	vertical-align: middle;
}

.inok {
	position: relative;
}
.inok input[type="checkbox"] {  /* 실제 체크박스는 화면에서 숨김 */
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0,0,0,0);
	border: 0
}
.inok input[type="checkbox"] + label {
	display: inline-block;
	position: relative;
	margin-right:10px;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
}
.inok input[type="checkbox"] + label:before {  /* 가짜 체크박스 */
	content: ' ';
	display: inline-block;
	width: 15px;  /* 체크박스의 너비를 지정 */
	height: 15px;  /* 체크박스의 높이를 지정 */
	line-height: 21px; /* 세로정렬을 위해 높이값과 일치 */
	margin: -2px 6px 0 0;
	text-align: center;
	vertical-align: middle;
	background: url(/img/board_skin/check_off.png) no-repeat 0% 50%;
	border: 0px;
	border-radius : 0px;
}
.inok input[type="checkbox"] + label:active:before, .inok input[type="checkbox"]:checked + label:active:before {
/*	box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px 1px 3px rgba(0,0,0,0.1);*/
}
.inok input[type="checkbox"]:checked + label:before {  /* 체크박스를 체크했을때 */
/*	content: '\2714';  /* 체크표시 유니코드 사용 */
	text-shadow: 1px 1px #fff;
	background: url(/img/board_skin/check_on.png) no-repeat 0% 50%;
}

/************  type="radio" ***/
.intype {
	position: relative;
}
.intype input[type="radio"] {  /* 실제 체크박스는 화면에서 숨김 */
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0,0,0,0);
	border: 0
}
.intype input[type="radio"] + label {
	display: inline-block;
	position: relative;
	cursor: pointer;
	line-height: 18px; /* 세로정렬을 위해 높이값과 일치 */
	margin: 0px 3px;
	padding:8px; 
	text-align: center;
	vertical-align: middle;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	border: 1px solid #ddd;
	border-radius : 20px;
}
.intype input[type="radio"] + label:active, .intype input[type="radio"]:checked + label:active {
	background-color:#d5eafb;
}
.intype input[type="radio"]:checked + label {  /* 체크박스를 체크했을때 */
	color:#000;
	border:1px solid #ef2c2c;
}
.intype span {
	display:inline-block;
	margin:3px 0px;
}

@media (max-width:300px) {
.intype span {
	width:51px;
}
}

.inagree {
	position: relative;
}
.inagree input[type="radio"] {  /* 실제 체크박스는 화면에서 숨김 */
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0,0,0,0);
	border: 0
}
.inagree input[type="radio"] + label {
	display: inline-block;
	position: relative;
	margin-right:10px;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
}
.inagree input[type="radio"] + label:before {  /* 가짜 체크박스 */
	content: ' ';
	display: inline-block;
	width: 21px;  /* 체크박스의 너비를 지정 */
	height: 21px;  /* 체크박스의 높이를 지정 */
	line-height: 21px; /* 세로정렬을 위해 높이값과 일치 */
	margin: -3px 6px 0 0;
	text-align: center;
	vertical-align: middle;
	background: url(/img/board_skin/check2_off.png) no-repeat 0% 50%;
	border: 0px;
	border-radius : 0px;
}
.inagree input[type="radio"] + label:active:before, .inok input[type="radio"]:checked + label:active:before {
/*	box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px 1px 3px rgba(0,0,0,0.1);*/
}
.inagree input[type="radio"]:checked + label:before {  /* 체크박스를 체크했을때 */
/*	content: '\2714';  /* 체크표시 유니코드 사용 */
	text-shadow: 1px 1px #fff;
	background: url(/img/board_skin/check2_on.png) no-repeat 0% 50%;
}


/* file button */
.btn_file label {
	width:100%;
	box-sizing: border-box;
	display: inline-block;
	margin: 0;
	padding: 0;
	text-align: center;
	color: #000;
	font-size: 16px;
	line-height: 24px;
	letter-spacing: -1px;
	vertical-align: middle;
	cursor: pointer;
	border: 1px solid #d1d1d1;
	border-radius: 1px;
	-moz-border-radius: 1px;
	-ms-border-radius: 1px;
	-webkit-border-radius: 1px;
	background-image:url(/img/board_skin/arrow3.png);
	background-repeat: no-repeat;
	background-position: 97% 50%;
	background-color: #fff;
	-webkit-transition: background-color 0.2s;
	transition: background-color 0.2s;
}

.btn_file label:hover {
	background-color: #fff;
}

.btn_file label:active {
	background-color: #fff;
}

.btn_file input[type="file"] {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}
/* //END file button */

/**** inputbox reset ***/

/*** button reset ***/
button {
	border: 0;
	font-family: dotum, gulim, sans-serif;
}
button:focus {
	outline:none;
}

/* Size-Full */
button.btf_sky {
	box-sizing: border-box;
	cursor: pointer;
	width: 100%;
	height: 52px;
	line-height: 52px;
	text-align: center;
	font-size: 18px;
	color:#fff;
	background-color:#2a9df6;
	border-radius:25px;
	-moz-border-radius:25px;
	-webkit-border-radius:25px;
}
button.btf_blue {
	box-sizing: border-box;
	cursor: pointer;
	width: 100%;
	height: 52px;
	line-height: 52px;
	text-align: center;
	font-size: 18px;
	color:#fff;
	background-color:#314dc2;
	border-radius:25px;
	-moz-border-radius:25px;
	-webkit-border-radius:25px;
}
button.btf_bdblue {
	box-sizing: border-box;
	cursor: pointer;
	width: 100%;
	height: 52px;
	line-height: 48px;
	text-align: center;
	font-size: 18px;
	color:deeppink;
	background-color:#fff;
	border:2px solid #2a9df6;
	border-radius:25px;
	-moz-border-radius:25px;
	-webkit-border-radius:25px;
}

/* Size-inblock */
button.btn_blue {
	display:inline-block;
	box-sizing: border-box;
	cursor: pointer;
	padding:0px 15px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	font-size: 18px;
	color:#fff;
	background-color:#314dc2;
	border-radius:20px;
	-moz-border-radius:20px;
	-webkit-border-radius:20px;
}
button.btn_gray {
	display:inline-block;
	box-sizing: border-box;
	cursor: pointer;
	padding:0px 15px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	font-size: 18px;
	color:#000;
	background-color:#d0d3d9;
	border-radius:20px;
	-moz-border-radius:20px;
	-webkit-border-radius:20px;
}

/* SIZE-small */
.bts_blue {
	display:inline-block;
	box-sizing: border-box;
	cursor: pointer;
	vertical-align:middle;
	padding:0px 0.6rem;
	line-height:40px;
	color:#3198e7;
	background-color:#fff;
	border:1px solid #3198e7;
	border-radius:20px;
}

.bts_add27 {
	display:inline-block;
	box-sizing: border-box;
	cursor: pointer;
	vertical-align:middle;
	padding:0px 0.5rem;
	line-height:40px;
	font-size:15px;
	font-weight:600;
	color:#fff;
	background-color:#b7b7b7;
	border:1px solid #b7b7b7;
	border-radius:20px;
}
.bts_add27:before {
	content:"+";
	display:inline-block;
	margin-right:5px;
	font-weight:bold;
}


/*** END-button reset ***/

.ipad input[type=text], input[type=image], button, input[type=button], input[type=submit], textarea {
	-webkit-appearance: none;
	-webkit-text-size-adjust: none;
	-webkit-border-radius: 0;
}

.obj-section01 {
	margin-top: 15px !important;
}

