/* A class to make an RSS logo box.  jlc, 2005.07.03 */

/* This creates the familiar orange logo for RSS, with artificial
   highlighting added to make it look like a push button. */
.rss {
	font: normal normal bold 8pt Arial, sans-serif;
	text-decoration: none;
	background-color: #f60;
	padding: 0px 4px;
	margin: 0;
	border-width: 2px;
	border-style: solid;
	border-left-color: #f93;
	border-top-color: #f93;
	border-right-color: #930;
	border-bottom-color: #930;
}

/* Override any browser-specific handling of visited and unvisited links,
   otherwise the color may not be as we specified above.
   The one we're really going for here is "visited", but we go overboard
   and specify everything. */
.rss, :link.rss, :visited.rss {
	color: #fff;
}

/* Reset any internal browser style sheet for the acronym tag. */
.rss acronym {
	font-style: normal;
	margin: 0;
	padding: 0;
	border: 0;
}
