@charset "utf-8";

input, button, select, textarea{
	outline:none;
	letter-spacing:0px;
	color:#555;
	position:relative;
	background-color:#fff;
	-webkit-appearance:none !important;
} 

::-webkit-input-placeholder { /* WebKit browsers */
	color:#999;
	font-size:14px;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
	color:#999;
	font-size:14px;

}
::-moz-placeholder { /* Mozilla Firefox 19+ */
	color:#999;
	font-size:14px;

}
:-ms-input-placeholder { /* Internet Explorer 10+ */
	color:#999;
	font-size:14px;

}

input:-moz-read-only { /* For Firefox */
    background-color: #f1f1f1;
}

input:read-only { 
    background-color: #f1f1f1;
}



input[type=file]{
	cursor:pointer;
}


input[type=text]{
	height:28px;
	border:none;
	border:1px #ccc solid;;
	font-weight:normal;
	padding:3px 10px;
}

input[type=password]{
	height:28px;
	border:none;
	border:1px #ccc solid;
	letter-spacing:1px\9
	font-weight:normal;
	padding:3px 10px;
}

/* radio */

input[type=radio].ckrdofix{
	margin:0;
}

input[type=radio]{
	vertical-align:middle;
	margin:0px 5px 0px 0px;
	-webkit-writing-mode: horizontal-tb;
	-webkit-appearance: none;
	display: inline-block;
	width: 15px;
	height: 15px;
	cursor: pointer;
	background: #fff;
	border: 1px solid #c6c6c6;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	position: relative;

}

input[type=radio]:checked::after {
	content: url("../../img/elemt/icon/30x20/555/radio_cho.png");
	display: block;
	position: absolute;
	top: -4px;
	left: -9px;
	

}


/* checkbox */

input[type=checkbox].ckckxfix{
	margin:0;
}

input[type=checkbox]{
	cursor:pointer;
	vertical-align:middle;
	margin:-3px 5px 0px 0px;
	-webkit-writing-mode: horizontal-tb;
	-webkit-appearance: none;
	display: inline-block;
	width: 15px;
	height: 15px;
	cursor: pointer;
	background: #fff;
	border: 1px solid #c6c6c6;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	position: relative;
	
}

input[type=checkbox]:checked::after {
	content: url("../../img/elemt/png/checkbox_cho.png");
	display: block;
	position: absolute;
	top:-2px;
	left: 2px;

}

input[type=checkbox].ckckxfix{
	margin:-3px 0px 0px 0px;
}

input[type=radio].ckrdofix{
	margin:-3px 0px 0px 0px;
}



/* textarea */

textarea{
	border:1px #ccc solid;
	padding:10px;
	position:relative;
	width:100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}


/* select, option */

select, option{
	cursor:pointer;
	width:100%;
	/* hidden defalut arrow change custom arrow style */
	-webkit-appearance: none; /*for Webkit browsers*/
	-moz-appearance:none;
	-o-appearance:none;
	appearance:none; 
	border:1px #ccc solid;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;	
}

select::-ms-expand{
	display:none;
}


































