@charset "utf-8";

/* root element for scrollable */ 
div.scrollable {   
     
    /* required settings */ 
    position:relative; 
    overflow:hidden;     
 
    /* vertical scrollers have typically larger height than width*/      
   	width:638px;
	height:30px;
	margin-bottom:10px;
	border:0px solid #ddd; 
	background-color: red;
	color: #fff;
	top:0px; /* NEW */
	left:0px; /* NEW */
} 
 
/* root element for scrollable items */ 
div.scrollable div.items {     
    position:absolute; 
     
    /* this time we have very large space for height  */    
    height:20000em;
}




/* Scrollable breaking news update bar */

.WEATHER_ADVISORY		{ background-image: url("/global/images/news_updates/blue.png"); background-repeat: no-repeat;}
.UPDATE					{ background-image: url("/global/images/news_updates/red.png"); background-repeat: no-repeat;}
.BREAKING_NEWS			{ /*background-image: url("/global/images/news_updates/ylw.png"); background-repeat: no-repeat;*/}
.ELECTION_RESULTS		{ background-image: url("/global/images/news_updates/green.png"); background-repeat: no-repeat;}
.ROAD_CONDITIONS		{ background-image: url("/global/images/news_updates/orange.png"); background-repeat: no-repeat;}
.SCHOOL_CLOSINGS		{ background-image: url("/global/images/news_updates/purple.png"); background-repeat: no-repeat;}
.HEADLINE_NEWS			{ background-image: url("/global/images/news_updates/ORANGE.png"); background-repeat: no-repeat;}
.AIR_QUALITY_ADVISORY	{ background-image: url("/global/images/news_updates/ylw.png"); background-repeat: no-repeat;}
.NOTICE_TO_READERS		{ background-image: url("/global/images/news_updates/ylw.png"); background-repeat: no-repeat;}
.DO_NOT_MISS			{ background-image: url("/global/images/news_updates/green.png"); background-repeat: no-repeat;}
.PICK_OF_THE_WEEK		{ background-image: url("/global/images/news_updates/blue.png"); background-repeat: no-repeat;}



#breaking_story 	{ width:638px; height:30px; /*background-color: #000;*/ }
#descriptor			{ width:160px; padding-left: 30px; float:left;}
#descriptor	h2		{ color:white; font-weight: bold; font-size:.8em; padding-top:7px; text-transform: capitalize }
#title				{ width:440px;float:left; font-size:.8em; }
#title #headers a	{ color:#fff; text-decoration: none;  }
#title #headers a:visited { text-decoration: underline; color:#fff }
#headers			{ padding-bottom:2px; padding-top:7px  }

.WEATHER_ADVISORY #descriptor { font-size: .9em }
.AIR_QUALITY_ADVISORY #descriptor { font-size: .8em }
/* End Scrollable news update bars */
