/* the box containing the scrolling articles */
#feedScroller {
	font-family: Arial;
	color: black;
	background-color: #d11b1a;
	width: 100%;
	height: 300px;
	overflow: hidden;
	text-align: left;
	line-height: normal;
}

/* each article */
.feedScrollerArticle {
	border-bottom: 1px black solid;		/* article divider lines */
	padding: 0px 5px 0px 5px;
	background-color: #d11b1a;
}

/* article title */
#feedScroller h1 {
	font-weight: bold;
	margin: 0px;
	padding: 0px;
	font-size: 22px;
	line-height: 95%;
	padding-top:5px;
	padding-bottom:5px;
}

/* article description */
#feedScroller p {
	margin: 0px 0px 5px 0px;
	padding: 0px;
	font-size: 14px;
}

/* whole article on hover */
.feedScrollerArticle-hover {
	background-color: white;
	cursor: pointer;
}

/* article title colour on hover */
.feedScrollerArticle-hover h1 {
	color: #6b6b6b;
}

/* article description colour on hover */
.feedScrollerArticle-hover p {
	color: #ca1413;
}