/* style the announcement banner */
#phpbb_announcement {
	font-size: 1.4rem;
	max-height: 300px;
	overflow-y: auto;
	text-align: justify;
}

/* zero out any text margins and scroll any overflow */
#phpbb_announcement div {
	line-height: 1.5em;
}

/* make posted images responsive */
#phpbb_announcement .postimage {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	max-width: 100%;
}

/* style the close button */
#phpbb_announcement .close {
	float: right;
}

/* fix for lists, force them to display inside containing div */
#phpbb_announcement ul,
#phpbb_announcement ol {
	margin-left: 20px;
}

/* clear floats */
.clearfix:after {
	display: block;
	visibility: hidden;
	clear: both;
	height: 0;
	content: '.';
}
