/* Add some margin to the page and set a default font and colour */

body {
  margin: 30px;
  font-family: "Georgia", serif;
  line-height: 1.8em;
  color: #333;
}

/* Give headings their own font */

h2, h3, h4 {
  font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
}
h1{
  font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
  font-size:3em;
  color:red;
  text-align: center;
  line-height: 0px;
}
.inp {
 font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
  font-size:2.5em;
  color:blue;
}
/* Main content area */

#content,#content1,#content2,#content3 {
  margin: 10px 10px;
  text-align: center;
  -moz-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}

/* Header/footer boxes */

.wideBox {
  clear: both;
  text-align: center;
  margin: 10px;
  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,#cardSlots1,#cardSlots2,#cardSlots3 {
  margin: 40px auto 0 auto;
  background: #ddf;
}

/* The initial pile of unsorted cards */

#cardPile,#cardPile1,#cardPile2,#cardPile3 {
  margin: 0 auto;
  background: #ffd;
}

#cardSlots,#cardSlots1,#cardSlots2,#cardSlots3 {
  width: 400px;
  height: 300px;
  padding: 10px;
  border: 2px solid #333;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  -moz-box-shadow: 0 0 .3em rgba(0, 0, 0, .8);
  -webkit-box-shadow: 0 0 .3em rgba(0, 0, 0, .8);
  box-shadow: 0 0 .3em rgba(0, 0, 0, .8);
} 

#cardPile,#cardPile1,#cardPile2,#cardPile3 {
  width: 500px;
  height: 80px;
  padding: 5px;
  border: 2px solid #333;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  -moz-box-shadow: 0 0 .3em rgba(0, 0, 0, .8);
  -webkit-box-shadow: 0 0 .3em rgba(0, 0, 0, .8);
  box-shadow: 0 0 .3em rgba(0, 0, 0, .8);
}

/* Individual cards and slots */

#cardSlots div, #cardPile div,#cardSlots1 div, #cardPile1 div {
  float: left;
  width: 40px;
  height: 50px;
  padding: 7px;
  padding-top: 5px;
  padding-bottom: 5px;
  border: 2px solid #333;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  margin: 0 0 0 5px;
  background: #fff;
}
#cardSlots2 div, #cardPile2 div,#cardSlots3 div, #cardPile3 div {
  float: left;
  width: 40px;
  height: 50px;
  padding: 7px;
  padding-top: 5px;
  padding-bottom: 5px;
  border: 2px solid #333;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  margin: 0 0 0 5px;
  background: #fff;
}
#cardSlots div:first-child, #cardPile div:first-child,#cardSlots1 div:first-child, #cardPile1 div:first-child {
  margin-left: 0;
}

#cardSlots div.hovered,#cardSlots1 div.hovered {
  background: #aaa;
}

#cardSlots div,#cardSlots1 div {
  border-style: dashed;
}

#cardPile div,#cardPile1 div {
  background: #666;
  color: #fff;
  font-size: 50px;
  text-shadow: 0 0 3px #000;
}

#cardPile div.ui-draggable-dragging,#cardPile1 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);
}


#cardSlots2 div:first-child, #cardPile2 div:first-child,#cardSlots3 div:first-child, #cardPile3 div:first-child {
  margin-left: 0;
}

#cardSlots2 div.hovered,#cardSlots3 div.hovered {
  background: #aaa;
}

#cardSlots2 div,#cardSlots3 div {
  border-style: dashed;
}

#cardPile2 div,#cardPile3 div {
  background: #666;
  color: #fff;
  font-size: 50px;
  text-shadow: 0 0 3px #000;
}

#cardPile2 div.ui-draggable-dragging,#cardPile3 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);
}








