
/*  News Articles */

/**************************************************************************************
/* update the following classes to change the appearance of the  News Articles drop-in 
/* application and page
/*************************************************************************************/

/* this is the class used on the outside container element for the  News Articles */
/* html example: <div class="NewsArticles_Wrapper"> */
/* this element is used to avoid the broken box model object in ie6 */
.NewsArticles_Wrapper {
	width: 100%;
	margin: 0;
	padding: 0;
}

/* this is the class used on the inside container element for the  News Articles sitecm page content */
/* html example: <div class="NewsArticles_Wrapper"><div class="NewsArticles"> */
.NewsArticles {
	width: 100%;
	margin: 0;
	padding: 0;
}

/* this is the class used on the inside container element for the  News Articles image */
/* html example: <div class="Thumbnail"><img src=".... */
.NewsArticles .ThumbNail {}

/* this is the class used on the inside container element for the  News Articles link text */
/* html example: <div class="Headline"> */
.NewsArticles .Headline {}

/* these are the classes used on the link elements for the News Articles link text */
/* html example: <div class="Headline"> <a title="..." href="...">...</a></div>*/
.NewsArticles .Headline a:link,
.NewsArticles .Headline a:visited{}
.NewsArticles .Headline a:hover{}
.NewsArticles .Headline a:active{}

/* this is the class used on the inside container element for the News Articles Date */
/* html example: <div class="Date"> */
.NewsArticles .Date {
	border-top: solid 1px #999;
	text-align: right;
	font-size: 10px;
}

/* this is the class used on the inside container element for the short description of the News Article */
/* html example: <div class="ShortDescription"> */
.NewsArticles .ShortDescription{
}

/* this is the class used on the container element for each row (and alternaterow) */
/* html example: <div class="Row"> */
/* each row contains .RequiredStar, .Label, .Value and .Spacer */
.NewsArticles .Row {
	display: block;
	width: 100%;
	margin: 0;
	padding: 0;
	padding-bottom: 10px;
}

/* this is the class used for changing the formatting of .Row for each alternating row */
/* html example: <div class="Row AlternateRow"> */
/* overrides .Row */
.NewsArticles .AlternateRow {}

/* these classes are used for customizing individuals  News Articles dates */
/* html example: <div class="Row Row1"> */
/* row number starts at 1  */
.NewsArticles .Row1 {}

/* this is the class used on the container element for the rss link information */
/* html example: <div class="RSSLink">...</div> */
.NewsArticles .RSSLink {

}

/* this is the class used on the container element for the rss icon */
/* html example: <span class="RSSIcon"><img border="0" alt="Subscribe to this feed" src="/sitecm3/i/icons/rss_15x15.gif"/></span> */
.NewsArticles .RSSIcon{
}

/* this is the class used on the container element for the event dates RSSText */
/* html example: <span class="RSSText">...</span> */
.NewsArticles .RSSText {}


/* this is the class used on the spacer element that exists after each answer */
/* html example: <div class="Spacer"><img src="/images/shim.gif" width="1" height="1" border="0" alt="" /></div> */
.NewsArticles .Spacer {
	float: none;
	clear: both;
}





