@charset "utf-8";
/* Emergency Alert */

#emergency {
	position:fixed;
	top:0;
	left:0;
	height: 36px;
	width:100%;
	background-color:#a2441e;
	z-index: 4999; /* needs to be above everything except modal windows which are at the 5000 level */
}

.emergency_banner_above { /* this class is added only when an emergency banner is present */
	padding-top: 36px;
}

#emergency ul { list-style: none; padding-left: 0px; }

#emergency ul li {
	color:#ffffff;
	font-size:14px;
	padding: 10px 5px 5px 5px;
	margin:0;
	text-align:center;
	white-space: nowrap;
	width: 99%; /* to fix ellipsis being pushed directly up against the right hand side...NKS 12/06/11*/
	overflow: hidden;
	text-overflow: ellipsis;
 }

#emergency a, #emergency a:visited {color: #ffffff; text-decoration: underline;}
#emergency a:hover { #feebeb; text-decoration: underline;}
