/* shades up the page when the form is brought up */
.procedural_modal_form_shade {
	position: fixed;
	width: 100%;
	height: 100%;
	background-color: #000;
	opacity: 0.8;   
	z-index: 10000;
	visibility: visible;
	transition: visibility 0.2s, opacity 0.2s linear;
}

.procedural_modal_form_container {
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 10001;
	/*color: #fff;*/
	text-align: center;
	visibility: visible;
	transition: visibility 0.2s, opacity 0.2s linear;
}

.procedural_modal_form_container .form_div .container {
	padding: 16px;
}
.procedural_modal_form_container .form_div .title_container {
	font-size: 1em;
	text-align: center;
	padding-top: 10px;
	padding-bottom: 10px;
	border-bottom: 1px solid #f1f1f1;

	
}

.procedural_modal_form_container .form_div .status {
	text-align: center;
	color: #ff0000;
}