.newButton
{
		cursor: pointer;
		border: 1px solid #797979;
		box-shadow: inset 0px 1px 0px #eee;
		border-radius: 2px;
		
		background: rgb(207,207,207);
		background: -moz-linear-gradient(top, rgba(207,207,207,1) 0%, rgba(232,232,232,1) 100%);
		background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(207,207,207,1)), color-stop(100%,rgba(232,232,232,1)));
		background: -webkit-linear-gradient(top, rgba(207,207,207,1) 0%,rgba(232,232,232,1) 100%);
		background: -o-linear-gradient(top, rgba(207,207,207,1) 0%,rgba(232,232,232,1) 100%);
		background: -ms-linear-gradient(top, rgba(207,207,207,1) 0%,rgba(232,232,232,1) 100%);
		background: linear-gradient(to bottom, rgba(207,207,207,1) 0%,rgba(232,232,232,1) 100%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cfcfcf', endColorstr='#e8e8e8',GradientType=0 );
		
		float: left;
		color: rgba(0, 0, 0, 0.75);
		text-shadow: 1px 1px 0px #cacaca;
		font-family: Coda;
		font-weight: 300;
		font-size: 11px;
		line-height:11px;
		text-transform: uppercase;
		padding: 6px 6px 5px 13px;
		word-spacing:4px;
}

.newButton:after
{
		width: 0px;
		height: 0px;
		border-style: solid;
		border-width: 0 0 8px 8px;
		border-color: transparent transparent #d92727 transparent;
		position: relative;
		display: inline-block;
		content: '';
		right: -5px;
		bottom: -5px;
}



/*  SORT ARROW */

.sortArrowasc, .sortArrowdesc
{
		border: 1px solid #696969;
		box-shadow: inset 0px 1px 0px #eee;
		border-radius: 2px;
		width:10px;
		height:10px;
		display:inline-block;
		background: rgb(207,207,207);
		background: -moz-linear-gradient(top, rgba(207,207,207,1) 0%, rgba(232,232,232,1) 100%);
		background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(207,207,207,1)), color-stop(100%,rgba(232,232,232,1)));
		background: -webkit-linear-gradient(top, rgba(207,207,207,1) 0%,rgba(232,232,232,1) 100%);
		background: -o-linear-gradient(top, rgba(207,207,207,1) 0%,rgba(232,232,232,1) 100%);
		background: -ms-linear-gradient(top, rgba(207,207,207,1) 0%,rgba(232,232,232,1) 100%);
		background: linear-gradient(to bottom, rgba(207,207,207,1) 0%,rgba(232,232,232,1) 100%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cfcfcf', endColorstr='#e8e8e8',GradientType=0 );
	
}

.sortArrowasc:after
{
		width: 0px;
		height: 0px;
		border-style: solid;
		border-width: 0 0 5px 5px;
		border-color: transparent transparent #d92727 transparent;
		position: relative;
		display: inline-block;
		content: '';
		right: -1px;
		bottom: -4px;
}

.sortArrowdesc:after
{
		width: 0px;
		height: 0px;
		border-style: solid;
		border-width: 0 5px 5px 0;
		border-color: transparent #d92727 transparent transparent;
		position: relative;
		display: inline-block;
		content: '';
		right: -1px;
		bottom: -1px;
}