﻿ 
/* Main game content area */
 
#gamecontent {
	margin: 10px 10px 0px 10px;
	line-height: 1.8em;
	color: #333;
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	text-align: center;
	-moz-user-select: none;
	-webkit-user-select: none;
	user-select: none;
}

#gametitle {
	text-align: center;	
	font-size:24px;
	font-weight:bolder;
	color:#0000cc;	
}
  
/* Destination boxes for final object positions */
 
#objectDest {
  margin: 0 auto 0 auto;
  background:#99C;
}
 
/* The initial array of unsorted objects */
 
#objectTarget {
  margin: 0 auto;
  background: #ffd;
}
 
#objectDest {
  float:right;	
  width: 300px;
  height: 530px;
  padding: 20px;
  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);
}

#objectTarget {
  float:left;	
  width: 50px;
  height: 570px;
  padding-left: 25px;
  padding-top: 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 objects and destination boxes */
 
#objectDest div {
  float: right;
  width: 260px;
  height: 35px;
  padding: 15px;
  padding-top: 12px;
  padding-bottom: 2px;
  border: 2px solid #333;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  margin: 0 0 0 10px;
  background: #fff;
  text-align:right;
  font-size:18px;
  font-weight:bold;
}

#objectTarget div {
  float: right;
  width: 28px;
  height: 28px;
  padding: 10px;
  padding-top: 7px;
  padding-bottom: 2px;
  border: 2px solid #333;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  margin: 10px 10px 10px 10px;
  background: #fff;  
}
 
#objectDest div:first-child {
  margin-left: 5;
}
 
#objectDest div.hovered {
  background: #aaa;
}
 
#objectDest div {
  border-style:groove;
}
 
#objectTarget div {
  background: #666;
  color: #fff;
  
/*  font-size: 25px;
  text-shadow: 0 0 3px #000; */
}

#objectTarget div.dog {
  background: #666;
  color: #fff;
  width: 34px; 
  height: 24px;
  background-image:url(../images/dog_sm.gif);
  background-repeat:no-repeat;
  background-position:center;     
}

#objectTarget div.cat {
  background: #666;
  color: #fff;
  width: 34px; 
  height: 24px;
  background-image:url(../images/cat_sm.gif);
  background-repeat:no-repeat;
  background-position:center;     
}

#objectTarget div.bird {
  background: #666;
  color: #fff;
  width: 34px; 
  height: 24px;
  background-image:url(../images/bird_sm.gif);
  background-repeat:no-repeat;
  background-position:center;     
}

#objectTarget div.horse{
  background: #666;
  color: #fff;
  width: 34px; 
  height: 24px;
  background-image:url(../images/horse_sm.gif);
  background-repeat:no-repeat;
  background-position:center;     
}

#objectTarget div.cow {
  background: #666;
  color: #fff;
  width: 34px; 
  height: 24px;
  background-image:url(../images/cow_sm.gif);
  background-repeat:no-repeat;
  background-position:center;     
}
 
#objectTarget div.pig {
  background: #666;
  color: #fff;
  width: 34px; 
  height: 24px;
  background-image:url(../images/pig_sm.gif);
  background-repeat:no-repeat;
  background-position:center;     
}

#objectTarget div.goat {
  background: #666;
  color: #fff;
  width: 34px; 
  height: 24px;
  background-image:url(../images/goat_sm.gif);
  background-repeat:no-repeat;
  background-position:center;     
}

#objectTarget div.chicken{
  background: #666;
  color: #fff;
  width: 34px; 
  height: 24px;
  background-image:url(../images/chicken_sm.gif);
  background-repeat:no-repeat;
  background-position:center;     
}

#objectTarget div.duck {
  background: #666;
  color: #fff;
  width: 34px; 
  height: 24px;
  background-image:url(../images/duck_sm.gif);
  background-repeat:no-repeat;
  background-position:center;     
}

#objectTarget div.sheep {
  background: #666;
  color: #fff;
  width: 34px; 
  height: 24px;
  background-image:url(../images/sheep_sm.gif);
  background-repeat:no-repeat;
  background-position:center;     
}
 
#objectTarget 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);
}
 
