	#dragScriptContainer{	/* BIG DIV containing HTML needed for the entire script */
		width:180px;
		margin:0 auto;
		border:1px solid #ccc;
		height:76px;
		margin-top:10px;
		padding:3px;
		-moz-user-select:no;
		font-family: Helvetica, sans-serif;
		font-size: 12px;
	}
	#questionDiv{	
		float:left;
		height:92%;
		width:100px;
		padding:2px;
	}
	#answerDiv{	
		float:right;
		height:92%;
		width:50px;
		padding:2px;
		border:1px solid #FFF;	
	}
	#questionDiv div,#answerDiv div,#dragContent div{	/* General rules for small divs - i.e. specific questions and answers */
		width:45px;
		height:20px;
		line-height:20px;		
		float:left;
		margin-right:2px;
		margin-bottom:2px;
		text-align:center;
	}
	#dragContent div{	/* Drag content div - i.e. specific answers when they are beeing dragged */
		border:1px solid #000;
	}
	#answerDiv .dragDropSmallBox{	/* Small answer divs */
		border:1px solid #CCC;
		cursor:pointer;
	}
	#questionDiv .dragDropSmallBox{	/* Small answer divs */
		border:1px solid #CCC;
		cursor:pointer;
		color: #FFF;
		background-color:#333; /* Light blue background color */
	}
	#questionDiv div div{	/* DIV after it has been dragged from right to left box */
		margin:0px;
		border:0px;
		padding:0px;
		background-color:#FFF;
	}
	#questionDiv .destinationBox{	/* Small empty boxes for the questions - i.e. where answers could be dragged */
		border:0px;
		background-color:#CCC;
   		content: "\2713 ";
		width:47px;
		height:22px;	
	}
	#questionDiv .correctAnswer{	/* CSS indicating correct answer */
		background-color:#336633;
		color:#FFF;
		border:1px solid #CCC;
	}
	#questionDiv .wrongAnswer{	/* CSS indicating wrong answer */
		background-color:#AA1224;
		color:#fff;
		border:1px solid #CCC;
	}
	#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:1px solid green;
	}
	#answerDiv.dragContentOver{	/* Mouse over answer box - i.e. indicating where dragged element will be appended if mouse button is relased */
		border:1px solid green;
	}
	/* NEVER CHANGE THIS */
	#dragContent{
		position:absolute;
		display:none;
	}
	#form_sec_input{
		width:28px;
		border:1px solid #ccc;
		margin-top:5px;
		padding:5px;
		-moz-user-select:no;
	}

	.form_sec_holder{
		width:187px;
		margin:0 auto;
		-moz-user-select:no;
		font-family: Helvetica, sans-serif;
		font-size: 12px;
	}

	.button_btn {
		border:none;
		border-radius: 0px; 
		-moz-border-radius: 0px; 
		-webkit-border-radius: 0px; 
		color:#fff;
		font-size: 18px;
		font-weight: bold;
		background: #AA1224;/* Old browsers */
		float: right;
				
	}