/* 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: 14px Arial, Helvetica, sans-serif;
	font-size:14px;
	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: .5em;
	-moz-border-radius: .5em;
	border-radius: .5em;	font-weight:bold; letter-spacing:1px;
}
.medium {
	font-size: 14px;
	font-weight:bold;
	padding: .8em 1.5em .8em;
}
.small {
	font-size: 12px;
	padding: .5em 1em .5em;
}

a{
outline:none;
outline-width:0px;
outline-style:none;
}

/* pink */
.pink {
	color: #feeef5;
	border: solid 1px #d2729e;
	background: #fa0b72;
	background: -webkit-gradient(linear, left top, left bottom, from(#ffd78b1), to(#fa0b72));
	background: -moz-linear-gradient(top,  #fd78b1,  #fa0b72);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#feb1d3', endColorstr='#f171ab');
}
.pink:hover {
	background: #d57ea5;
	color:#fff;	
	background: -webkit-gradient(linear, left top, left bottom, from(#fb3f90), to(#ff63a6));
	background: -moz-linear-gradient(top,  #fb3f90,  #ff63a6);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#f4aacb', endColorstr='#e86ca4');
}
.pink:active {
	color: #f3c3d9;
	background: -webkit-gradient(linear, left top, left bottom, from(#f171ab), to(#feb1d3));
	background: -moz-linear-gradient(top,  #f171ab,  #feb1d3);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#f171ab', endColorstr='#feb1d3');
}

