/* These styles determine how the list of news items looks on the Home page */
ul.news {
	list-style-type: none;
	float: right;
	width: 200px;
	/* background-color: Yellow; */
	color: White;
	margin: 0;
	margin-left: 20px;
	padding-left:0;
	/* text-align: right;
	background-color: Gray; */
}

ul.news li {
	border-top: solid Gray;
	text-align: center;
	margin-left: 10px;
	padding-left: 0;
	background-color: #E0E080;
}

/* The title "NEWS" at the top of the list of news items */
ul.news li.newshead {
	font-size: 150%;
	text-align: center;
	color: White;
	background-color: #6e90FF;
	border-top: solid Gray;
}

ul.news li.newshead a:link {
	color: White;
}

ul.news li.newshead a:visited {
	color: #F0F0F0;
}

/* If you want to extend the height of the news list downwards, to stop the main page content pushing out below the news list, put  a series of empty <li class="newspad"></li> elements after the news items. */
ul.news li.newspad {
	background-color: inherit;
	padding-bottom: 100px;
	border-top: none;
}

/* These styles apply to the news items on the News page */
.newstitle {
	border-top: solid;
	border-bottom: solid 1px;
}

.newsdate {
	color: #606060;
}

.newsmain {
	text-align: justify;
}
