div.modal{
	position: fixed;
	width: 500px;
	z-index: 9999;
	background-color: #fff;
	border: 2px solid #aaa;
	font-size: 12px;
}
.modal h1{
	font-family: "Georgia";
	padding: 10px;
	text-align: center;
	font-size: 28px;
	font-weight: 100;
	color: #000;
}
.modal p
{
	line-height: 1.5em;
	padding: 10px;
	margin-top: 5px;
	color: #7d7d7d;
	font-size: 12px;
}
.overlay{
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 9998;
	top: 0px;
	left: 0px;
}
div.modal_controls button{
	padding: 5px;
	margin: 5px;
	height: 30px;
	display: block;
}
.modal img.modalNotificationIcon
{
	display: block;
	margin: 20px auto;
}
#modalNotification{
	font-size: 12px;
}
div.modal_controls{
	background: -webkit-gradient(linear, left top, left bottom, from(#3fd3ff), to(#00ade0));
	height: 40px;
	width: 100%;
}
.modal input{
	border: 1px solid #aaa;
	width: 97%;
	display: block;
}
.modal label{ display: block;}
.modal textarea{
	border: 1px solid #aaa;
	width: 97%;
	min-height: 300px;
}
.modal button:first-child{
	float: left;
	margin-left: 10px;
}
.modal button:last-child{
	float: right;
	margin-right: 10px;
}
