@charset "utf-8";
/* CSS Document */
/*    * rss-box defines the bounding div for the entire display- use to define borders, fill, etc.
    * rss-title the title of the feed and link style if displayed. Use with variants of rss-title a:link, rss-title a:hover, etc for rollover styles
    * rss-items defines the unordered list <ul>...</ul> for the feed items- use to define the padding/margins for items.
    * rss-item display of each feed item description and title, <li>...</li> as well as the channel description, if displayed.
    * rss-item a: variant for the item title and link style
    * rss-date defines the display of item posting dates */



.rss-box {
	background-color: #FFF;
	width: 100%;
	margin: 0px;
	padding: 0px;
}

.rss-title, rss_title a {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight:bold;
	margin: 0px;
	padding: 0;
	color: #000;
}

.rss-item  {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #333;
	margin: 0px;
	padding: 0px;
}

.rss-item a:link, .rss-item a:visited, .rss-item a:active {
	text-decoration : none;
	color: #333;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	margin: 0px;
	padding: 0px;
	}

.rss-item a:hover {
	text-decoration : none;
	color: #00F;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	margin: 0px;
	padding: 0px;
	}
	
.rss-date {
	font-size: 10px;
	color: #F60;
	margin: 0px;
	padding: 0px;
	}
ul {
	margin: 0px;
	padding: 0px;
}
