	#mainContainer{
		width: 960px;
		margin:0 auto;
		text-align:center;
		height:100%;
	}

	#header img{
		float:left;
	}

	.boxItemHeader{	/* Title of items inside dragable boxes */
		font-weight:bold;
		margin:0px;
		color:#000;
		text-decoration:none;
		overflow:hidden;
	}
	.boxItemHeader:hover{	/* Title of items inside dragable boxes - mouseover*/
		font-weight:bold;
		margin:0px;
		color:#F00;
		text-decoration:underline;
	}

	.dragableBoxHeader{
		background-color: white;
	}

	.dragableBoxContent{	/* DIV holding data inside dragable boxes */
	}

	.dragableBox {
		font-weight: normal;
		border: 5px solid #FFFFFF;
		width: 302px;
		margin-bottom: 10px;
	}

	#rectangleDiv{	/* Dotted rectangle indicating where objects will be dropped */
		border:1px dotted red;
	}

	.closeButton{	/* Close button */
		border:1px solid #317082;
		line-height:9px;
		height:9px;
		margin:2px;
		color:#317082;
		padding:2px;
		padding-bottom:3px;
	}
	.closeButton_over{	/* Close button - mouse over */
		padding:2px;
		border:1px solid #317082;
		line-height:9px;
		padding:2px;
		padding-bottom:3px;
		margin:2px;
		background-color:#317082;
		color:#FFF;
	}

	.dragableBoxEditLink{	/* Edit link on top of a box */
		color:#317082;
		text-decoration:none;
	}
	.dragableBoxEditLink:hover{	/* Edit link - mouse over */
		color:red;
		text-decoration:underline;
	}