#cardSlots {
  margin: 0px;
  background: grey;
  border-radius:10px;
	-moz-border-radius:10px;
	-webkit-border-radius:10px;
}
 
/* The initial pile of unsorted cards */
 
#cardPile {
  margin: 5px;
  
}
  
#cardSlots, #cardPile {
  width: 1020px;
  height: 104px;
  padding: 3px;

}
 

/* Individual cards and slots */
 
#cardSlots div {
  float: left;
  width: 70px;
  height: 92px;
  
  padding: 0px;
  padding-top: 0px;
  padding-bottom: 0;
  border: 1px solid #fff081;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  margin: 3px 0 3px 7px;
  background: #rgba(138, 200, 65, 0.7);
}

#cardPile div {
  float: left;
  width: 70px;
  height: 92px;
  padding: 0px;
  padding-top: 0px;
  padding-bottom: 0;
  
  margin: 3px 0 3px 7px;
  
}


#cardSlots div:first-child, #cardPile div:first-child {
  margin-left: 10px;
}
 
#cardSlots div.hovered {
  background: #aaa;
}
 
#cardSlots div {
	text-align:center;
  border-style: dotted;
  background-color: white;
}
 
#cardPile div {
  
  text-align:center;
  color: #fff;
  font-size: 50px;
  text-shadow: 0 0 3px #000;
}
 
#cardPile div.ui-draggable-dragging {
  -moz-box-shadow: 0 0 .5em rgba(0, 0, 0, .8);
  -webkit-box-shadow: 0 0 .5em rgba(0, 0, 0, .8);
  box-shadow: 0 0 .5em rgba(0, 0, 0, .8);
}

 
/* "You did it!" message */
#successMessage {
  position:absolute;
  left: 500px;
  top: 300px;
  color : white;
  width: 0;
  height: 0;
  z-index: 100;
	background-color : #77C042;
	text-align : center;
	border-radius:10px;
	-moz-border-radius:10px;
	-webkit-border-radius:10px;
	
  padding: 20px;
}

#instr_win {
	position:absolute;
 top: 100px;
  z-index: 100;
  color : white;
	background-color : #77C042;
	text-align : center;
	border-radius:10px;
	-moz-border-radius:10px;
	-webkit-border-radius:10px;
	
}

#help_win {
	position:absolute;
 top: -100px;
  z-index: 100;
  color : white;
  width: 300px;
   left: 1040px;
	background-color : white;
	text-align : center;
	border-radius:10px;
	-moz-border-radius:10px;
	-webkit-border-radius:10px;
	
}


