/* Nice div centering technique from: http://www.infinitywebdesign.com/research/cssverticalcentereddiv.htm */
#centered_content {
	position:absolute;
	top: 50%;
	left: 50%;
	width:280px;
	height:106px;
	margin-top: -53px; /*set to a negative number 1/2 of your height*/
	margin-left: -140px; /*set to a negative number 1/2 of your width*/
	padding: 10px;
	border: 1px solid gray;
}

.label {
	float: left;
	width: 7em;
}

.field {
	margin: 2px;
}

.error {
	color: red;
	font-size: 80%
}

.importbox {
	margin-left: 3ex;
	margin-bottom: 40px;
}

.importboxgray {
	margin-left: 3ex;
	margin-bottom: 40px;
	moz-opacity: .3;
	webkit-opacity: .3;
	opacity: .3;
	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
    filter: alpha(opacity=30);
}

