div#gallery {
	height: auto;
	width: 600px;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 15px;
	margin-left: auto;
}
.imageBox, .imageBoxHighlighted {
	width: 100px;
	height: 100px;
	margin-right: auto;
	margin-left: auto;
	text-align: center;
	float: left;
	padding-bottom: 20px;
}
.imageBox_theImage {
	width:100px;	/* Width of image */
	height:70px;	/* Height of image */
	/* 
		Don't change these values *
		*/
		background-position: center center;
	background-repeat: no-repeat;
	margin-top: 5px;
	margin-bottom: 5px;
}
.imageBoxHighlighted .imageBox_theImage {
	padding:0px;
	border: 3px none #0033FF;
}
/* 
	DIV that indicates where the dragged image will be placed	
	*/
	#insertionMarker {
	height:70px;
	width:5px;
	position:absolute;
	display:none;
}
#insertionMarkerLine {
	width:86px;	/* No need to change this value */
	height:67px;	
	margin-top: 7px; 
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 7px;
	border: 2px solid #CC0033;
}
#insertionMarker img {
	float:left;
}
/*
	DIV that shows the image as you drag it 
	*/
#dragDropContent {
	/*opacity:0.4;	 40 % opacity */
	/*filter:alpha(opacity=40);	 40 % opacity */
	/* 
		No need to change these three values 
		*/
	position:absolute;
	z-index:10;
	display:none;
}
.gallerybutton {
	height: 20px;
	font-family: Arial, Helvetica, sans-serif;
	color: #333333;
	font-weight: normal;
	font-size: 8px;
	text-decoration: none;
	margin: 0px;
	padding: 0px;
}

