.stickySeparator
{
		background:#ddd;	
}

.newButton
{
		cursor: pointer;
		border: 1px solid #444c5a;
		border-radius: 2px;
		box-shadow: inset 0px 1px 0px #fff;
		
		background: rgb(189,189,189); /* Old browsers */
		background: -moz-linear-gradient(top,  rgba(189,189,189,1) 0%, rgba(239,238,238,1) 100%); /* FF3.6+ */
		background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(189,189,189,1)), color-stop(100%,rgba(239,238,238,1))); /* Chrome,Safari4+ */
		background: -webkit-linear-gradient(top,  rgba(189,189,189,1) 0%,rgba(239,238,238,1) 100%); /* Chrome10+,Safari5.1+ */
		background: -o-linear-gradient(top,  rgba(189,189,189,1) 0%,rgba(239,238,238,1) 100%); /* Opera 11.10+ */
		background: -ms-linear-gradient(top,  rgba(189,189,189,1) 0%,rgba(239,238,238,1) 100%); /* IE10+ */
		background: linear-gradient(to bottom,  rgba(189,189,189,1) 0%,rgba(239,238,238,1) 100%); /* W3C */
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#bdbdbd', endColorstr='#efeeee',GradientType=0 ); /* IE6-9 */
		
		
		float: left;
		color: #444c5a;
		text-shadow: -1px -1px 0px #e3e3e3;
		font-family: arial;
		font-weight: 300;
		font-size: 12px;
		line-height:11px;
		text-transform: lowercase;
		padding: 5px 8px 4px 45px;
		word-spacing:4px;
		margin:0px 0px 3px 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:1px;
}

