input, select, textarea 
{
		color: #777;
		font-size: 12px;
		font-weight: bold;
}

form {
	margin: 0px;
}

input[type="text"],
input[type="password"],
input[type="email"],
select,
textarea {
	-moz-appearance: none;
	-webkit-appearance: none;
	-o-appearance: none;
	-ms-appearance: none;
	appearance: none;
	background: #f8f8f8;
	border-radius: 6px;
	border: solid 1px #e5e5e5;
	color: inherit;
	display: inline;
	outline: 0;
	padding: 0.5em 0.5em 0.5em 0.5em;
	text-decoration: none;
	vertical-align:middle;  
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
select:focus,
textarea:focus {
	border-color: #5b4d87;
	box-shadow: 0 0 0 2px #5b4d87;
}

input[type="submit"],
input[type="reset"],
input[type="button"],
.button {
	-moz-appearance: none;
	-webkit-appearance: none;
	-o-appearance: none;
	-ms-appearance: none;
	appearance: none;
	-moz-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
	-webkit-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
	-o-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
	-ms-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
	transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
	background-color: #666;
	border-radius: 6px;
	border: solid 0px #e5e5e5;
	color: #ffffff;
	cursor: pointer;
	display: inline-block;
	font-weight: 400;
	height: 2.5em;
	padding: 0 1em;
	text-align: center;
	text-decoration: none;
	white-space: nowrap;
	vertical-align:middle;  
}

input[type=text]::-ms-clear {display: none;} /*IE10에서 X 버튼 안나오게*/

input[type="checkbox"],input[type="radio"] {
	position:relative;
	top:3px;
}

/* 숫자만 입력칸 */
.onlydigit {
	text-align:right;
	ime-mode:disabled;
}
.onlyfloat {
	text-align:right;
	ime-mode:disabled;
}