@charset "utf-8";

input, button, select, textarea{
	outline:none;
} 

::-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;
}


/* 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;
}


































