/*
Styles for HTML5 File Drag & Drop demonstration
Featured on SitePoint.com
Developed by Craig Buckler (@craigbuckler) of OptimalWorks.net
*/

legend.dragndrop
{
	font-weight: bold;
	color: #333333;
}

#filedrag
{
	display: none;
	font-weight: bold;
	text-align: center;
	padding: 3em 0;
	margin: 1em 0;
	color: #555555;
	border: 1px dashed #AAAAAA;
	border-radius: 5px;
	cursor: default;
	background: #EEEEEE url("images/schrafur-hell.png");
}

#filedrag.hover
{
	color: #FFAA00;
	border-color: #FFAA00;
	border-style: solid;
	box-shadow: inset 0 3px 4px #888888;
}

img.dragndrop
{
	width: 400px;
}

pre.dragndrop
{
	width: 95%;
	height: 8em;
	font-family: monospace;
	font-size: 0.9em;
	padding: 1px 2px;
	margin: 0 0 1em auto;
	border: 1px inset #666666;
	background-color: #EEEEEE;
	overflow: auto;
}

#messages
{
	padding: 0 10px;
	margin: 1em 0;
	border: 1px solid #999999;
}

#progress p
{
	display: block;
	width: 400px;
	padding: 2px 5px;
	margin: 2px 0;
	border: 1px inset #888888;
	border-radius: 3px;
	background: #EEEEEE url("images/progress.png") 100% 0 repeat-y;
}

#progress p.success
{
	background: #00CC00 none 0 0 no-repeat;
}

#progress p.failed
{
	background: #CC0000 none 0 0 no-repeat;
}