#comp-background
{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9998;
	background-color: black;
	filter: alpha(opacity=50);
	opacity: 0.5;
}

* html #comp-background
{
	position: absolute;
}

#comp-table
{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	filter: alpha(opacity=100);
	opacity: 1.0;
}

* html #comp-table
{
	position: absolute;
}

#comp-dialog
{
	font-family: "Lucida Grande", Verdana, Geneva, sans-serif;
	font-size: 14px;
	color: black;
	font-weight: normal;
	width: 440px;
	margin: 0 auto;
	padding: 24px;
	border: solid 8px #444;
	background-color: white;
}

#comp-dialog #comp-close
{
    float: right;
}

#comp-dialog h1
{
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 26px;
	color: #002e4f;
	font-weight: normal;
	padding: 0 0 10px 0;
	margin: 0 0 20px 0;
	border-bottom: solid 1px #ddd;
}

#comp-dialog ul
{
	list-style-type: none;
	list-style-position: outside;
	margin: 0;
	padding: 0 0 0 8px;
}

#comp-dialog li
{
	line-height:20px;
	margin-top: 6px;
	margin-bottom: 6px;
	padding: 0 0 0 24px;
	background-repeat: no-repeat;
	background-position: left center;
}

#comp-dialog li.comp-pass
{
	background-image: url(../img/pass.png);
	color: #060;
}
	
#comp-dialog li.comp-fail
{
	background-image: url(../img/fail.png);
	color: #c00;
}
	
#comp-dialog #comp-failed
{
	background-color: #ffffa9;
	margin: 16px 0 0 0;
	border: 1px solid #bfbf7b;
	padding: 6px 12px 6px 52px;
	font-size: 12px;
	line-height: 16px;
	color: #444;
	background-image: url(../img/summary-fail.png);
	background-repeat: no-repeat;
	background-position: 8px center;
	min-height: 32px;
}

#comp-dialog #comp-anyway
{
	text-align: center;
	margin: 0;
	padding: 16px 0 0 0;
    font-weight: bold;
}

#comp-dialog a
{
	color: #0060A6;
	text-decoration: none;
}

#comp-dialog a:hover
{
	text-decoration: underline;
}


