
/* add bottom margin between tables */
#table1,
#table2{
  width:760px;
	margin-bottom: 20px;
}


/* drag container (contains two tables) */
#panelbody{
	text-align:center;
	

}

#drag{

	width: 760px;
	text-align:left;
	margin:0 auto;
	
}


/* drag objects (DIV inside table cells) */
.drag{
	position: relative;
    float: left;


	cursor: move;
	margin: 0;
	background-color: white;
	text-align: center;
	font-size: 10pt; /* needed for cloned object */
	opacity: 0.7;
	filter: alpha(opacity=70);
	/* without width, IE6/7 will not apply filter/opacity to the element ?! */
	width: auto;
}


/* tables */
div#drag table{
	background-color: #e0e0e0;
	border-collapse: collapse;
}


/* needed for IE6 because cursor "move" shown on radio button and checckbox ?! */
div#drag input{
	cursor: auto;
}


/* table cells */
div#drag td{
	height: 55px;
    width: 180px;
	border: 1px solid white;
	text-align: center;
	font-size: 10pt;
	padding: 2px;
}


/* drag objects border for the first table */
.t1 {border: 2px solid #499B33;}
/* drag object border for the second table */
.t2 {border: 2px solid #2D4B7A; margin: 2px;}
/* cloned objects - third table */
.t3 {border: 2px solid #0080ff;}
/* forbidden cells */
table#table1 tr td.forbid{color: #000000; background-color:#d9e3ff;font-weight:bold;border:solid 1px #9fbaff;height:30px;}
table#table2 tr td.forbid{color: #000000; background-color: #d9e3ff;font-weight:bold;border:solid 1px #9fbaff;height:30px;}
/* trash cell */
table#table3 tr td.trash {background-color:#ecedf4; border:solid 1px #b9b9b9; color:#000000;font-weight:bold;}


/* "Click" button */
.button{
	background-color: #6A93D4;
	color: white; 
	border: 2px solid #052D6E;
	width: 40px;
	padding: 0px;
}


/* toggle checkboxes at the bottom */
.checkbox{
	margin-left: 13px;
	margin-right: 14px;
	width:13px; /* needed for IE ?! */
}


/* button message */
.message_line{
	padding-left: 10px;
	margin-bottom: 3px;
	font-size: 10pt;
	color: #888;
}

#submitbutton{
	width:187px;
	height:55px;
	font-size:14px;
	font-weight:bold;

	
}
/* append here cloned object before land to some table cell */
#obj_new{
	height: 23px;
	width: 10px;
}