@charset "utf-8";
/* CSS Document */
a {
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}
.button_right {
	display: inline-block;
	zoom: 1; /* zoom and *display = ie7 hack for display:inline-block */
	*display: inline;
	vertical-align: baseline;
	margin: 0 0px;
	outline: none;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
	font: 14px/100% Arial, Helvetica, sans-serif;
	padding: 8px 8px;
	text-shadow: 0 1px 1px rgba(0,0,0,.3);
	-webkit-border-radius:0px 11px 11px 0px; 
	-moz-border-radius-topleft:0px;
	-moz-border-radius-topright:11px; 					
	-moz-border-radius-bottomleft:0px; 					
	-moz-border-radius-bottomright:11px; 
	border-radius:0px 11px 11px 0px;
	-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_right:hover {
	text-decoration: none;
}
.button_right:active {
	position: relative;
	top: 1px;
}

.bigrounded_right {
	-webkit-border-radius:0px 11px 11px 0px; 
	-moz-border-radius-topleft:0px;
	-moz-border-radius-topright:11px; 					
	-moz-border-radius-bottomleft:0px; 					
	-moz-border-radius-bottomright:11px; 
	border-radius:0px 11px 11px 0px;
}

.white_right {
	color: #606060;
	border: solid 1px #b7b7b7;
	background: #fff;
	background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#ededed));
	background: -moz-linear-gradient(top,  #fff,  #ededed);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ededed');
}
.white_right:hover {
	background: #ededed;
	background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#dcdcdc));
	background: -moz-linear-gradient(top,  #fff,  #dcdcdc);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#dcdcdc');
}

.white_right:active {
	color: #999;
	background: -webkit-gradient(linear, left top, left bottom, from(#ededed), to(#fff));
	background: -moz-linear-gradient(top,  #ededed,  #fff);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#ededed', endColorstr='#ffffff');
}
