
/* button 
---------------------------------------------- */
.button {
	display: inline-block;
	zoom: 1; /* zoom and *display = ie7 hack for display:inline-block */
	display: inline;
	vertical-align: baseline;
	margin: 0 2px;
	outline: none;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
  	font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
	font-size: 1em;
	padding: .5em 2em .55em;
	text-shadow: 0 1px 1px rgba(0,0,0,.3);
	-webkit-border-radius: .5em; 
	-moz-border-radius: .5em;
	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);
	box-shadow: 0 1px 2px rgba(0,0,0,.2);
}
.button:hover {
	text-decoration: none;
}
.button:active {
	position: relative;
	top: 1px;
}

.bigrounded {
	-webkit-border-radius: 2em;
	-moz-border-radius: 2em;
	border-radius: 2em;
}
.medium {
	font-size: 12px;
	padding: .4em 1.5em .42em;
}
.small {
	font-size: 11px;
	padding: .2em 1em .275em;
}

/* black */
.black {
	color: #eeeeee;
	border: solid 1px #333;
	background: #333;
	background: -webkit-gradient(linear, left top, left bottom, from(#666), to(#000));
	background: -moz-linear-gradient(top,  #666,  #000);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#666666', endColorstr='#000000');
}
.black:hover {
	background: #000;
	background: -webkit-gradient(linear, left top, left bottom, from(#444), to(#000));
	background: -moz-linear-gradient(top,  #444,  #000);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#444444', endColorstr='#000000');
}
.black:active {
	color: #666;
	background: -webkit-gradient(linear, left top, left bottom, from(#000), to(#444));
	background: -moz-linear-gradient(top,  #000,  #444);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='#666666');
}
.button[disabled], .button[disabled]:hover, .button[disabled]:active {
	color: #d7d7d7;
	background: #666;
	position: static;
	border: solid 1px #333;
}

/* blue */
.blue {
	color: #eeeeee;
	border: solid 1px #3366cc;
	background: #3366cc;
	background: -webkit-gradient(linear, left top, left bottom, from(#3366cc), to(#003366));
	background: -moz-linear-gradient(top,  #3366cc,  #003366);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#3366cc', endColorstr='#003366');
}
.blue:hover {
	background: #000;
	background: -webkit-gradient(linear, left top, left bottom, from(#6699ff), to(#003366));
	background: -moz-linear-gradient(top,  #6699ff,  #003366);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#444444', endColorstr='#000000');
}
.blue:active {
	color: #666;
	background: -webkit-gradient(linear, left top, left bottom, from(#003366), to(#6699ff));
	background: -moz-linear-gradient(top,  #003366,  #6699ff);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='#666666');
}
.button[disabled], .button[disabled]:hover, .button[disabled]:active {
	color: #d7d7d7;
	background: #7C90C0;
	position: static;
	border: solid 1px #333;
}
