
.newsTile {
	position         : relative;
    margin-left      : auto;
    margin-right     : auto;
	height           : 200px;
	width            : 90%;
	border-radius    : 10px;
	background-color : WhiteSmoke;
	box-shadow       : 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19)
}
			
.newsHeadline {
	position         : absolute;
	top              : 0;
	height           : 70%;
	width            : 100%;
	color            : Black;
	font-size        : 30px;
	padding          : 2px;
	text-align       : center;
	background-color : seashell;
	border-radius    : 10px 10px 0 0;
}
			
.newsByLine {
	position         : absolute;
	bottom           : 15%;
	height           : 20%;
	width            : 100%;
	color            : darkBlue;
	font-size        : 20px;
	text-align       : right;
	padding          : 0px 6px 0px 6px;
	background-color : lightGrey;
}
			
.newsDate {
	position         : absolute;
	bottom           : 0;
	height           : 15%;
	width            : 100%;
	color            : white;
	font-size        : 15px;
	text-align       : center;
	padding          : 2px;
	background-color : black;
	border-radius    : 0 0 10px 10px;
}	





