@charset "utf-8";


/* フォーム
------------------------------------------------------------*/
input[type="text"],textarea{
	vertical-align:middle;
	max-width:90%;
	line-height:20px;
	height:20px;
	padding:1px 3px;
	border:1px solid #AAAAAA;
	border-radius:3px;
	-webkit-border-radius:3px;
	-moz-border-radius:3px;
	font-size:14px;
	color:#555;
	background:#fcfcfc;
}
select {
  border-radius: 3;
  margin: 0;
	padding:2px ;
	border:1px solid #AAAAAA;
	border-radius:3px;
	-webkit-border-radius:3px;
	-moz-border-radius:3px;
  background: none transparent;
  vertical-align: middle;
  font-size: 14px;
  color: inherit;
  box-sizing: content-box;
}

textarea{
	height:auto;
	line-height:1.5;
	font-size: 14px;
}

input[type="submit"],input[type="reset"],input[type="button"]{
	padding:3px 5px;
	background: #878787;
	background: -moz-linear-gradient(top, #878787 0%, #6f6f6f 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#878787), color-stop(100%,#6f6f6f));
	background: -webkit-linear-gradient(top, #878787 0%,#6f6f6f 100%);
	background: -o-linear-gradient(top, #878787 0%,#6f6f6f 100%);
	background: linear-gradient(to bottom, #878787 0%,#6f6f6f 100%);


filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#878787', endColorstr='#6f6f6f',GradientType=0 );
	border:0;
	border-radius:3px;
	-webkit-border-radius:3px;
	-moz-border-radius:3px;
	line-height:1.5;
	font-size:14px;
	color:#fff;
}

input[type="submit"]:hover,input[type="reset"]:hover,input[type="button"]:hover{
background: #878787;
background: -moz-linear-gradient(top, #6f6f6f 0%, #878787 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#6f6f6f), color-stop(100%,#878787));
background: -webkit-linear-gradient(top, #6f6f6f 0%,#878787 100%);
background: -o-linear-gradient(top, #6f6f6f 0%,#878787 100%);
background: linear-gradient(to bottom, #6f6f6f 0%,#878787 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6f6f6f', endColorstr='#878787',GradientType=0 );
cursor:pointer;
}

