@charset "utf-8";
/* CSS Document */
*{
	margin: 0;
	padding: 0;
}
header{
	width: 100%;
	height: 200px;
	background-color: #196735;
}
main{
	width:100%;
	display: flex;
	flex-direction: row;
	align-items: right;
	padding-left: 25px;
}
section{
	flex: 1 1 85%;
	background-color: #FFFFFF;
	padding: 20px
}
aside{
	flex: 0 0 300px;
	background-color: #999;
}
footer{
	width: 100%;
	background-color: #000;
	height: 150px;
}
article {float:left;
width:100%;
display:block;
	margin-bottom: 25px;
}
article div.articleDtg{
	width:75px;
	height: 125px;
	border: 2px solid red;
	border-radius: 10px;
	overflow:hidden;
	float:left;
	margin: 0px 35px 15px 0px;
}
article div.articleDtg div.articleMonth{
	height:40px;
	background-color: #196735;
	color:white;
	text-align: center;
	font-size: 20px;
	padding-top: 5px;
	padding-bottom: 5px
}
article div.articleDTG div.articleDay{
	height:75px;
	background-color: white;
	colour:black;
	text-align: center;
}
article h2 {
	display:block;
	margin-left: 35px;}