/*** BUTTONS ***/
.btn{/* replaced .button */
	display: inline-block;
	zoom: 1; /* zoom and *display = ie7 hack for display: inline-block */
	*display: inline;
	vertical-align: baseline;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
	font-weight: 300;
	-webkit-border-radius: 3px; 
	-moz-border-radius: 3px;
	border-radius: 3px;
	padding:0.6rem 3.2rem;
	font-size:16px;
	font-family: helvetica neue,helvetica,arial,sans-serif !important;
	background:#fff;
	border:1px solid #ddd;
	color:#0654ba;
	
}

.btn:hover{
	text-decoration: none;
	border: 0px solid #0065B0;
}

.btn:active{
	position: relative;
	top: 1px;
}

.btn-m{/* replaced .btn-medium */
	font-size: 14px;	
}

.btn-s{/* replaced .btn-small */
	font-size: 14px;
}

/*** BUTTON COLORS ***/
/* PRIMARY - BLUE */
.btn-prim, a.btn-prim, a.btn-prim:visited,
.btn-split, a.btn-split, a.btn-split:visited{/* replaced .btn-primary-blue, replaced .btn-b  */
	color: #fff;
	border: none;
	text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
	text-decoration: none;
	background:#0654ba
	
}

/* TERTIARY - GRAY */
.btn-ter, a.btn-ter, a.btn-ter:visited{/* replaced .btn-tertiary-gray, replaced .btn-d */
	color: #1f75a7;
	border-width: 1px;
	margin-right:5px;
	border-style: solid;
	border-color: #ccc #ccc #bbb;
	text-decoration: none;
	background: #f8f8f8;
}

.btn-ter,.btn-ter:hover, a.btn-ter:hover, .btn-ter:focus, a.btn-ter:focus, .btn-ter:active, a.btn-ter:active{
	color: #025da1;
	border: 1px solid #fff;
	background: #fff;
}

/* DISABLED */
.btn-d, a.btn-d, .btn[disabled], a.btn-d:visited{
	color: #aaa;
	border: none;
	text-shadow: 0 0px 0 rgba(0, 0, 0, 0.2);
	text-decoration: none;
	background: -webkit-gradient(linear, left top, left bottom, from(#ececec), to(#ddd));
	background: -moz-linear-gradient(top, #ececec, #ddd);
	background: #eee;
	-webkit-box-shadow: 0 3px 0px rgba(0,0,0,.1);
	-moz-box-shadow: 0 3px 0px rgba(0,0,0,.2);
	box-shadow: 0 3px 0px #eee;
}

.btn-d:hover, a.btn-d:hover{
	cursor: default;
	background: -webkit-gradient(linear, left top, left bottom, from(#ececec), to(#ddd));
	background: -moz-linear-gradient(top, #ececec, #ddd);
	background: #eee;
	-webkit-box-shadow: 0 3px 0px rgba(0,0,0,.1);
	-moz-box-shadow: 0 3px 0px rgba(0,0,0,.2);
	box-shadow: 0 3px 0px #eee;
}

.btn-d:active, a.btn-d:active{
	position: relative;
	top: 0px;
}

/* END BUTTONS */


/***********************************
Below are some overrides of normalize.css styles.
Need to override some normalize.css styles in order to match eBay buttons.
************************************/
button.btn::-moz-focus-inner,
input.btn::-moz-focus-inner {
   padding:  0.07em .21em;
}

/***********************************
Below are some overrides for FF3.6.
Original shadows seem too dark.
************************************/
/*** BUTTONS ***/
.btn{/* replaced .button */
	-moz-box-shadow: 0 3px 0px rgba(0,0,0,.05);
}
.btn:hover{
	-moz-box-shadow: 0 0px 0px rgba(0,0,0,.05);
}
/* DISABLED */
.btn-d, a.btn-d, .btn[disabled], a.btn-d:visited{
	-moz-box-shadow: 0 3px 0px rgba(0,0,0,.05);
}
.btn-d:hover, a.btn-d:hover{
	-moz-box-shadow: 0 3px 0px rgba(0,0,0,.05);
}






