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

body {
  margin: 10px;
  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 {
  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;
}

.piccolo {
font-size:0.6em;
}
#cardSlots {
  margin: 10px auto 10 auto;
  background: #ddf;
}

/* The initial pile of unsorted cards */

#cardPile {
  margin: 0 auto;
  background: #ffd;
}

#cardSlots {
  width: 340px;
  height: 340px;
  padding: 5px;
  border: 2px;
  -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 {
	float: left;
  width: 340px;
  height: 90px;
  padding: 0px;
  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 {
  float: left;
  width: 80px;
  height: 80px;
  padding: 0px;
  padding-top: 0px;
  padding-bottom: 1px;
  border: 1px double #333;
  margin: 1 1 1 1px;
  background: #fff;
}
 #cardPile div {
  float: left;
  width: 80px;
  height: 80px;
  padding: 0px;
  padding-top: 0px;
  padding-bottom: 2px;
  border: 1px double #333;
  margin: 1 1 1 1px;
  background: rgba(255,120,55,0.8);
}
#cardSlots div:first-child, #cardPile div:first-child {
  margin-left: 0;
}

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

#cardSlots div {
  border-style: solid;
  border-color:red;
  background: #ddd;
}

#cardPile div {
  background: rgba(255,165,55,0.8);
  color: #000;
  font-size: 3em;
  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);
}



