@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;
	border: 1px none #333;
	margin-top: 1px;
	margin-right: 4px;
	margin-bottom: 4px;
	margin-left: 4px;
	padding-top: 2px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
	width: 98%;
}

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

.rss-item  {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-weight : normal;
	margin: 8px 0;
	color: #333;
}

.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;
	}

.rss-item a:hover {
	text-decoration : none;
	color: #00F;
	}
	
.rss-date {
	font-size: 11px;
	font-weight : normal;
	color: #F60;
	}

