.table-sortable {
	border-collapse:separate; 
	border-spacing:0 5px; 
	width: 100%;
}

.table-sortable tr td {
	line-height: 1.42857143;
    border-top: 1px solid #ccc ; 
    border-bottom: 1px solid #ccc ; 
	padding: 1px !important;
	
    background: #fafafa;
    background: -webkit-linear-gradient(top, #fafafa 0%, #eee 100%);
    background: -moz-linear-gradient(top, #fafafa 0%, #eee 100%);
    background: linear-gradient(top, #fafafa 0%, #eee 100%);
}
.table-sortable tr td:first-child {
	border-left: 1px solid #ccc; 
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
}
.table-sortable tr td:last-child {
	border-right: 1px solid #ccc; 
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
}

.table-sortable .handle:before {
    content: '≡';
    width: 20px;
	padding-left: 5px;
    text-align: center;
    text-indent: 0;
    color: #999;
    font-size: 20px;
    font-weight: normal;
	cursor: move;
}
.table-sortable .handle {
    width: 25px;
	border-right: 1px solid #ccc;
	margin-right: 5px;
}

.table-sortable.static {
	border-spacing:0; 
	margin-top:20px;
}
.table-sortable.static .handle:before {
    content: '';
	cursor: pointer;
}


.table-sortable .dragged {
	z-index: 2000;
	position: absolute;
	opacity: 0.8;	
}

.table-sortable .placeholder {
	height: 40px;
}

.table-sortable .placeholder td {
	height: 40px;
	background: #f2fbff;
	border-top: 1px dashed #b6bcbf;
	border-bottom: 1px dashed #b6bcbf;
}
.table-sortable .placeholder td:first-child {
	border-left: 1px dashed #b6bcbf;
	border-radius: 0;
}
.table-sortable .placeholder td:last-child {
	border-right: 1px dashed #b6bcbf;
	border-radius: 0;
}


.table-sortable .icobutton {
	margin-right: 3px;
}


/* specials for settings accounting */
.table-sortable .db-description {
	padding-left: 10px !important;
}

