/*
General CSS for the demos of DHTMLSuite
*/
body{
	font-family: Trebuchet MS, Lucida Sans Unicode, Arial, sans-serif;
	font-size:0.8em;
}
	/* CSS for the demo. CSS needed for the scripts are loaded dynamically by the scripts */
#mainContainer{
	width:600px;
	margin:0 auto;
	margin-top:10px;
	border:1px solid #000;
	padding:2px;
}

#leftColumn{
	width:300px;
	float:left;
	border:1px solid #000;
	background-color:#E2EBED;
	padding:3px;
	/*height:400px;*/
}
#rightColumn{
	width:200px;
	float:right;
	margin:2px;
	height:300px;
}	
.dragableBox{
	width:100px;
	height:40px;
	border:1px solid #000;
	background-color:#FFF;		
	margin-bottom:5px;
	padding:10px;
	font-weight:bold;
	text-align:center;
}
.dropBox{
	width:190px;
	border:1px solid #000;
	background-color:#E2EBED;
	height:400px;
	margin-bottom:10px;
	padding:3px;
	overflow:auto;
}		
a{
	color:#F00;
}
	
.clear{
	clear:both;
}
img{
	border:0px;
}	



