/* Menu drop-down outer container. Defines the width of the menu. Amount of content defines the height */
.newsBox {
	margin: 4px 0 4px 0;
	width: 220px;
/*	height: 150px;*/
/*	position: absolute;
	z-index: 10;
	left: -6px;
	top: 16px;*/
	background: rgb(240,240,240);
	float: right; 
}
/* Top and bottom 'bars' containing the rounded corners, in 4 parts */
.newsBox .topBarLeft, .newsBox .topBarRight, .newsBox .bottomBarLeft, .newsBox .bottomBarRight {
	float: left;
	width: 50%;
	background-repeat: no-repeat;
}
.newsBox .topBar, .newsBox .topBarLeft, .newsBox .topBarRight {
	height: 7px;
}
.newsBox .topBarLeft {
	background-image: url('/img/newsbox/news-box-top_l.png'); background-position: left;
	float: left;
}
.newsBox .topBarRight {
	background-image: url('/img/newsbox/news-box-top_r.png'); background-position: right;
	float: right;
}
.newsBox .bottomBar, .newsBox .bottomBarLeft, .newsBox .bottomBarRight {
	height: 7px;
}
.newsBox .bottomBarLeft {
	background-image: url('/img/newsbox/news-box-bot_l.png'); background-position: left;
	float: left;
}
.newsBox .bottomBarRight {
	background-image: url('/img/newsbox/news-box-bot_r.png'); background-position: right;
	float: right;
}

/* Container DIVs for the actual menu content. 2 containers to allow a left and right background image */
.newsBox .newsContentOuter {
	/*width: 100%;*/
	background-image: url('/img/newsbox/news-box-r.png');
	background-position: right;
	background-repeat: repeat-y;
	padding-right: 6px;
}
.newsBox .newsContent {
	background-image: url('/img/newsbox/news-box-l.png');
	background-position: left;
	background-repeat: repeat-y;
	padding-left: 13px;
	padding-right: 7px;
	height: 500px;
/*	overflow: scroll; */
	overflow: auto;
/*	scrollbar-base-color: rgb(162,194,151); 
	scrollbar-track-color:  #b6d6aa; */  /* Surely we don't really want to fiddle the scrollbar colours ... IE only anyway */
}
.newsBox .newsContent p {
	border-top: 2px solid #fff;
	padding-top: 5px;
}
.newsBox .newstitle {
	font-weight: bold;
}
/*.newsBox a.moreNews {
	color: rgb(173,217,182);
}*/
