div.flash
{
	border: 1px solid #999;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	padding: 10px;
	margin-bottom: 20px;
	color: #393939;
	background-repeat: repeat-x;
	background-color: #FFF;
}

div.flash h1,
div.flash h2,
div.flash h3,
div.flash h4
{
	color: #333;
	font-style: normal;
}

div.flash table
{
	width: auto;
	margin: 0 auto;
}

div.flash table td
{
	padding: 0 5px;
	font-weight: bold;
}

div.flash table td.flash_icon
{
	vertical-align: top;
}

div.flash p.close_flash
{
	float: right;
}

/*
 * Flash types
 */

div.flash.info_flash 
{
	background-image: url('/images/flash_info.png');
	border-color: #d2e7f5;
}

div.flash.info_flash a { color: #0d5582 }

div.flash.error_flash 
{
	background-image: url('/images/flash_error.png');
	border-color: #f7b2a0;
}

div.flash.error_flash a { color: #a13b25 }

div.flash.confirm_flash 
{
	background-image: url('/images/flash_confirm.png');
	border-color: #d3edaa;
}

div.flash.confirm_flash a { color: #476e09 }

/*
 * Positioned flash
 */

div.flash.fixed
{
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	width: 942px; /* 924px - (this padding + this border) */
	position: fixed;
	top: 0;
	left: 50%;
	margin-left: -482px;
	z-index: 6;
}

