	.dragScriptContainer{	/* BIG DIV containing HTML needed for the entire script */
		font-size: 0.65em;
		width:66.5em;
		margin:0 auto;
		border:none;
		padding-top:2em;
		margin-top:2em;
		padding:0.3em;
	}

	 #myfooter{
			clear: right; clear: left;
			margin-top: 2em;
	 }

	#questionDiv{	/* Big div for all the questions */
		float:left;
		width:43.5em;
		border:0.1em solid #000;
		padding:0.1em;
		text-align:center;
		margin-bottom:0.2em;
	}
	#answerDiv{	/* Big div for all the answers */
		float:right;
		width:21em;
		border:0.1em solid #000;
		padding:0.1em;
		text-align:center;
		margin-bottom:0.2em;
	}

	#questionDiv div,#answerDiv div,#dragContent div{	/* General rules for small divs - i.e. specific questions and answers */
		width:20.1em;
		height:1.9em;
		line-height:0.9em;
		float:left;
		padding:0.2em;
		margin:0.2em;
		text-align:center;
		background-color:#FFF;
	}

	#questionDiv .destinationBox{	/* Small empty boxes for the questions - i.e. where answers could be dragged */
		background-color:#DDD;
		width:20.1em;
		height:1.9em;
		line-height:0.9em;
		padding:0.2em;
		margin:0.2em;
		border:0.1em solid #f0e8e8;
		margin-bottom: 0.2em;
	}

	#dragContent div{	/* Drag content div - i.e. specific answers when they are beeing dragged */
		border:0.1em solid #000;
	}

	#answerDiv .dragDropSmallBox{	/* Small answer divs */
		border:0.1em solid #000;
		height:1.9em;
		line-height:0.9em;
		cursor:pointer;
	}

	#questionDiv .dragDropSmallBox{	/* Small answer divs */
		border:0.1em solid #000;
		cursor:pointer;
		background-color:#E2EBED; /* Light blue background color */
	}

	#questionDiv div div{	/* DIV after it has been dragged from right to left box */
		margin:0em;
		border:0em;
		padding:0em;
	}

	#questionDiv .draggedAnswer{	/* CSS indicating correct answer */
		background-color:green;
		color:#fff;
		width:20.5em;
		height:2.0em;
		border:0.1em solid #f0e8e8;
		margin-bottom: 0.2em;
	}

	#dragContent div{
		background-color:#FFF;
	}

	#questionDiv .dragContentOver{	/* Mouse over question boxes - i.e. indicating where dragged element will be appended if mouse button is relased */
		border:0.1em solid #F00;
	}

	#answerDiv.dragContentOver{	/* Mouse over answer box - i.e. indicating where dragged element will be appended if mouse button is relased */
		border:0.1em solid #F00;
	}

	/* NEVER CHANGE THIS */
	#dragContent{
		position:absolute;

		display:none;
	}

