	body {
		font-family: Trebuchet MS, Lucida Sans Unicode, Arial, sans-serif;	/* Font to use */
		/*background-color:#E2EBED;*/
	}
	
	#dragDropContainer{	/* Main container for this script */
		z-index:5;
		position:absolute;
		left:0px;
		right:0px;
		top:0px;
		bottom:0px;
	}
	#dragDropContainer ul{	/* General rules for all <ul> */
		margin-top:0px;
		margin-left:0px;
		margin-bottom:0px;
		padding:2px;
	}

	#dragDropContainer li,#dragContent li,li#indicateDestination{	/* Movable items, i.e. <LI> */
		list-style-type:none;
		height:150px;
		width:150px;
		background-image: url('../images/pixel50.png');
		padding:2px;
		margin:2px;
		cursor:pointer;
		font-size:0.9em;
		float:left;
		display:table;
		position:relative;
		z-index:100;
		
	}

	li#indicateDestination{	/* Box indicating where content will be dropped - i.e. the one you use if you don't use arrow */
		/*border:1px solid #317082;*/
		/*background-color:#FFF;*/
	}

	/* LEFT COLUMN CSS */
	div#listOfItems{	/* Left column "Available students" */
		z-index:6;
		position:absolute;
		background-image: url('../images/pixel50.png');
		top:50px;
		left:100px;
		padding-left:10px;
		padding-right:10px;

		/* CSS HACK */
		width: 970px;	/* IE 5.x */
		width/* */:/**/970px;	/* Other browsers */
		width: /**/970px;

	}
	#listOfItems ul{	/* Left(Sources) column <ul> */
		height:500px;

	}

	div#listOfItems div{
		/*border:1px solid #999;*/
	}
	div#listOfItems div ul{	/* Left column <ul> */
		margin-left:10px;	/* Space at the left of list - the arrow will be positioned there */
	}
	#listOfItems div p{	/* Heading above left column */
		margin:0px;
		Height:100px;
		line-height:100px;
		font-family: Headline;
		text-align: center;
		font-size:50px;
	
		color:#FFF;
		margin-bottom:5px;
	}
	/* END LEFT COLUMN CSS */

	#dragDropContainer .mouseover{	/* Mouse over effect DIV box in right column */
		/*background-color:#E2EBED;*/
		/*border:1px solid #317082;*/
	}

	/* Start main container CSS */

	div#mainContainer{	/* Right column DIV */
		position:absolute;
		left:1150px;
		top:50px;
		width:185px;
		
	}
	#mainContainer div{	/* Parent <div> of small boxes */
		background-image: url('../images/pixel50.png');
		

		/* CSS HACK */
		width: 185px;	/* IE 5.x */
		width/* */:/**/185px;	/* Other browsers */
		width: /**/185px;

	}
	#mainContainer div ul{
		margin-left:10px;
	}

	#mainContainer div p{	/* Heading above small boxes */
		margin:0px;
		padding:0px;
		padding-top:13px;
		font-weight:bold;
		color:#FFF;
		text-align: center;
		font-size:20px;
		font-family: Headline;
		margin-bottom:5px;
	}

	#mainContainer ul{	/* Small box in right column ,i.e <ul> */
		width:154px;
		height:80px;
		border:0px;
		margin-bottom:0px;
		overflow:hidden;

	}

	#dragContent{	/* Drag container */
		position:absolute;
		width:150px;
		height:20px;
		display:none;
		margin:0px;
		padding:0px;
		z-index:2000;
	}

	#dragDropIndicator{	/* DIV for the small arrow */
		position:absolute;
		width:7px;
		height:10px;
		display:none;
		z-index:1000;
		margin:0px;
		padding:0px;
	}
	
