/*
This stylesheet provides styling for the news headlines when
used in the Organised Mum website. The basic form of the news
headlines, and the classes, are shown below.

It is copied from lilina/om.css to skin1/organised_mum/lilina.css

<span class="time"></span> 
<div class="feed">
	<div class="item" id="xxx">
		<span class="title" id="TITLE0">
		<a href="http://blog">Testing Lilina</a>
		</span>
		<div class="excerpt" id="ICONT0" >Blah.
		</div>
	</div>
</div>

 * $Rev$
 * $Date$ 
 * <p>
 * Copyright (C) 2007 Boxhouse Publishing Ltd. All Rights Reserved.
 * <p>
 * $Author$
 * $Id$
 * $HeadURL$
 * 
 ********************************************************************
 * History
 ********************************************************************
 * $Log$
 *
 ********************************************************************/
.news_headlines {
	padding-top: 10px;
}

.item {
	margin: 0px 0px 0px 0px;
	/* burgundy line */
	border-top: 1px solid #BC405D;
	font-size: 12px;
	color: #ffffff;
	padding-bottom: 2px;
	padding-left: 15px;
}

.time { /* Time Posted */
	margin: 0 4px 0 4px;
	font-style: italic;
	color: #ffffff;
}

.title { /* Title */
	font-weight: bold;
	color: #BC405D;
	text-decoration: none;
	cursor: pointer;
}

.title a {
	margin: 0 0 0 10px;
	color: #BC405D;
	text-decoration: none;
}

.excerpt { /* Excerpted content from feed */
	margin: 3px 0 0 10px;
	padding-bottom: 10px;
	font-size: 12px;
	color: #ffffff;
	width: 90%;
	/* display: none; */
}