/*
// "Simple RSS Feed Reader" Module for Joomla! 1.0.x & Mambo 4.5.x/4.6.x - Version 1.4
// License: http://www.gnu.org/copyleft/gpl.html
// Authors: Fotis Evangelou - George Chouliaras
// Copyright (c) 2006 - 2007 JoomlaWorks.gr - http://www.joomlaworks.gr
// Project page at http://www.joomlaworks.gr - Demos at http://demo.joomlaworks.gr
// ***Last update: October 26th, 2007***
*/

div#srfr_container {} /* Don't forget the module class suffix, if you've entered one in the module parameters! */

/* generic list styling */

ul.srfr {
	margin: 4px 2px;
	padding-top: 10px;
	width: 155px;
	list-style:none;
	background:none;
}


ul.srfr li {
	margin: 12px 0 0 0;
	padding: 2px 4px 0 0;
	list-style: none;
	clear: both;
	background: #2d2d2d;
}


ul.srfr li:hover {
	margin: 12px 0 0 0;
	padding: 2px 4px 3px 0;
	list-style:none;
	clear:both;
	background: #2d2d2d;
}

/* generic link styling (fill as you see fit or use specific values below) */

ul.srfr li a {}
ul.srfr li a:hover {}

/* feed item title */

a.srfr-feed-title {
	display:block;
	color:#FFF;
	margin-bottom: 4px;
	font-weight: bold;
}

a.srfr-feed-title:hover {
	display:block;
	color:#999;
	margin-bottom: 4px;
}

/* feed item timestamp */

span.srfr-feed-timestamp {color:#999; margin-right:4px; font-size:11px;}

/* feed name */

a.srfr-feed-name {}
a.srfr-feed-name:hover {}

/* feed item intro content */

p.srfr-feed-intro {
	margin-top: 0;
	padding:2px 0;
	clear:both;
}

p.srfr-feed-intro img {display:block;float:left;margin:10px 4px 4px 0;}
p.srfr-feed-intro a {}
p.srfr-feed-intro a:hover {}

/* feed item full content */

p.srfr-feed-full {
	margin: 5px 0 0 0;
	padding: 2px 0;
	clear: both;
	color: silver;
}

p.srfr-feed-full img {display:block;float:left;margin:0 4px 4px 0;}
p.srfr-feed-full a {}
p.srfr-feed-full a:hover {}

/* --- END --- */