/*
Ne pas spécifier de styles sur des éléments, car ces derniers peuvent être utilisés dans les composants
*/
body {
	font-family:  sans-serif;
	font-size: 10pt;
}
.message {
	background-color: rgb(0,0,0);
	color: rgb(0,255,0);
	font-family: monospace;
	font-size: 10pt;
	padding: 5px;
	margin-bottom: 10px;
}
.messageError {
	color: rgb(255,0,0);
}
.messageWarning {
	color: rgb(255,255,0);
}
.noticeBar {
	padding:10px;
	background-color:lightsteelblue;
	margin-bottom:5px;
	border-radius:5px;
	box-shadow:2px 2px 2px 0px gray;
}
.noticenotice {
	text-align:center;
	font-weight:bold;
	font-size:12pt;
	margin-bottom:5px;
}
.noticeCopyright {
	text-align:center;
	margin-bottom:5px;
}
.noticeDescription {
	padding:5px;
	background-color:aliceblue;
	text-align:justify;
	margin-bottom:0px;
	border-radius:5px;
	box-shadow:2px 2px 2px 0px gray;
}
.noticeParagraph {
	text-align:justify;
	margin-bottom:5px;
}