/* 
lilina news aggregator

lilina is a simple but powerful news aggregator written in PHP. 
No database is needed, RSS/ATOM parsing is done by the excellent 
MagpieRSS library (it is included, no additional installation needed). 
It features feed auto-discovery and an easy-to-use interface.

View a live demo @ http://lilina.sourceforge.net/ 
lilina is Open Source Software and is distributed under the GPL license
Written and developed by Panayotis Vryonis, http://vrypan.net/log/
*/



/* Global Elements */

html, body {
	margin: 0;
	padding: 0;
	border: 0;
	background: #ffffff; 
	/* hide from IE5 mac \*/
 	height: 100%;
 	/* end hack */
	height: auto;
	width: 100%;
	}
html, body, p, ul, li, input {
	font-family: "Trebuchet MS", Helvetica, Arial, sans-serif;
	font-size: 11px;
	color: #000000; 
	font-weight: normal;
	}
img, a {
	border: 0;
	}



/* Topbar */

#topbar {
	margin: 5px;
	padding: 0;
	background: #ffffff ;
	color: #6f6f6f;
	height: 30px;
	width: 99%;
	}
#topbar .bgl {
	float: left;
	margin: 0;
	background: #ffffff url(i/topbgl.gif) no-repeat top left;
	height: 30px;
	width: 5px;
	}
#topbar .bgr {
	float: right;
	margin: 0;
	background: #ecf8ff url(i/topbgr.gif) no-repeat top right;
	height: 30px;
	width: 5px;
	}
#topbar, #topbar a {
	color: #003366;
	font-weight: bold;
	text-decoration: none;
	}
#topbar ul {
	float: left;
	display: block;
	list-style: none;
	margin: 0 10px 0 15px;
	padding: 0;
	height: 30px;
	}
#topbar ul li {
	float: left;
	display: block;
	list-style: none;
	margin: 0 5px 0 5px;
	padding-top: 7px;
	text-align:  center;
	height: 25px;
	}
#topbar ul li.img {
	margin-top: -7px;
	}
#topbar ul li.admin a {
	color: #990000;
	}
#topbar img {
	float: left;
	margin: 5px 0 0 4px;
	}



/* Feed */

h1 { /* Date */
	margin: 15px 0 5px 20px;
	padding: 0;
	border-bottom: 1px #C7D0EB dotted;
	font-size: 16px;
	font-weight: bold;
	color: #3E5D7A;
	width: 500px;
	}
.item {
	margin: 7px 225px 7px 25px;
	font-size: 12px;
	background: #ecf8ff;
}
.item img {
	margin: 0 10px 0 0;
	}
.bmark { /* Bookmark image */
	
	}
.time { /* Time Posted */
	margin: 0 4px 0 4px;
	font-style: italic;
	color: #999999;
	}
.title a { /* Title */
	font-weight: bold;
	color: #990000;
	}
.source { /* Direct link to weblog post */
	}
.source a {
	margin: 0 0 0 10px;
	color: #222;
	}
.excerpt { /* Excerpted content from feed */
	margin: 3px 0 0 60px;
	border-top: 1px #f4f4f4 dotted;
	border-bottom: 1px #f4f4f4 dotted;
	font-size: 11px;
	width: 90%;
	}


/* Sources */

#sources {
	position: absolute;
	top: 45px;
	right: 9px;
	padding: 0;
	background: #ecf8ff url(i/sidebar.gif) repeat-y top left;
	color: #6f6f6f;
	width: 175px;
	}
#sources .top {
	display: block;
	margin: 0;
	padding: 0;
	background: #ffffff url(i/sidetop.gif) no-repeat top left;
	height: 8px;
	width: 175px;
	}
#sources .bot {
	margin: 0;
	background: #ffffff url(i/sidebot.gif) no-repeat top left;
	height: 8px;
	width: 175px;
	}
#sources h3 {
	display: block;
	margin: 0 0 10px 0;
	border-bottom: 1px #CBDFEB dotted;
	font-family: "Trebuchet MS", Helvetica, Arial, sans-serif;
	font-size: 12px;
	font-weight: bold;
	text-align: center;
	width: 98%;
	}
#sources ul {
	list-style: none;
	margin: 10px;
	padding: 0;
	}
#sources ul li {
	list-style: none;
	margin: 5px 0 5px 0;
	border: 1px #ecf8ff solid;
	line-height: 12px;
	vertical-align: text-top;
	}
#sources ul li img {
	display: inline;
	height: 16px;
	width: 16px;
	}



/* Edit */

.item ul {
	list-style: none;
	margin: 15px 0 0 0;
	}
.item li {
	font-size: 12px;
	}



/* Footer */

#footer {
	margin: 3px;
	padding-top: 5px;
	border-top: 1px #C7D0EB dotted;
	font-size: 10px;
	text-align: center;
	width: 96%;
	}
