/* StyleSheet for rss2.xml 2004-10-04 */
RDF, rss, channel,
item, title, description, link, textinput, lastBuildDate {
	background: #eee;
	color: #000;
	display: block;
	margin: .5em;
	padding: .5em;
}
channel {
	text-align: center;
}
channel > title {
	background: #ddd;
	font: bold xx-large serif;
}
channel > description {
	color: #555;
}
item {
	-moz-border-radius: .5em;
	-webkit-border-radius: .5em;
	border-radius: .5em;
	-moz-box-shadow: inset .1em .1em .5em gray;
	-webkit-box-shadow: inset .1em .1em .5em gray;
	box-shadow: inset .1em .1em .5em gray;
}
item,
item * {
	background: #fff;
	text-align: left;
}
item > description,
item > link {
	margin-left: 3em;
}
lastBuildDate::before {
	content: "last Build Date: ";
}
lastBuildDate,
pubDate {
	font-family: monospace;
	font-weight: 100;
	text-align: right;
}
pubDate {
	float: right;
}
link {
	color: #009;
}
link::before {
	content: "<";
}
link::after {
	content: ">";
}
link:hover {
	text-decoration: underline;
}
