/* style the announcement banner */
.phpbb_announcement {
	margin: 10px 0;
	padding: 10px;
	background-color: #EBE5CD; 
	background-image: -webkit-linear-gradient(top, #ECE4BB  20%, #A88857 100%);
	background-image: linear-gradient(to bottom, #ECE4BB 20%, #A88857 100%);
	box-shadow: 0 0 5px rgba(235, 229, 205, 0.7) inset, 0 0 5px rgba(0, 0, 0, 0.3);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#D5738B', endColorstr='#9C304B',GradientType=0 ); /* IE6-9 */
	border-bottom : 2px solid #6C5839;
	border-left : 0px solid #6C5839;
	border-right :0px solid #6C5839;
	border-top : 2px solid #6C5839;
	border-radius: 0px;
	margin-left : -10px; 
	margin-right: -10px; 
	font-size: 17px;
	font-family: "Book Antiqua", "Palatino Linotype", Palatino, Times, serif;
}

/* zero out any text margins and scroll any overflow */
.phpbb_announcement div {
	font-size: 1.1em;
	line-height: 1.5em;
	overflow-x: auto;
	overflow: hidden;
	margin: 0;
}

/* 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 {
	opacity: 0.6;
	position: absolute;
	z-index: 999;
	top: 4px;
	right: 4px;
	left: auto;
}

/* reposition close button for right-to-left languages */
.rtl .phpbb_announcement .close {
	right: auto;
	left: 4px;
}

/* hide close button on desktops by default */
.notouch .phpbb_announcement .close {
	opacity: 0;
	transition: opacity 0.5s;
}

/* display the close button on mouse-over of the banner */
.notouch .phpbb_announcement:hover .close {
	opacity: 0.6;
}

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

.rtl .phpbb_announcement ul,
.rtl .phpbb_announcement ol {
	margin-right: 20px;
	margin-left: 0;
}
