/* 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 rollowver 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 {
	padding: 0;
	font-family: Arial, Helvetica, sans-serif;
	color: #CCCCCC;
	font-size: 12px;
	font-style: normal;
	font-weight: bold;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}

.rss_title{
	color: #000000;
	background color: #000000;
}

.rss_items{
	margin: 0px;
	list-style-type: square;
	padding-top: 5px;
	padding-right: 0px;
	padding-bottom: 10px;
	padding-left: 10px;
}
