/**
 * Author: Dennis Robinson
 * Date: December 9, 2009
 * Copyright: Mergenta (c) 2009
 *
 * Styles for the Feed Widget
 *
 */

/**
 * Feed Widget styles
 */
div.feedwidget div.header {
	height: 52px;
	background-image: url('../../images/feedwidget_top.png');
	-moz-border-radius: 5px 5px 0px 0px;
	-webkit-border-radius: 5px 5px 0px 0px;
}

div.feedwidget div.footer {
	height: 35px;
	background-image: url('../../images/feedwidget_bottom.png');
	-moz-border-radius: 0px 0px 5px 5px;
	-webkit-border-radius: 0px 0px 5px 5px;
}

div.feedwidget div.content {
	overflow: hidden;
	background-color: #000000;
	border: 1px solid #000000;
}

div.feedwidget div.content ol {
	display: block;
	width: 100%;
	margin: 0px;
	padding: 0px;
	overflow: hidden;
	background-color: #FFFFFF;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
}

div.feedwidget div.content ol li {
	padding: 10px;
	list-style-type: none; /* Remove bullets */
	border-bottom: 1px dotted #000000;
	font-size: 11px;
}

div.feedwidget div.content ol li a.title {
	display: block;
	font-size: 12px;
	padding-bottom: 6px;
}

div.feedwidget div.content ol li:last-child {
	border-bottom: none;
}