.rss_box /*defines the bounding div for the entire display- use to define borders, fill, etc.*/
	{width: 500px;	 
	margin-top: 45px;
	background-color: #ffffff;
}

a.rss_title {
	color: #000000;
	padding-bottom: 15px;
	font-size: 2.025em;
	font-weight: bold;
} /*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*/
	
/*a.rss_title
	{font-family: arial;
	color: #0033FF;	
	}*/

.rss_items /*defines the unordered list <ul>...</ul> for the feed items- use to define the padding/margins for items.*/
	{border-top-width: 5px;
	border-top-style: solid;
	border-top-color: #000000;
}

.rss_item  /*display of each feed item description and title, <li>...</li> as well as the channel description, if displayed.*/
	{
	font-family: arial;
	font-size: 1.025em;
	font-weight : normal;
	padding-top: 10px;
	padding-bottom: 10px;
	list-style-image: url(../assets/img/icon-bullet.gif);
	}

/*variant for the item title and link style*/
.rss_item a {color: #0033FF;
	}

.rss_item a:visited 
	{color: #0033FF;
}

.rss_item a:active 
	{color: #0033FF;}

.rss_item a:link {color: #0033FF;}
	
.rss_item a:hover{
	color: #0033FF;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}


.rss_date /*defines the display of item posting dates*/
	{font-size: 11px;	
	font-weight : normal;	
	color: #336699;	}
	
