
/*
 * Entries in a list or in a single view.
 */
div.news div.entry {
	padding-bottom: 1em;
	border-bottom: solid 1px;
	margin-bottom: 1em;
}
div.news div.entry img.thumbnail {
	display: block;
	float: right;
	margin: 0px 0px 0.5em 1em;
	border: solid 1px;
}
div.news div.entry div.scroll_thumb {
	float: right;
	margin: 0px 0px 0.5em 1em;
	text-align: center;
}
div.news div.entry div.scroll_thumb img {
	border: solid 1px;
}
div.news div.entry div.title {
	font-weight: bold;
	font-size: 120%;
}
div.news div.entry div.author {
	font-weight: bold;
	font-size: 90%;
}
div.news div.entry div.timestamp {
	font-size: 80%;
	font-style: italic;
}
div.news div.entry div.text {
	padding-top: 0.5em;
}
div.news div.entry div.comment_links {
	margin-top: 0.5em;
	font-size: 90%;
}
div.news div.entry div#comments {
	margin-top: 1em;
}
div.news div.entry div#comments div.comment {
	border-top: dotted 1px;
	margin-top: 1em;
	padding-top: 1em;
}
div.news div.entry div#comments div.comment div.name {
	font-weight: bold;
}
div.news div.entry div#comments div.comment div.location {
	font-size: 90%;
}


/*
 * IE5 for Mac doesn't display floating divs correctly... 
 * When it finally dies, this can be uncommented.
div.news div.entry div.thumbnail {
	float: right;
	margin: 0px 0px 0.5em 1em;
	text-align: center;
	font-size: 80%;
}
div.news div.entry div.thumbnail img {
	display: block;
	border: solid 1px;
}
 * END IE5 for mac illness. Once IE5 for mac dies, delete the img.thumbnail
 * block above and use the this instead (but be sure to update the CMS
 * template first.)
 */



/*
 * The archive table.
 */
div.news.archive table {
	border: solid 1px;
	border-collapse: collapse;
	text-align: center;
	margin: auto;
	margin-top: 1em;
}
div.news.archive table tr.odd {
}
div.news.archive table tr.even {
}
div.news.archive table tr.highlighted {
	font-weight: bold;
}
div.news.archive table th {
	border: solid 1px;
	border-collapse: collapse;
	padding: 4px 1em;
}
div.news.archive table td {
	border: solid 1px;
	border-collapse: collapse;
	padding: 4px 1em;
	font-size: 90%;
}
div.news.archive table td.title {
}
div.news.archive table td.timestamp {
	white-space: nowrap;
}
div.news.archive table td a {
	text-decoration: none;
}


/*
 * The popup window.
 */
body.popup {
	text-align: center;
}
body.popup div.title {
	font-size: 120%;
	font-weight: bold;
	margin: 0.5em;
}
body.popup div.image {
	margin: 0.5em 0px;
}
body.popup div.image img {
	border: solid 1px;
}
body.popup div.description {
}



/*
 * This is a hack to make news <div>s fully encompass photos.
 */
div.news div.entry:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

/* Hides from IE-mac \*/
* html div.news div.entry {height: 1%;}
/* End hide from IE-mac */



