#sortable table {
	border-collapse: collapse;
}
 
#sortable td, th {
	padding: 0.5em;
	border: 1px solid #CCC;
}
 
#sortable thead, tfoot {
	background-color: #DDD;
}
 
#sortable thead {
	border-bottom: 2px solid #f08900;
}
 
#sortable tfoot {
	border-top: 2px solid #f08900;
}
 
#sortable tr.rowodd {
	background-color: #FFF;
}
 
#sortable tr.roweven {
	background-color: #F2F2F2;
}
 
#sortable .sortcol {
	cursor: pointer;
	padding-right: 20px;
	background-repeat: no-repeat;
	background-position: right center;
}
 
#sortable .sortasc {
	background-color: #DDFFAC;
	background-image: url('/images/up.gif');
}
 
#sortable .sortdesc {
	background-color: #B9DDFF;
	background-image: url('/images/down.gif');
}
 
#sortable .nosort {
	cursor: default;
}
 
#sortable th.resize-handle-active {
	cursor: e-resize;
}
 
#sortable div.resize-handle {
	cursor: e-resize;
	width: 2px;
	border-right: 1px dashed #1E90FF;
	position:absolute;
	top:0;
	left:0;
}