/* CSS for the default Information notice box */
div.notice-box {
	border: 1px LightSkyBlue solid;
	border-top-width: 3px;
	padding: 10px 15px;
	margin: 30px;
}

/* CSS for the Advice notice box */
div.notice-box.notice-advice {
	border-color: #83BD71 ;
}

/* CSS for the Warning notice box */
div.notice-box.notice-warning{
	border-color: #FF8C00 ;
}

/* CSS for the Danger notice box */
div.notice-box.notice-danger{
	border-color: #FF0000 ;
}

/* CSS for the notice box Title */
div.notice-box h4 {
   font-size: 19px;
	margin:0 0 10px 0;
}

/* CSS for the notice box Description */
div.notice-box p {
	font-size: 17px;
	line-height: 24px;
	margin:0;
}