@charset "utf-8";
/* CSS Document */

.dropZone{
	min-height:410px;
}

.dropZone h1 {
    margin-top: .5em;
    background: rgba(255,255,255,0.5);
    padding: 5px;
    text-align: center;
}

.dropZone .draggable {
   background-color: rgba(0, 75, 143, .6);
    color: white;
    font-size: small;
    /* display: inline-block; */
    max-width: 100%;
    height: 100%!important;
    margin-top: 5px;
	 padding: 8px;
		z-index:1001;
}

.draggable {
  font-size: large;
	display:block;
	cursor:grab;
	cursor: -webkit-grab;
	cursor: -moz-grab;
	border:1px dotted rgba(0, 75, 143, .8);
}

.ui-draggable-dragging{
	cursor:grabbing;
	cursor: -webkit-grabbing;
	cursor: -moz-grabbing;
}


#statementStack {
  margin-top: 2em;
	margin-bottom: 1em;
	text-align: center;
}


#checkCorrect {
  font-size: large;
  font-weight: 700;
	text-align: center;
	color: rgba(0, 75, 143, 1);
	margin-bottom:1em;
}

/* IE dug fix for cursor */
@media screen\0 {

  .draggable {
  	cursor:move;
  }

}


