/* weather warnings */

#warningsBannerWidget {
	margin-top: 15px;
}

#weatherwarnings ul {
	float: right;
	list-style: none;
	margin: 0;
	padding: 0;
}

#weatherwarnings li {
	float: left;
	margin-left: 4px;
}

#weatherwarnings p {
	display: none;
}

#weatherwarnings li a {
	width: 36px;
	height: 36px;
	display: inline-block;
	background: url(../images/icons/warning.svg) no-repeat;
	text-indent: -999em;
	letter-spacing: -999em;
	overflow: hidden;
}

/* warning types */
#weatherwarnings .rain {
	background-position: 3px 2px;
	background-size: 10em;
}

#weatherwarnings .wind {
	background-position: -30px 3px;
	background-size: 10em;
}

#weatherwarnings .snow {
	background-position: -68px 1px;
	background-size: 10.8em;
}

#weatherwarnings .ice {
	background-position: -99px 2px;
	background-size: 10.5em;
}

#weatherwarnings .fog {
	background-position: -126px 2px;
	background-size: 10em;
}

/* warning levels */

#weatherwarnings .green {
	background-color: #0F3;
}

#weatherwarnings .yellow {
	background-color: #FF6;
}

#weatherwarnings .amber {
	background-color: #F93;
}

#weatherwarnings .red {
	background-color: #C03;
}

.warningBar {
	background-color: #2a2a2a;
	color:#fff;
	font-size: 85.7%;
	font-weight:normal;
	margin-bottom: 15px;
	position: relative;
	padding:0 0 5px 0;
}
.warningBar .h2,
.warningBar h2 {color:#fff; font-size:1.27em; font-weight:bold; margin: 0; padding:14px 0 14px 10px; }
.warningBar p {margin:0 0 .5em 0;}
.warningBar strong {font-weight:bold;}
.warningBar a {color:#fff; text-decoration:none;}
.warningBar a:hover {background:none; text-decoration:underline;}
.warningBar .warnBox {border:1px solid #545454; margin:0 10px 5px 10px; min-height:32px; padding:5px;}
.warningBar h3 {font-size:1em; font-weight:bold; margin:0 0 2px 0;}
.warningBar span {font-size:1em; line-height:1.3; margin:0;}
.warningBar .svg,
.warningBar .svgAlt {float:left; margin:0 5px 0 0;}

.warningBar .warnMainIcon { float: left; width: 40px; margin-right: 5px; }
.warningBar .warnRegions { margin-left: 45px; }

.warningBar .warnMainIcon a {
	width: 40px;
	height: 40px;
	display: inline-block;
	text-indent: -999em;
	letter-spacing: -999em;
	overflow: hidden;
}

.warningBar .iconRed, .warningBar .iconRed:visited, .warningBar .iconRed:hover { background: url('../images/icons/warning-sign-red.svg') no-repeat; }
.warningBar .iconAmber, .warningBar .iconAmber:visited, .warningBar .iconAmber:hover { background: url('../images/icons/warning-sign-amber.svg') no-repeat; }
.warningBar .iconYellow, .warningBar .iconYellow:visited, .warningBar .iconYellow:hover { background: url('../images/icons/warning-sign-yellow.svg') no-repeat; }
