﻿div.alertbox
{
	width: 500px;
	border: 6px solid #FF6600;
	/*background: #FFCC99 url(/Nabytek/exclamationmark.gif) 8px 26px no-repeat;*/ /* for IE */
	background-color: #fff; /* for IE */
	filter: alpha(opacity=90); /* CSS3 standard */
	opacity: 0.90;
	color: #222222;
	padding: 20px;
	text-align: left;
	position: absolute;
	top: 120px;
	left: 50%;
	margin-left: -270px;
	display: block;
	border-radius: 8px;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	-webkit-box-shadow: 5px 5px 8px 0px rgba(153,153,153,1);
	-moz-box-shadow: 5px 5px 8px 0px rgba(153,153,153,1);
	box-shadow: 5px 5px 8px 0px rgba(153,153,153,1);
	z-index: 1000;
	cursor: pointer;
}

div.alertbox.infobox
{
	border: 8px solid #9BAFDE;
	background-image: none;
	background-color: #E2E8F5;
}

.alertbox_header 
{
    font-weight: bold;
    padding: 10px 0px;
    font-size: 140%;	
    color: #FF6600;
}

.alertbox_close 
{
	margin-top: 20px;
	float: right; display: block; font-weight: bold;
	color: #666666;
	cursor: pointer;
}

.alertbox_close:hover {color: #000000;}

.alertbox_close IMG 
{
	border: none;
}

