.newButton
{
		cursor: pointer;
		border: 1px solid rgba(0,0,0,0.2);
		border-radius: 4px;
		box-shadow: inset 0px 0px 0px 1px #fff;
		
		background: rgb(255,255,255); /* Old browsers */
		background: -moz-linear-gradient(top,  rgba(255,255,255,1) 0%, rgba(233,233,233,1) 100%); /* FF3.6+ */
		background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,1)), color-stop(100%,rgba(233,233,233,1))); /* Chrome,Safari4+ */
		background: -webkit-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(233,233,233,1) 100%); /* Chrome10+,Safari5.1+ */
		background: -o-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(233,233,233,1) 100%); /* Opera 11.10+ */
		background: -ms-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(233,233,233,1) 100%); /* IE10+ */
		background: linear-gradient(to bottom,  rgba(255,255,255,1) 0%,rgba(233,233,233,1) 100%); /* W3C */
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e9e9e9',GradientType=0 ); /* IE6-9 */
		
		float: left;
		color: #002497;
		font-family: arial;
		font-weight: 700;
		font-size: 12px;
		line-height:11px;
		text-transform: uppercase;
		padding: 7px 9px 6px 9px;
		word-spacing:4px;
		margin:4px 0px 2px 0px;
}



/*  SORT ARROW */

.sortArrowasc, .sortArrowdesc
{
		width:12px;
		height:10px;
		border:1px solid #fff;
		background:#46494e;
		border-radius:1px;
		box-shadow:1px 1px 0px #46494e;
		display:inline-block;
}

.sortArrowasc:after
{
		content:'';	
		width: 0px;
		height: 0px;
		border-style: solid;
		border-width: 4px 4px 0 4px;
		border-color: #ffffff transparent transparent transparent;
		position:relative;
		top:7px;
}

.sortArrowdesc:after
{
		content:'';	
		width: 0px;
		height: 0px;
		border-style: solid;
		border-width: 0px 4px 4px 4px;
		border-color: transparent transparent #ffffff transparent;
		position:relative;
		bottom:10px;
}