/* Stylesheet for NetNewsWire */
/* http://ranchero.com/netnewswire/ */

/* CSS by Oliver Boermans */
/* http://www.ollicle.com */

/* Updated 25 Jan. 2004 */
/* Fixed positioning now works for non-linked titles */

/* remove page margins and add some line spacing */
body {
	line-height: 1.7em;
	margin: 0;
	padding: 0;
	}


/* Use background colour instead of link underlines */
a {
	text-decoration: none;
	background-color: #ddf;
	}


/* specify link colours - including rollover and visited */
a:link {
	color: #000;
	}
a:visited {
	color: #609;
	}
a:hover {
	color: #00c;
	}


/* assign specific font for titles - overrides NNW preferences */
/* also provides styling for unlinked titles */
.newsItemTitle {
	font-family: "Lucida Grande";
	background-color: #eee;
	color: #666;
	}

/* make titles stay at the top of the pane when scrolling */
.newsItemTitle {
	padding: 0.2em 1% 0.2em 5%;
	position: fixed;
	top: 0;
	left: 0;
	width: 94%;
	height: 1.8em;
	overflow: hidden;
	}

/* and clickable all over */
.newsItemTitle a {
	display: block;
	width: 100%;
	margin: -0.2em -1% -0.2em -5%;
	padding: 0.2em 1% 0.2em 5%;
	}


/* specifiy colours of title background - including a rollover */
.newsItemTitle a:link {
	background-color: #ccc;
	color: #333;
	}
.newsItemTitle a:hover {
	background-color: #37d;
	color: #fff;
	}


/* add some page margins back for description text */
.newsItemDescription {
	padding: 1em 5% 1em 5%;
	margin: 0;
	max-width: 40em;
	}

blockquote {
	background-color: #ddd;
	padding: 0.5em 2% 0.5em 2%;
	}