@charset "utf-8";
#blanket {
	z-index: 998;
	background-color: #000;
	position: absolute;
	left: 0px;
	top: 0px;
	right: 0px;
	bottom: 0px;
	width: 100%;
}
.popupContainer {
	padding: 5px;
	background-repeat: repeat-x;
	border-width: 4px;
	border-style: solid;
	position: absolute;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	-moz-border-radius: 15px;
	-webkit-border-radius: 15px;
	border-radius: 15px;
	display: inline-block;
	z-index: 999;
	background-color: #FFF;
}
.popupContainer.infoType {
	border-color: #00F;
}
.popupContainer.alertType {
	border-top-color: #C90;
	border-right-color: #C90;
	border-bottom-color: #C90;
	border-left-color: #C90;
}
.popupContainer.criticalType {
	border-top-color: #F00;
	border-right-color: #F00;
	border-bottom-color: #F00;
	border-left-color: #F00;
}
.popupContainer.successType {
	border-top-color: #0C0;
	border-right-color: #0C0;
	border-bottom-color: #0C0;
	border-left-color: #0C0;
}
.popupContainer.failureType {
	border-top-color: #F00;
	border-right-color: #F00;
	border-bottom-color: #F00;
	border-left-color: #F00;
}
.popupContainer.confirmType {
	border-top-color: #999;
	border-right-color: #999;
	border-bottom-color: #999;
	border-left-color: #999;
}
.popupContainer.waitType {
	border-top-color: #CCC;
	border-right-color: #CCC;
	border-bottom-color: #CCC;
	border-left-color: #CCC;
}
.popupContainer .closeButton {
	position: absolute;
	top: -16px;
	right: -16px;
	border-style: none;
}
.popupHeader {
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #333;
	padding-bottom: 2px;
}
.popupHeader span {
	font-size: 1.4em;
	font-weight: bold;
	padding-left: 6px;
	color: #333;
	white-space: nowrap;
	display: inline-block;
}
.popupContainer .popupContent {
	color: #666;
	line-height: 1.3em;
	padding-right: 10px;
	padding-left: 10px;
	padding-bottom: 35px;
}
.popupContainer .popupFooter {
	text-align: right;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #333;
	padding-top: 5px;
	position: absolute;
	bottom: 10px;
	left: 5px;
	right: 5px;
}
.popupFooter a {
	text-decoration: none;
	color: #00F;
	margin-right: 5px;
}
.popupFooter a:hover {
	text-decoration: underline;
}
