﻿/*公共按钮*/
button { clear:both; border:0px; padding:0px; line-height:100%; vertical-align:middle;}
.SmallBtn 
{
	display: inline-block;
	zoom: 1;
	*display: inline;
	outline: none;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
	font: normal 12px/140% Arial;
	padding:3px 5px 2px 5px;
	text-shadow: 0 1px 1px rgba(0,0,0,.3);
	border-radius: 3px;
	box-shadow: 0px 1px 2px rgba(0,0,0,.2);
}

.MediumBtn 
{
	display: inline-block;
	zoom: 1;
	*display: inline;
	outline: none;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
	font: normal 12px/140% Arial;
	padding:4px 10px;
	text-shadow: 0 1px 1px rgba(0,0,0,.3);
	border-radius: 3px;
	box-shadow: 0px 1px 2px rgba(0,0,0,.2);
}

.PubBtn 
{
	display: inline-block;
	zoom: 1;
	*display: inline;
	margin-right:5px;
	outline: none;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
	font: bold 12px/140% Arial;
	padding:4px 10px;
	text-shadow: 0 1px 1px rgba(0,0,0,.3);
	border-radius: 3px;
	box-shadow: 0px 1px 2px rgba(0,0,0,.2);
}

.BigBtn 
{
	display: inline-block;
	zoom: 1;
	*display: inline;
	margin-right:5px;
	outline: none;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
	font: bold 14px/140% Arial;
	padding:6px 20px 6px 20px;
	text-shadow: 0 1px 1px rgba(0,0,0,.3);
	border-radius: 3px;
	box-shadow: 0px 1px 2px rgba(0,0,0,.2);
}

/* 兰色 */
.blueBtn {
	color: #fff;
	border: solid 1px #2d53af;
	background: #5182d6;
	background: -webkit-gradient(linear, left top, left bottom, from(#5483e1), to(#4d7bd6));
	background: -moz-linear-gradient(top,  #5483e1,  #4d7bd6);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#5483e1', endColorstr='#4d7bd6');
}
.blueBtn:hover {
	color: #fff!important;
	background: -webkit-gradient(linear, left top, left bottom, from(#5588da), to(#406bc1));
	background: -moz-linear-gradient(top,  #5588da,  #406bc1);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#5588da', endColorstr='#406bc1');
	box-shadow: 1px 1px 2px rgba(0,0,0,.3);
}
.blueBtn:active {
	color: #fff;
	background: -webkit-gradient(linear, left top, left bottom, from(#406bc1), to(#5588da));
	background: -moz-linear-gradient(top,  #406bc1,  #5588da);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#406bc1', endColorstr='#5588da');
	box-shadow: 1px 1px 2px rgba(0,0,0,.3);
}

/* 橙色 */
.orangeBtn {
	color: #fff;
	border: solid 1px #da7c0c;
	background: #faa51a;
	background: -webkit-gradient(linear, left top, left bottom, from(#faa51a), to(#f47a20));
	background: -moz-linear-gradient(top,  #faa51a,  #f47a20);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#faa51a', endColorstr='#f47a20');
}
.orangeBtn:hover {
	color: #fff!important;
	background: -webkit-gradient(linear, left top, left bottom, from(#f88e11), to(#f06015));
	background: -moz-linear-gradient(top,  #f88e11,  #f06015);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#f88e11', endColorstr='#f06015');
	box-shadow: 1px 1px 2px rgba(0,0,0,.3);
}
.orangeBtn:active {
	color: #fff;
	background: -webkit-gradient(linear, left top, left bottom, from(#f47a20), to(#faa51a));
	background: -moz-linear-gradient(top,  #f47a20,  #faa51a);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#f47a20', endColorstr='#faa51a');
	box-shadow: 1px 1px 2px rgba(0,0,0,.3);
}

/* 灰色 */
.grayBtn {
	color: #606060;
	border: solid 1px #b7b7b7;
	background: #f6f6f6;
	background: -webkit-gradient(linear, left top, left bottom, from(#f6f6f6), to(#e6e6e6));
	background: -moz-linear-gradient(top,  #f6f6f6,  #e6e6e6);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#f6f6f6', endColorstr='#e6e6e6');
	text-shadow: 0 1px 1px #fff;
}
.grayBtn:hover {
	color: #606060!important;
	background: -webkit-gradient(linear, left top, left bottom, from(#fcfcfc), to(#d7d7d7));
	background: -moz-linear-gradient(top,  #fcfcfc,  #d7d7d7);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#fcfcfc', endColorstr='#d7d7d7');
	box-shadow: 1px 1px 2px rgba(0,0,0,.2);
}
.grayBtn:active {
	color: #606060;
	background: -webkit-gradient(linear, left top, left bottom, from(#d7d7d7), to(#fcfcfc));
	background: -moz-linear-gradient(top,  #d7d7d7,  #fcfcfc);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#d7d7d7', endColorstr='#fcfcfc');
	box-shadow: 1px 1px 2px rgba(0,0,0,.2);
}