@charset "utf-8";
/*==================================
CSS Document : Forms
==================================*/
fieldset {
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
	border: 1px solid #c0c0c0;
}

/* IE 7/8/9 */

legend {
	padding: 0;
	border: 0;
}

button,input,select,textarea {
	margin: 0;
	font-family: inherit;
	font-size: 100%;
}

input[type="checkbox"],input[type="radio"] {
	padding: 0;
	box-sizing: border-box; 
}

textarea {
	vertical-align: top;
	overflow: auto; 
}

/* Firefox 4+ */

button,input {
	line-height: normal;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
	padding: 0;
	border: 0;
}

/* WebKit */

button,html input[type="button"],input[type="reset"],input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
}

button[disabled],html input[disabled] {
	cursor: default;
}

/* Safari 5 and Chrome. */

input[type="search"] {
	-webkit-appearance: textfield;
	-moz-box-sizing: content-box;
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}