/* CSS Document */
body {
  margin: 0px;
  color: #333;
  line-height:25px;
}
 
/* Give headings their own font */
 
h1, h2, h3, h4, p {
  font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
}
 
/* Main content area */
#admin {
	margin-left:40px;
	width:425px;
	background-color:#FFC;
	height:30px;
	padding-top:5px;
	padding-left:25px;
}

#content {
  margin-left:40px;
  -moz-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  background-color:#e1e1d7;
  width:450px;
  height:800px;
  font-family:Arial, Helvetica, sans-serif;
  font-size:12px;
}
.title {
	font-size:16px;
	font-weight:bold;
}
#formBox {
	width:280px;
	margin-top:20px;
	}
#formLeft {
	width:50px;
	float:left;
	margin-left:50px;
	}
#formRight {
	width:150px;
	float:right;
	}
#thanks{
	width:250px;
	text-align:center;
	margin-top:30px;
	font-family:Arial, Helvetica, sans-serif;
  	font-size:12px;
	}
 
/* Header/footer boxes */
 
.wideBox {
  clear: both;
  text-align: center;
  margin: 70px;
  padding: 10px;
  background: #ebedf2;
  border: 1px solid #333;
}
 
.wideBox h1 {
  font-weight: bold;
  margin: 20px;
  color: #666;
  font-size: 1.5em;
}
 
/* Slots for final card positions */
 
#cardSlots {
  margin: 20px auto 0 auto;
}
 
/* The initial pile of unsorted cards */
 
#cardPile {
  margin: 0 auto;
}
 
#cardPile {
  width: 380px;
  height: 120px;
  padding: 10px;
  /*border:#990000 thin solid;*/
}

#cardSlots {
  width: 380px;
  height: 240px;
  padding: 10px;
  /*border:#990000 thin solid;*/
}

 
/* Individual cards and slots */
 
#cardSlots div, #cardPile div {
  float: left;
  width: 100px;
  height: 100px;
  padding: 0px;
  padding-top: 0px;
  padding-bottom: 0;
  border: 2px solid #333;
  margin: 5px;
  background: #fff;
}

 
#cardSlots div:first-child, #cardPile div:first-child {
  margin-left: 0;
}
 
#cardSlots div.hovered {
  background: #aaa;
}
 
#cardSlots div {
  border-style:solid;
}
 
#cardPile div {
  background: #666;
  color: #fff;
  font-size:14px;
  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);
}
 
/* Individually coloured cards */
 
#card1.correct { background: url(/biceps/images/2.jpg) no-repeat; }
#card2.correct { background: url(/biceps/images/4.jpg) no-repeat; }
#card3.correct { background: url(/biceps/images/6.jpg) no-repeat; }

 
 
/* "You did it!" message */
#successMessage {
  position: absolute;
  left: 580px;
  top: 250px;
  width: 0;
  height: 0;
  z-index: 100;
  background: #dfd;
  border: 2px solid #333;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  -moz-box-shadow: .3em .3em .5em rgba(0, 0, 0, .8);
  -webkit-box-shadow: .3em .3em .5em rgba(0, 0, 0, .8);
  box-shadow: .3em .3em .5em rgba(0, 0, 0, .8);
  padding: 20px;
}

