@charset "utf-8";

#formPopup
{
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url("background_black.png");
	z-index: 99999;
}
#formPopup.formPopup-active
{
	display: block;
}
#formPopup .formPopup-window
{
	overflow: hidden;
	position: absolute;
	width: 480px;
	max-width: 90%;
	border: solid 1px #666;
	border-radius: 5px;
	box-shadow: 0 0 0 4px rgba(0,0,0,0.2);
	background: #fff;
	color: #333;
}
#formPopup.formPopup-active .formPopup-window
{
	opacity: 1;
}
#formPopup .formPopup-title
{
	padding: 10px;
	border-bottom: solid 1px #666;
	background: #eee;
	background: linear-gradient(#fff, #eee);
	line-height: 20px;
	font-size: 16px;
}
#formPopup .formPopup-body
{
	overflow: auto;
	padding: 10px;
	line-height: 24px;
	font-size: 14px;
}
#formPopup .formPopup-actions
{
	padding: 5px 10px;
	border-top: solid 1px #666;
	background: #eee;
	text-align: right;
}
#formPopup .formPopup-actions .formPopup-action
{
	display: inline-block;
	*display: inline;
	*zoom: 1;
	padding: 4px 9px;
	border: solid 1px #666;
	border-radius: 5px;
	background: #fff;
	background: linear-gradient(#fff, #eee);
	color: #333;
	font-size: 14px;
	font-weight: normal;
	text-decoration: none;
}