/* 
    Document   : flash_message
    Created on : Jul 28, 2009, 9:43:03 PM
    Description: Styling for flash messages
        
*/

#alert
{
	overflow: hidden;
	z-index: 999;
	width: 100%;
	text-align: center;
	position: absolute;
	top: 0;
	left: 0;
	background-color: #fff;
	height: 0;
	color: #000;
	font: 20px/40px arial, sans-serif;
	opacity: .9;
        border-bottom: 1px solid #000;
}

#alert.success {
    	background-color: #ffd72d;
}

#alert.error {
    	background-color: #FF0000;
        background-image: none;
}
