input[type=text] {
	border : 1px solid #C0C0C0;
	font-family: 'NanumSquare', "Dotum", "Arial";
	font-size: 18px;
	COLOR: #666666;
	text-decoration: none;
	line-height:21px;
	vertical-align:middle;
	padding:5px;
	height:55px;
	border-radius: 0; 
	outline-style: none; 
	-webkit-appearance: none;
    -moz-appearance: none;
    appearance : none;
	-moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;

}

input[type=password] {
	border : 1px solid #C0C0C0;
	font-family:  "Dotum", "Arial";
	font-size: 18px;COLOR: #666666;
	text-decoration: none;
	line-height:21px;
	vertical-align:middle;
	padding:5px;
	height:55px;
	border-radius: 0; 
	outline-style: none; 
	-webkit-appearance: none;
    -moz-appearance: none;
    appearance : none;
	-moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;

}

.textarea1 {
	border : 1px solid #C0C0C0;
	font-family: 'NanumSquare', "Dotum", "Arial";
	font-size: 18px;COLOR: #666666;
	text-decoration: none;
	line-height:21px;
	vertical-align:middle;
	height: 200px;
	padding:5px;
	-webkit-appearance: none;
    -moz-appearance: none;
    appearance : none;
	-moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.select {
     width:100px;
     padding:5px;
     border:1px solid #C0C0C0;    
     background:url('/images/select_arrpw.png') no-repeat 95% 50%;
     height:38px;
     -webkit-appearance: none;
     -moz-appearance: none;
     appearance : none;
	 color:#666666;
	 font-size: 18px;
}

.checks {
	position: relative;
}
.checks input[type="checkbox"] {
	/* 실제 체크박스는 화면에서 숨김 */ position: absolute; 
	width: 1px; 
	height: 1px; 
	padding: 0; 
	margin: -1px; 
	overflow: hidden; c
	lip:rect(0,0,0,0); 
	border: 0 
} 
.checks input[type="checkbox"] + label { 
	display: inline-block; 
	position: relative; 
	cursor: pointer; 
	-webkit-user-select: none; 
	-moz-user-select: none; 
	-ms-user-select: none; 
} 
.checks input[type="checkbox"] + label:before { 
	/* 가짜 체크박스 */ content: ' '; 
	display: inline-block; 
	width: 30px; /* 체크박스의 너비를 지정 */ 
	height: 30px; /* 체크박스의 높이를 지정 */ 
	line-height: 21px; /* 세로정렬을 위해 높이값과 일치 */ 
	margin: -2px 8px 0 0; text-align: center; 
	vertical-align: middle; 
	background: #fafafa; 
	border: 1px solid #cacece; 
	border-radius : 3px; 
	box-shadow: 0px 1px 2px rgba(0,0,0,0.05), inset 0px -15px 10px -12px rgba(0,0,0,0.05); } 
.checks input[type="checkbox"] + label:active:before, 

.checks 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); 
} 

.checks input[type="checkbox"]:checked + label:before { 
	/* 체크박스를 체크했을때 */ content: '\2714'; /* 체크표시 유니코드 사용 */ 
	color: #99a1a7; text-shadow: 1px 1px #fff; 
	background: #e9ecee; 
	border-color: #adb8c0; 
	box-shadow: 0px 1px 2px rgba(0,0,0,0.05), inset 0px -15px 10px -12px rgba(0,0,0,0.05), inset 15px 10px -12px rgba(255,255,255,0.1); 
	font-size:30px; 
} 

.checks {
	position: relative;
} 
.checks input[type="radio"] { 
	position: absolute; 
	width: 1px; 
	height: 1px; 
	padding: 0px ; 
	margin: -1px; 
	overflow: hidden; 
	clip:rect(0,0,0,0); 
	border: 0; 
} 
.checks input[type="radio"] + label { 
	display: inline-block; 
	position: relative; 
	padding-left: 40px; 
	cursor: pointer; 
	-webkit-user-select: none; 
	-moz-user-select: none; 
	-ms-user-select: none; 
} 
.checks input[type="radio"] + label:before { 
	content: ''; 
	position: absolute; 
	left: 0; 
	top: -4px; 
	width: 30px; 
	height: 30px; 
	text-align: center; 
	background: #fafafa; 
	border: 1px solid #cacece; 
	border-radius: 100%; 
	box-shadow: 0px 1px 2px rgba(0,0,0,0.05), inset 0px -15px 10px -12px rgba(0,0,0,0.05); 
} 
.checks input[type="radio"] + label:active:before, 
.checks 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); 
} 
.checks input[type="radio"]:checked + label:before { 
	background: #E9ECEE; 
	border-color: #adb8c0; 

} 
.checks input[type="radio"]:checked + label:after { 
	content: ''; 
	position: absolute; 
	top: 3px; 
	left: 8px; 
	width: 17px; 
	height: 17px; 
	background: #99a1a7; 
	border-radius: 100%; 
	box-shadow: inset 0px 0px 10px rgba(0,0,0,0.3); 
}

input::-webkit-input-placeholder { 
	color:#d1d1d1;font-size:15px; 
}
input::-moz-placeholder { 
	color:#d1d1d1;font-size:15px; 
} /* firefox 19+ */
input:-ms-input-placeholder { 
	color:#d1d1d1;font-size:15px; 
} /* ie */

input:-moz-placeholder { 
	color:#d1d1d1;font-size:15px; 
}	

.filebox input[type="file"] {
	position: absolute;
	width: 0;
	height: 0;
	padding: 0;
	overflow: hidden;
	border: 0;
	
}

.filebox label {
	display: inline-block;
	padding: 10px 0 10px 0;
	font-size:17px; 
	color: #ffffff;
	vertical-align: middle;
	background-color: #9d9d9d;
	cursor: pointer;
	border-radius: 3px;
	width:125px;
	text-align:center;
}
/* named upload */
.filebox .upload-name1,.upload-name2,.upload-name3,.upload-name4,.upload-name5  {
	display: inline-block;
	height: 42px;
	font-size:13px; 
	padding: 0 0px;
	vertical-align: middle;
	background-color: #f5f5f5;
	border: 1px solid #ebebeb;
	border-radius: 1px; 
	color:#111;
	width:260px;
	margin-left:0px;
}

