/* Drag and Drop **************************************
	Author: Matt Hobbs
******************************************************/

/* Page Reset ****************************************/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-weight: inherit;
	font-style: inherit;
	font-size: 100.01%;
	font-family: inherit;
	vertical-align: baseline;
	}
body {
	line-height: 1;
	color: #000;
	background: #eee;
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	}
ol, ul {list-style: none;}
table {
	border-collapse: separate;
	border-spacing: 0;
	}
caption, th, td {
	text-align: left;
	font-weight: 400;
	}
blockquote:before, blockquote:after,
q:before, q:after {content: "";}
blockquote, q {quotes: "" "";}
/* Basic Page Styling ********************************/
#wrapper {
	width: 632px;
	margin: 0 auto;
	padding: 20px;
	background: #fff;
	}
#wrapper p {
	font-size: 0.75em;
	margin: 0 0 12px;
	line-height: 1.3;
	}
#wrapper p strong {font-weight: 700;}
#drop {
	border: 1px dotted #333;
	background: #eee url(../images/drops.gif) no-repeat 0 0;
	width: 130px;
	height: 80px;
	margin: 12px auto 0;
	padding: 10px;
	}
#wrapper .correct {background: url(../images/drops.gif) no-repeat 0 -150px;}
#wrapper .incorrect {background: url(../images/drops.gif) no-repeat 0 -300px;}
#images {overflow: hidden;}
#images li {
	font-size: 0.75em;
	line-height: 1.3;
	float: left;
	display: inline;
	margin: 0 8px 0 0;
	cursor: pointer;
	}
#images li strong {font-weight: 700;}
#images li img {
	width: 150px;
	display: block;
	border: 1px solid #333;
	}
#images .last {margin: 0;}
/* Canvas */
#dragDrop {
	width: 600px;
	height: 400px;
	margin: 20px auto 12px;
	border: 1px solid #ddd;
	display: block;
	}
#dataSent {
	width: 580px;
	height: 40px;
	border: 1px dotted #ddd;
	margin: 0 auto;
	font-size: 0.75em;
	line-height: 1.3;
	padding: 10px;
	}
