/*defines the bounding div for the entire display- use to define borders, fill, etc. 
.rss-box
/* 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-title a:link, rss-title a:visited
/*defines the unordered list <ul>...</ul> for the feed items- use to define the padding/margins for items.
.rss-items 
/*.rss-item display of each feed item description and title, <li>...</li> as well as the channel description, if displayed.
.rss-item #7C7C7C
/*variant for the item title and link style 
.rss-item a: variant for the item title and link style 
/*defines the display of item posting dates
.rss-date */

/* begin styles for RSS Feed */
.rss-box {
	 margin: 0em;
	 width: 100%;
	 background-color: #ffffff;
	 border: 0px solid #a9955c;
}
.rss-items {
	margin-top:1px;
	padding:0.5em; 0.5em;
	margin-left:1px;
	color:#4E4E4E;
}
p.rss-title {padding:0.5em;}
.rss-title {
	text-decoration: none;
	font-family: verdana;
	font-size: 11px;
	background-color:#006699;
	color:#4E4E4E;
	font-weight:bold;
	margin: 0px;
	padding:0em;
	text-align: left;
}

.rss-item  {
  font-family: verdana;
  font-size: 11px;
  font-weight : normal;
  list-style:none;
  padding-bottom:1em;
}

.rss-item a {
	text-decoration: underline;
	color: #4c5157;
	font-size: 12px;
	font-weight: bold;
	font-family: verdana;
	}
	
.rss-item a:visited {
	color: #7c7c7c;
}
.rss-item a:hover {
	color: #CC0000;
}
.rss-date {
	font-size: 9px;
	font-weight: normal;
	color: #999999;
	} 
/* buttons modeled from http://www.wellstyled.com/css-inline-buttons.html */

.pod-play {
   _width:12em;
   margin: 0 0.2em; padding: 0.1em 0; _padding:0;
   
   white-space:nowrap;
   text-decoration: none;
   vertical-align:middle;
   background: #fb6;
   color: black;
   }
.pod-play em {
   _width:1em; _cursor:hand;
   font-style: normal;
   margin:0; padding: 0.1em 0.5em;
   background: white;
   color: #222;
   }
.pod-play span {
   _width:1em; _cursor:hand;
   margin:0; padding: 0.1em 0.5em 0.1em 0.3em;
   }
.pod-play:hover {
   background: #666;
   color: white;
   }
.pod-play:hover em {
   background: black;
   color: white
   }


