/* 
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, input {
	font-family: Helvetica, Arial, sans-serif;
	font-size: 11px;
	color: #000000;
	font-weight: normal;
	}
img, a {
	border: 0;
	vertical-align: text-bottom;
	}

#c1 {
	color: #fff ;
	background: #fff ;
	display: none;
}
#c2 {
	color: #eeeeee ;
	background: #eeeeee ;
	display: none;
}

/* Logo */
#logo {
	position:relative;
	float:left;
	width:150px;
	margin-left:4px;
	margin-top:10px;
}

#logo img { border:#000 solid 1px; }

/* Topbar */
#navigation {
	position: relative;
	float: top;
	margin-left:175px;
	background: #fff;
	color: #000;
	padding: 8px;
	display: block;
}

#navigation a { color:#264D73; text-decoration:none; }
#navigation a:visited { color:#330066; }
#navigation a:active { color:#E00000; }
#navigation a:hover  { color:#993333; text-decoration:underline; }

#navigation ul, #navigation li {
	margin-left: 2px;
}

#topbar {
	position: relative;
	float: right;
	display: block;
	margin: 0px;
	padding: 0 12px 0 5px;
	background: #fff;
	color: #6f6f6f;
	width: 250px;
	border: #000 solid 1px ;
	}
#topbar, #topbar a {
	color: #000;
	font-weight: bold;
	text-decoration: none;
	}
#navigation li {
	margin-top: 3px;
	margin-left: 3px;
	}
#navigation ul {
	margin-top: 3px;
	margin-left: 3px;
	padding-left: 3px;
	}

#navigation li.img {
	margin-top: 2px;
	}
#navigation ul li.admin a {
	color: #990000;
	margin-left: 3px;
	}

/* Feed */

.feed { /* Container for items coming from the same feed */ 
	margin-left:15px;
	border-bottom:1px solid #D2A679;
	/*border-left:1px dotted #660000;*/
	/* Add styling if you want consequent items from the same feed to look "grouped" */
}

h1 { /* Date */
	margin: 0px 0px 0px 0px;
	padding: 4px 0 4px 15px;
	font-size: 12px;
	font-weight: bold;
	color: #fff;
	background: #aaaaaa;
	background: #660000;
	}
.item {
	margin: 0px 0px 0px 0px;
	font-size: 12px;
	/*border-top: 1px solid #aac ;*/
	background-color: #ffffff;
	padding-bottom: 4px ;
	padding-top: 2px;
	padding-left: 15px;
	}
.item img {
	margin: 2px 10px 0 0;
	cursor: pointer;
	}
.bmark { /* Bookmark image */
	
	}
.time { /* Time Posted */
	margin: 0 4px 0 4px;
	font-style: italic;
	color: #999999;
	}
.title { /* Title */
	font-weight: bold;
	color: #555;
	text-decoration: none;
	cursor: pointer;
	}
.source { /* Direct link to weblog post */
	}
.source a {
	margin: 0 0 0 10px;
	color: #336600;
	text-decoration: none;
	}
.source a:visited { text-decoration:none; }
.source a:hover { font-weight:bold; text-decoration:underline; }

.excerpt { /* Excerpted content from feed */
	margin: 3px 0 0 60px;
	font-size: 11px;
	width: 90%;
	display: none;
	}


/* Google */

.google {
	margin: 0 0 0 0 ;
	padding: 0px;
	/* background: #ffffff ; */

}
.google p { 
	display: block; 
	margin-bottom: 0 ;
	margin-top: 0 ;
	color: #555555 ;
}

/* Panel */

#panel {
	position: absolute;
	top: 20px;
	right: 2px ;
	padding: 10px;
	background: #eeeeee ;
	color: #6f6f6f;
	width: 200px;
	display: block;

}
/* Sources */

#sources {
	position:relative;
	float:left;
	width:150px;
	height:100%;
	margin-left:4px;
	padding: 4px;
	color: #000;
	border: 1px #787878 solid;
	background: #D2A679;
	}
#sources h3 {
	display: block;
	margin: 0 0 10px 0;
	border-bottom: 1px #CBDFEB dotted;
	font-size: 12px;
	font-weight: bold;
	text-align: center;
	}
#sources ul {
	list-style-type: square;
	margin: 7px;
	padding: 3px;
	}
#sources li {
	padding-bottom: 2px;
	}

#sources a {
	
	color:#264D73;
	text-decoration: none;
}

#sources	a:visited { color:#330066; }
#sources	a:active  { color:#E00000; }
#sources	a:hover   { color:#993333; text-decoration:underline; }

/* Edit */

.item ul {
	list-style: none;
	margin: 15px 0 0 0;
	}
.item li {
	font-size: 12px;
	}



/* Footer */

#footer {
	position:relative;
	float:left;
	clear:left;
	margin: 4px;
	padding-top: 10px;
	padding-bottom:10px;
	font-size: 10px;
	width: 150px;
	}

#main {
	margin-left:175px;
	margin-right: 5px;
	margin-bottom:10px;
	//border-right: 0px #aaa solid;
	border:1px #fff solid;
}

