.imageBox,.imageBoxHighlighted{
	width:250px;/* Total width of each image box */
	height: 125px;
	float:left;
	margin: 5px;
	padding: 0em;
	border: 1px solid #3C7580;
	}
	
.imageBox_theImage{
	width:250px;
	margin: 0 auto;
	margin-bottom:2px;
	}

.imageBox .imageBox_theImage{
	padding:0px;
	}
.imageBoxHighlighted .imageBox_theImage{
	padding:0px;
	}

/* DIV that indicates where the dragged image will be placed*/
#insertionMarker{
height:150px;
width:6px;
position:absolute;
display:none;
}

#insertionMarkerLine{
width:6px;/* No need to change this value */
height:100px;/* To adjust the height of the div that indicates where the dragged image will be dropped */
}

#insertionMarker img{
float:left;
}

/*
DIV that shows the image as you drag it 
*/
#dragDropContent{
opacity:0.5;
filter:alpha(opacity=50);

/* No need to change these three values */
position:absolute;
z-index:10;
display:none;
}

