/**
 * You can place your custom CSS statements here
 * it is better to write everything custom here
 * because this file won't be replaced during upgrade
 * Don't forget to rename this file to "site.css"
 */
.my-message-container {
	display: table;
	overflow: hidden;
	padding-bottom: 10px;
	width: 100%;
}

.my-message {
	display: table;
	vertical-align: middle;
	background: #9b59b6;
	box-shadow: 5px 5px 3px #888888;	
	color: white;
	font-size: 1.1em;
	font-weight: bold;
	text-align: center;
	padding: 5px;	
	width: 80%;
	margin: 0 auto;
	border:1px solid #FFFF00;
	-webkit-border-radius: 7px;
    border-radius: 7px;	
}
.my-message .highlight {
	font-size: 1.5em;
	color: yellow;	
}