﻿ 
/* 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:#C30;
}
 
/* The initial array of unsorted objects */
 
#objectTarget {
  margin: 0 auto;
  background: #ffd;
}
 
#objectDest {
  float:right;	
  width: 350px;
  height: 675px;
  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: 90px;
  height: 720px;
  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: 310px;
  height: 50px;
  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: 4px 13px 4px 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.car {
  background: #666;
  color: #fff;
  width: 65px; 
  height: 50px;
  background-image:url(../images/auto_sm.gif);
  background-repeat:no-repeat;
  background-position:center;     
}

#objectTarget div.train {
  background: #666;
  color: #fff;
  width: 65px; 
  height: 50px;
  background-image:url(../images/train_sm.gif);
  background-repeat:no-repeat;
  background-position:center;     
}

#objectTarget div.airplane {
  background: #666;
  color: #fff;
  width: 65px; 
  height: 50px;
  background-image:url(../images/plane_sm.gif);
  background-repeat:no-repeat;
  background-position:center;     
}

#objectTarget div.boat{
  background: #666;
  color: #fff;
  width: 65px; 
  height: 50px;
  background-image:url(../images/boat_sm.gif);
  background-repeat:no-repeat;
  background-position:center;     
}

#objectTarget div.bicycle {
  background: #666;
  color: #fff;
  width: 65px; 
  height: 50px;
  background-image:url(../images/bicycle_sm.gif);
  background-repeat:no-repeat;
  background-position:center;     
}
 
#objectTarget div.bus {
  background: #666;
  color: #fff;
  width: 65px; 
  height: 50px;
  background-image:url(../images/bus_sm.gif);
  background-repeat:no-repeat;
  background-position:center;     
}

#objectTarget div.taxi {
  background: #666;
  color: #fff;
  width: 65px; 
  height: 50px;
  background-image:url(../images/taxi_sm.gif);
  background-repeat:no-repeat;
  background-position:center;     
}

#objectTarget div.motorcycle{
  background: #666;
  color: #fff;
  width: 65px; 
  height: 50px;
  background-image:url(../images/motorcycle_sm.gif);
  background-repeat:no-repeat;
  background-position:center;     
}

#objectTarget div.tram {
  background: #666;
  color: #fff;
  width: 65px; 
  height: 50px;
  background-image:url(../images/tram_sm.gif);
  background-repeat:no-repeat;
  background-position:center;     
}

#objectTarget div.subway {
  background: #666;
  color: #fff;
  width: 65px; 
  height: 50px;
  background-image:url(../images/subway_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);
}
 
