body{
		font-family: Trebuchet MS, Lucida Sans Unicode, Arial, sans-serif;	/* Font to use */
		background-color:#FFF6DC;
	}
	#footer{
		height:30px;
		vertical-align:middle;
		text-align:right;
		clear:both;
		padding-right:3px;
		background-color:#317082;
		margin-top:2px;
		width:790px;
	}
	#footer form{
		margin:0px;
		margin-top:2px;
	}
	#dhtmlgoodies_dragDropContainer{	/* Main container for this script */
		width:790px;
		height:770px;
		border:1px solid #317082;
		background-color:#FFF;
		-moz-user-select:none;
	}
	#dhtmlgoodies_dragDropContainer ul{	/* General rules for all <ul> */
		margin-top:0px;
		margin-left:0px;
		margin-bottom:0px;
		padding:2px;
	}
	
	#dhtmlgoodies_dragDropContainer li,
	#dragContent li,
li#indicateDestination {
	list-style-type: none;
	height: 40px;                        /* taller boxes */
	background-color: #FFEB3B;           /* bright yellow */
	border: 2px solid #333;              /* thicker, dark border */
	padding: 10px 12px;                  /* more internal space */
	margin-bottom: 8px;                  /* more spacing between boxes */
	cursor: drag;                        /* updated cursor */
	font-size: 16px;                     /* larger text */
	line-height: 20px;
	border-radius: 8px;                  /* rounded corners */
	box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2); /* subtle shadow */
	transition: all 0.2s ease;           /* smooth hover animation */
	color: #000;                         /* text color */
	font-weight: 500;                    /* semi-bold text */
}

/* Hover effect */
#dhtmlgoodies_dragDropContainer li:hover {
	transform: scale(1.05);
	background-color: #FFF176;           /* lighter yellow on hover */
}

	}

	li#indicateDestination{	/* Box indicating where content will be dropped - i.e. the one you use if you don't use arrow */
		border:1px dotted #600;	
		background-color:#FFF;
	}
		
	#dhtmlgoodies_dragDropContainer ul li.correctAnswer{	/* Correctly moved item */
		background-color:green;
		color:#FFF;
	}
	#dhtmlgoodies_dragDropContainer ul li.wrongAnswer{	/* Item moved to wrong box */
		background-color:red;
		color:#FFF;
	}
	
	
	/* LEFT COLUMN CSS */

	#dhtmlgoodies_listOfItems ul li {
    	padding: 5px 10px;       /* Smaller padding */
	    font-size: 14px;         /* Smaller text */
    	cursor: grab;            /* Show grabbing hand */
	    border-radius: 5px;      /* Optional: rounded corners */
    	width: auto;             /* Adjust width automatically */
    	box-sizing: border-box;
	}

	div#dhtmlgoodies_listOfItems{	
		
		float:left;
		padding-left:10px;
		padding-right:10px;
		
		/* CSS HACK */
		width: 180px;	/* IE 5.x */
		width/* */:/**/160px;	/* Other browsers */
		width: /**/160px;
				
	}
	#dhtmlgoodies_listOfItems ul{	/* Left(Sources) column <ul> */
		height:560px;	

	}
		
	div#dhtmlgoodies_listOfItems div{
		border:1px solid #999;		
	}
	div#dhtmlgoodies_listOfItems div ul{	/* Left column <ul> */
		margin-left:10px;	/* Space at the left of list - the arrow will be positioned there */
	}
	#dhtmlgoodies_listOfItems div p{	/* Heading above left column */
		margin:0px;	
		font-weight:bold;
		padding-left:12px;
		background-color:#317082;	
		color:#FFF;
		margin-bottom:5px;
	}
	/* END LEFT COLUMN CSS */
	
	#dhtmlgoodies_dragDropContainer .mouseover{	/* Mouse over effect DIV box in right column */
		background-color:#848f91;
		border:2px solid #317082;
	}
	
	/* Start main container CSS */

	#dhtmlgoodies_mainContainer div{
    	display: inline-block;      /* Make columns sit next to each other */
    	vertical-align: top;        /* Align top */
    	width: 220px;               /* Adjust column width */
    	margin-right: 10px;         /* Space between columns */
	
	div#dhtmlgoodies_mainContainer{	/* Right column DIV */
		width:590px;
		float:left;	
	}
	#dhtmlgoodies_mainContainer div{	/* Parent <div> of small boxes */
		float:left;
		margin-right:10px;
		margin-bottom:10px;
		margin-top:0px;
		border:2px solid #999;

		/* CSS HACK */
		width: 172px;	/* IE 5.x */
		width/* */:/**/170px;	/* Other browsers */
		width: /**/170px;
				
	}
	#dhtmlgoodies_mainContainer div ul{
		margin-left:10px;
	}
	
	#dhtmlgoodies_mainContainer div p{	/* Heading above small boxes */
		margin:0px;
		padding:0px;
		padding-left:12px;
		font-weight:bold;
		background-color:#c75006;	
		color:#FFF;	
		margin-bottom:5px;
	}
	
	#dhtmlgoodies_mainContainer ul{	/* Small box in right column ,i.e <ul> */
		width:152px;
		height:80px;	
		border:0px;	
		margin-bottom:0px;
		overflow:hidden;
		
	}
	
	#dragContent{	/* Drag container */
  		display: inline-block;
  		padding: 10px 20px;
  		border-radius: 6px;
  		font-size: 16px;
  		background-color: #2f40fa;
  		cursor: grab;

	}

	#dragDropIndicator{	/* DIV for the small arrow */
		position:absolute;
		width:7px;
		height:10px;
		display:none;
		z-index:1000;
		margin:0px;
		padding:0px;
	}
	.style1 {color: #FF0000}

	
