/**
 * Stylesheet pour les messages
 * 
 */

div.msg-info, div.msg-error, div.msg-success
{
	color:black;
	padding:15px;
	text-align:left;
	
	position:relative;
	
	/*-webkit-border-radius: 3px;
	-moz-border-radius: 3px;*/
	border-radius: 3px;
}


div.msg-info
{
	/*background: lightyellow;
	border:1px solid orange;*/
	border:1px solid #ffc600;
	background:url(static-fond_jaune_transparent_95.png);
}


div.msg-error
{
	/*background: pink;
	border:1px solid red;*/
	border:1px solid #d50000;
	background:url(static-fond_rouge_transparent_95.png);
}

div.msg-success
{
	/*background: lightgreen;
	border:1px solid green;*/
	border:1px solid #05c800;
	background:url(static-fond_vert_transparent_95.png);
}


div.msg-info label, div.msg-error label, div.msg-success label
{
	cursor: pointer;
	font-weight: bold;
}


div.msg-info > input[type=image], div.msg-error > input[type=image], div.msg-success > input[type=image]
{
	position:absolute;
	top:3px;
	right:3px;
	
	cursor: pointer;
}