@CHARSET "UTF-8";
.button {
	display: inline-block;
	zoom: 1; /* zoom and *display = ie7 hack for display:inline-block */
	*display: inline;
	/*color:#A04205 !important;*/
	vertical-align: baseline;
	margin: 10px 0px;
	outline: none;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
	padding:3px 8px;/*IE6*/
/*	text-shadow: 0 1px 1px rgba(0,0,0,.3);*/
	-webkit-border-radius: .5em; 
	-moz-border-radius: .5em;/*FF用 角丸ボタン*/
	border-radius: .5em;
	-webkit-box-shadow: 0 1px 2px rgba(0,0,0,.2);
	-moz-box-shadow: 0 1px 2px rgba(0,0,0,.2);/*FF用 ボタンの影(横方向ずれ,縦方向ずれ,ぼかし具合,影の色(rgba[赤,緑,青,透明度0~1]))*/
	box-shadow: 0 1px 2px rgba(0,0,0,.2);
}
:root .button {/*FF*/
	padding:3px 24px;
}
.button:hover {
	text-decoration: none;
}
.button:active {
	position: relative;
	top: 1px;
}
/*オレンジボタン*/
.orange {
	color: #A04205;/*文字色*/
	border: solid 1px #D5D5D5;/*ボタン淵色*/
	background: #ffbe5d;/*FF用*/
	background: -webkit-gradient(linear, left top, left bottom, from(#fcead0), to(#ff9c0a));
	background: -moz-linear-gradient(top,  #fcead0,  #ff9c0a);
	background: -ms-linear-gradient(top, #fcead0, #ff9c0a);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#fcead0', endColorstr='#ff9c0a');
	-ms-filter:"progid:DXImageTransform.Microsoft.gradient(GradientType=0,startcolorstr=#fcead0, endcolorstr=#ff9c0a))";/* IE用 */
}
.orange:hover {
	background: #f47a20;/*FF用*/
	background: -webkit-gradient(linear, left top, left bottom, from(#f88e11), to(#f06015));
	background: -moz-linear-gradient(top,  #f88e11,  #f06015);
	background: -ms-linear-gradient(top, #f88e11, #f06015);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#f88e11', endColorstr='#f06015');
}
.orange:active {
	background: #ffbe5d;/*FF用*/
	background: -webkit-gradient(linear, left top, left bottom, from(#f47a20), to(#faa51a));
	background: -moz-linear-gradient(top,  #f47a20,  #faa51a);
	background: -ms-linear-gradient(top, #f47a20, #faa51a);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#f47a20', endColorstr='#faa51a');
}

/*グレーボタン*/
.gray {
	color: #ffffff;/*文字色*/
	border: solid 1px #D5D5D5;/*ボタン淵色*/
	background: #ada8a2;/*FF用*/
	background: -webkit-gradient(linear, left top, left bottom, from(#d7d6d6), to(#7f7469));
	background: -moz-linear-gradient(top,  #d7d6d6,  #7f7469);
	background: -ms-linear-gradient(top, #d7d6d6, #7f7469);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#d7d6d6', endColorstr='#7f7469');
	-ms-filter:"progid:DXImageTransform.Microsoft.gradient(GradientType=0,startcolorstr=#d7d6d6, endcolorstr=#7f7469))";/* IE用 */
}
.gray:hover {
	background: #616161;/*FF用*/
	background: -webkit-gradient(linear, left top, left bottom, from(#616161), to(#616161));
	background: -moz-linear-gradient(top,  #616161,  #616161);
	background: -ms-linear-gradient(top, #616161, #616161);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#616161', endColorstr='#616161');
}
.gray:active {
	background: #ada8a2;/*FF用*/
	background: -webkit-gradient(linear, left top, left bottom, from(#616161), to(#e9e9e9));
	background: -moz-linear-gradient(top,  #616161,  #e9e9e9);
	background: -ms-linear-gradient(top, #616161, #e9e9e9);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#616161', endColorstr='#e9e9e9');
}

/*ホワイトボタン*/
.white {
	color: #666666;/*文字色*/
	border: solid 1px #D5D5D5;/*ボタン淵色*/
	background: #f1f1f1;/*FF用*/
	background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#d7d7d7));
	background: -moz-linear-gradient(top,  #ffffff,  #d7d7d7);
	background: -ms-linear-gradient(top, #ffffff, #d7d7d7);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#d7d7d7');
	-ms-filter:"progid:DXImageTransform.Microsoft.gradient(GradientType=0,startcolorstr=#ffffff, endcolorstr=#d7d7d7))";/* IE用 */
}
.white:hover {
	background: #d7d6d6;/*FF用*/
	background: -webkit-gradient(linear, left top, left bottom, from(#d7d6d6), to(#d7d6d6));
	background: -moz-linear-gradient(top,  #d7d6d6,  #d7d6d6);
	background: -ms-linear-gradient(top, #d7d6d6, #d7d6d6);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#d7d6d6', endColorstr='#d7d6d6');
}
.white:active {
	background: #f1f1f1;/*FF用*/
	background: -webkit-gradient(linear, left top, left bottom, from(#d7d7d7), to(#ffffff));
	background: -moz-linear-gradient(top,  #d7d7d7,  #ffffff);
	background: -ms-linear-gradient(top, #d7d7d7, #ffffff);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#d7d7d7', endColorstr='#ffffff');
}