
body {
	background: #323232;
	color:white;
	text-align:center
}

#central {
	margin_auto;
	text-align:center;
}

.top {
	position:fixed;
	top: 0px;
}

.bottom {
	position:fixed;
	bottom: 0px;
}

.top img, .bottom img {
	width:128px;
}

#target {
	width:60%;
	margin:auto;
}
#target img{
	width:100%;
	cursor: move;
}

.left {
	float:left;
}

.right {
	position:fixed;
	right:0px;
}

.myButton {
	padding:10px;
}

.listNameToShow {
	display:none;
}
#listCurrent {
	display:block;
}
.listStarred:before {
    content: url('../images/starred.png');
}
.listCurrent:before {
    content: url('../images/newed.png');
}
.listFinished:before {
    content: url('../images/doned.png');
}
.listDeleted:before {
    content: url('../images/binned.png');
}

/* DnD */
#target.over {
	/* Theoretically for IE 8 & 9 (more valid) */	
	/* ...but not required as filter works too */
	/* should come BEFORE filter */
	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
	/* This works in IE 8 & 9 too */
	/* ... but also 5, 6, 7 */
	filter: alpha(opacity=50);
	/* Older than Firefox 0.9 */
	-moz-opacity:0.5;
	/* Safari 1.x (pre WebKit!) */
	-khtml-opacity: 0.5;
	/* Modern!
	/* Firefox 0.9+, Safari 2?, Chrome any?
	/* Opera 9+, IE 9+ */
	opacity: 0.5;
	
	-webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -kthtml-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.myButton {
  float: left;
  border: 2px solid #666666;
  background-color: #ccc;
  margin-right: 5px;
  -webkit-border-radius: 10px;
  -ms-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 3px #000;
  -ms-box-shadow: inset 0 0 3px #000;
  box-shadow: inset 0 0 3px #000;
  text-align: center;
  cursor: move;
}

 article {
	display: inline-block;
	margin: 20px;
}

/**
 * List used for the tasks
 */

ul {
	position: relative;
	width: 230px;
	height: 480px;
	margin: 0;
	padding: 0;
	list-style: none;

	-webkit-perspective: 400px;
	   -moz-perspective: 400px;
	    -ms-perspective: 400px;
	     -o-perspective: 400px;
	        perspective: 400px;
}
	ul li {
		position: relative;
		padding: 16px;
		background: #eee;
		color: #252525;
		font-size: 18px;
		z-index: 2;

		-webkit-transform: translateZ(0px);
		   -moz-transform: translateZ(0px);
		    -ms-transform: translateZ(0px);
		     -o-transform: translateZ(0px);
		        transform: translateZ(0px);
	}
	ul li:nth-child(odd) {
		background: #fff;
	}

.ui-state-hover {
	background-color: #888;
}