/** -------------------------------------------------------
 * Overlay and Flash Notice Styles
 * --------------------------------------------------------
 */
	#FlashNotice{
		width: 500px;
		margin: 10px auto;
		border:1px solid #64A0DC;
		background: #D0E6FC;
		position:relative;
	}
	#FlashNotice #FlashNoticeHeader {
		position:relative;
		top:0;
		left:0;
		padding:5px;
		font-size:1.3em; 
		font-weight:bold;
		text-align:left; 
		color:#FFF; 
		background: url('bg_header.gif') bottom center repeat-x #115FA4;
	}
	#FlashNoticeHeader a.close { 
		width:15px;
		height:15px;
		position:absolute;
		top:5px;
		right:5px;
		cursor:pointer;
		background: url('icon_close.gif') bottom center no-repeat transparent;
	}
	#FlashNoticeHeader a.close:hover {
		background-position: top center;		
	}
	#FlashNoticeContent {
		background: url('bg_content.gif') bottom center repeat-x;
		padding:5px 20px;
	}
	#FlashNoticeContent div h6 {
		text-align:left; 
		font-size:1.2em; 
		font-weight:bold;
	}
	#FlashNoticeContent div ul {
		text-align:left; 
		margin-left:20px; 
	}
	#FlashNoticeContent div ul li { list-style:disc; }
	
	#FlashNoticeContent .info,
	#FlashNoticeContent .success,
	#FlashNoticeContent .warning,
	#FlashNoticeContent .error	{
		padding:5px;
		margin:10px auto;
		background:#FFFFFF bottom center repeat-x;
		border:1px solid;
		white-space:normal;
	}
	#FlashNoticeContent .info	{
		border-color:#33CCFF;
		background-image:url('bg_info.gif');
	}
	#FlashNoticeContent .info h6 {
		color:#33CCFF;
	}
	#FlashNoticeContent .success	{
		border-color: #00CC00;
		background-image:url('bg_success.gif');
	}
	#FlashNoticeContent .success h6 {
		color: #00CC00;
	}
	#FlashNoticeContent .warning	{
		border-color: #FF6600;
		background-image:url('bg_warning.gif');
	}
	#FlashNoticeContent .warning h6 {
		color: #FF6600;
	}
	#FlashNoticeContent .error	{
		border-color: #FF0000;
		background-image:url('bg_error.gif');
	}
	#FlashNoticeContent .error h6 {
		color: #FF0000;
	}
	#FlashNotice #FlashNoticeFooter {
		height:21px;
		position:relative;
		left:0;
		bottom:0;
	}
	#FlashNoticeFooter a.close {
		width:75px;
		height:21px;
		cursor:pointer;
		position:absolute;
		right:0;
		background: url('button_close.gif') bottom center no-repeat transparent;
	}
	#FlashNoticeFooter a.close:hover {
		background-position: top center;
	}

