/*
News package example Style Sheet.
Every XHTML element output by the News System has the CSS class 'NewsView'.
We can use this to display news output and forms uniquely, if we wish.
*/

/*
Form elements
*/
input.news,
textarea.news
{
	border: 1px solid #ccc;
	width: 400px;
}
input.news[type="submit"]
{
	width: 200px;
}

div.news-snippet
{
    height: 120px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ccc;
}

/** Headline bar */
div.news-headlines
{
	float: right;
	margin: 10px 0px 10px 0px;
	width: 200px;
	border: 1px gray solid;
	padding: 10px;
}

/* Make room for the headline bar */
pre.code { margin-right: 230px; }


div.news-snippet img
{
	float: right;
	border: 1px solid #ccc;
	margin: 0px 0px 0px 15px;	
}

#thumbnails img
{
	float: left;
	margin-right: 8px;
	border: 1px solid #ccc;	
}
