/**********************
	Menu Styles
**********************/
.MemberMenuButton a{color: #050505!important;}

.MemberMenuButton{
	margin-bottom:2px;
	width:145px;
	display:inline-block;
	color: #050505!important;
	padding: 2px 5px;
	background: -moz-linear-gradient(
		top,
		#ffffff 0%,
		#ebebeb 50%,
		#dbdbdb 50%,
		#b5b5b5);
	background: -webkit-gradient(
		linear, left top, left bottom, 
		from(#ffffff),
		color-stop(0.50, #ebebeb),
		color-stop(0.50, #dbdbdb),
		to(#b5b5b5));
	background: -webkit-linear-gradient(top,  #ffffff 0%,#b5b5b5 100%);
	background: -o-linear-gradient(top,  #ffffff 0%,#b5b5b5 100%);
	background: -ms-linear-gradient(top,  #ffffff 0%,#b5b5b5 100%);
	background: linear-gradient(to bottom,  #ffffff 0%,#b5b5b5 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#b5b5b5',GradientType=0 );

	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	border: 1px solid #949494;
	-moz-box-shadow:
		0px 1px 3px rgba(000,000,000,0.5),
		inset 0px 0px 2px rgba(255,255,255,1);
	-webkit-box-shadow:
		0px 1px 3px rgba(000,000,000,0.5),
		inset 0px 0px 2px rgba(255,255,255,1);
	box-shadow:
		0px 1px 3px rgba(000,000,000,0.5),
		inset 0px 0px 2px rgba(255,255,255,1);
	text-shadow:
		0px -1px 0px rgba(000,000,000,0.2),
		0px 1px 0px rgba(255,255,255,1);
}
.MemberMenuButton:hover{
	cursor: pointer;
		background: -moz-linear-gradient(
		top,
		#b5b5b5 0%,
		#dbdbdb 50%,
		#ebebeb 50%,
		#ffffff);
	background: -webkit-gradient(
		linear, left top, left bottom, 
		from(#b5b5b5),
		color-stop(0.50, #dbdbdb),
		color-stop(0.50, #ebebeb),
		to(#ffffff));
	background: -webkit-linear-gradient(top,  #b5b5b5 0%,#ffffff 100%);
	background: -o-linear-gradient(top,  #b5b5b5 0%,#ffffff 100%);
	background: -ms-linear-gradient(top,  #b5b5b5 0%,#ffffff 100%);
	background: linear-gradient(to bottom,  #b5b5b5 0%,#ffffff 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b5b5b5', endColorstr='#ffffff',GradientType=0 );
}