.alert-dummy {
	position: absolute;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.1);
}

.alert-box {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 9999;
	background: #fff;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	border: 1px solid #AAA;
	color: #222;
	font-size: 1.1em;
	font-family: Verdana,Arial,sans-serif;
	padding: 0.2em;
	outline: 0px none;
	overflow: hidden;
	display: block;
	webkit-box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.2);
	-moz-box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.2);
	box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.2);
}
.alert-box .alert-title {
	padding: 0.4em 1em;
	position: relative;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	border: 1px solid #AAA;
	font-weight: bold;
	font-size: inherit;
	font-family: inherit;
	background: #e2e2e2;
	background: -moz-linear-gradient(top,  #e2e2e2 0%, #cdcdcd 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#e2e2e2), color-stop(100%,#cdcdcd));
	background: -webkit-linear-gradient(top,  #e2e2e2 0%,#cdcdcd 100%);
	background: -o-linear-gradient(top,  #e2e2e2 0%,#cdcdcd 100%);
	background: -ms-linear-gradient(top,  #e2e2e2 0%,#cdcdcd 100%);
	background: linear-gradient(to bottom,  #e2e2e2 0%,#cdcdcd 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e2e2e2', endColorstr='#cdcdcd',GradientType=0 );

}
.alert-box .alert-content {
	width: auto;
	min-height: 50px;
	max-height: none;
	height: auto;
	position: relative;
	border: 0px none;
	padding: 0.5em 1em;
	background: none repeat scroll 0% 0% transparent;
	overflow: auto;
	font-size: inherit;
	font-family: inherit;
}
.alert-box .alert-buttonpane {
	text-align: left;
	border-top: 1px solid #AAA;
	background-image: none;
	margin-top: 0.5em;
	padding: 0.3em 1em 0.5em 0.4em;
}
.alert-box .alert-buttonpane button {
	margin: 0.5em 0 0.5em 0.5em;
	float: right;
}
.alert-box button {
    cursor: pointer;
	border: 1px solid #D3D3D3;
	background: #efefef;
	background: -moz-linear-gradient(top,  #efefef 0%, #efefef 50%, #E7E7E7 51%, #E7E7E7 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#efefef), color-stop(50%,#efefef), color-stop(51%,#E7E7E7), color-stop(100%,#E7E7E7));
	background: -webkit-linear-gradient(top,  #efefef 0%,#efefef 50%,#E7E7E7 51%,#E7E7E7 100%);
	background: -o-linear-gradient(top,  #efefef 0%,#efefef 50%,#E7E7E7 51%,#E7E7E7 100%);
	background: -ms-linear-gradient(top,  #efefef 0%,#efefef 50%,#E7E7E7 51%,#E7E7E7 100%);
	background: linear-gradient(to bottom,  #efefef 0%,#efefef 50%,#E7E7E7 51%,#E7E7E7 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#efefef', endColorstr='#E7E7E7',GradientType=0 );
	font-weight: normal;
	color: #555;
	font-size: 1em;
	font-family: Verdana,Arial,sans-serif;
	padding: 0.4em 1em;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	display: inline-block;
	vertical-align: middle;
	height: auto;
	line-height: 1;
}

.alert-box button:hover,
.alert-box button:active,
.alert-box button:focus {
	outline: none;
	border-color: #AAA;
	background: #e6e6e6;
	background: -moz-linear-gradient(top,  #e6e6e6 0%, #e6e6e6 50%, #DBDBDB 51%, #DBDBDB 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#e6e6e6), color-stop(50%,#e6e6e6), color-stop(51%,#DBDBDB), color-stop(100%,#DBDBDB));
	background: -webkit-linear-gradient(top,  #e6e6e6 0%,#e6e6e6 50%,#DBDBDB 51%,#DBDBDB 100%);
	background: -o-linear-gradient(top,  #e6e6e6 0%,#e6e6e6 50%,#DBDBDB 51%,#DBDBDB 100%);
	background: -ms-linear-gradient(top,  #e6e6e6 0%,#e6e6e6 50%,#DBDBDB 51%,#DBDBDB 100%);
	background: linear-gradient(to bottom,  #e6e6e6 0%,#e6e6e6 50%,#DBDBDB 51%,#DBDBDB 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e6e6e6', endColorstr='#DBDBDB',GradientType=0 );
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}