/* 
 * dragtable
 *
 * @Version 1.0.3
 *
 * default css
 *
 */


.dragtable-drag-handle{
	cursor: move;
}

/*
 * gets wrapped around placeholder table
 */
  
.dragtable-drag-wrapper{
	position: absolute;
    zindex: 1000;
} 
 /*
  * this gets applied to the table copy of the col that we are dragging 
  */ 
.dragtable-drag-wrapper .dragtable-drag-col{
    opacity: 0.7;
    filter: alpha(opacity=70);
    cursor:move;
}

/*
	placeholder is just a name for the real table col
*/
.dragtable-col-placeholder { 
    border-left: 1px dotted black;
    border-right: 1px dotted black; 
    color:#EFEFEF;
    background: #EFEFEF !important; 
    visibility: visible !important;
}
table .dragtable-col-placeholder:first{
	border-top:1px dotted black;
}


.dragtable-col-placeholder * { 
    opacity: 0.0; visibility: hidden; 
}


	/* simple reset*/


/* tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* add some styling to the table, padding etc*/
table thead th{
	padding:3px 10px;
	border-bottom:1px soild #000000;
	background:#CCCCCC;
}
table tbody td{
	padding:3px 10px;
}
table tbody tr:nth-of-type(2n+1) td{
	background:#7AA6DC;
}

#three tbody tr:nth-of-type(2n+1) td{
	background:#82CE76;
}
.drag{
	background:#CCCCCC !important;
	color:#cCCCCC;
}

.dragtable-drag-handle{
	height:.5em;
	background:green;
}

	