/*css
//==>>>==>>>==>>>==>>>==>>>==>>>==>>>==>>>==>>>==>>>==>>>==>>>==>>>
//
// Pick-A-Box Contest
//
//==<<<==<<<==<<<==<<<==<<<==<<<==<<<==<<<==<<<==<<<==<<<==<<<==<<<
*/

/* fileup */
.fileup {
	position:relative;
}
/* blinker */
.fileup .blinker {
	position:absolute;
	width:340px;
	height:50px;
	line-height:50px;
	text-align:center;
	background-color:#bbf;
	border: 1px solid #aaf;
	border-radius:3px;
	box-shadow:0 0 30px 0 #88f;
}
.fileup .blinker .msg {
	color:yellow;
	font-size:16px;
	font-weight:bold;
}
/* progressbar */
.fileup .progressbar {
	position:absolute;
	width:340px;
	overflow:hidden;
	background-color:#bbf;
	border:1px solid #aaf;
	border-radius:3px;
	box-shadow:0 0 30px 0 #88f;
}
.fileup .progressbar .meter {
	position:absolute;
	top:0;
	left:0;
	width:0;
	border-radius:3px;
	background-color:#88f;
}
.fileup .progressbar .indicator {
	width:100%;
	display:table;
	position:absolute;
	top:0;
	left:0;
	z-index:2;
}
.fileup .progressbar .indicator-inner {
	display: table-cell;
	vertical-align: middle;
	color:#fff;
	text-align:center;
	font-size:16px;
}
.fileup .progressbar .status {
	color:yellow;
}
.fileup .progressbar .percentage {
}
.fileup .progressbar,
.fileup .progressbar .indicator,
.fileup .progressbar .meter {
	height: 50px;
}
/* fileup classic */
.fileup .fuclassic {
	display:none;
	margin:0;
	padding:20px;
	text-align: center;
	font-size:20px;
	color:#666;
	border:0px solid #ccc;
}
.fileup .fuclassic .workarea {
	display:inline-block;
	*zoom:1;
	*display:inline;
	width:200px;
	text-align: center;
}
.fileup .fuclassic .filebtn {
	display:none;
}
/* fileup html5 */
.fileup .dropzone {
	position:relative;
	display:none;
	margin:0;
	padding:0;
	text-align:center;
	font-size:20px;
	color:#666;
	border:4px dashed #666;
}
.fileup .dropzone-inner1 {
	display:table-cell;
	vertical-align: middle;
	text-align: center;
	width:100%;
}
.fileup .dropzone-inner2 {
	display:inline-block;
	text-align: center;
}
.fileup .dropzone-dragover {
	color:#00c;
	border-color:#00c;
	background-color:#eef;
}
.fileup .dropzone .fileselect {
	display:table;
	margin:0 auto;
	height: 28px;
	width: 120px;
	overflow: hidden;
	position: relative;
	background-color: #eee;
	border:1px solid #888;
	border-radius:3px;
}
.fileup .dropzone .fileselect .fileselect-label {
	display: table-cell;
	vertical-align: middle;
	text-align:center;
	font-size: 14px;
}
.fileup .dropzone .fileselect .fileselect-button {
	cursor: pointer;
	height: 100%;
	position:absolute;
	top: 0;
	right: 0;
	z-index: 99;
	/* a super big button */
	font-size:100px;
	/* Opacity settings for all browsers */
	opacity: 0;
	-moz-opacity: 0;
	filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0);
}

