@charset "UTF-8";
/* ****************************************** AMBIANCE *********** */
#ambiance-notification {
  display: block;
  position: absolute;
  top: 50px;
  right: 10px;
  z-index: 999;
  font-family: Arial, Helvetica, sans-serif;
  font-size:12px;
  font-style: italic;
}

/* Style personnalisé intégré pour les notifications. */
.ambiance-titre {
  font-weight: bold;
  font-size: 14px;
  font-style:normal;
}

.ambiance {
  float: right;
  top: 10px;
  clear: both;
  border: 0px solid transparent;
}

.ambiance:hover {
  border: 3px solid #DDDDDD;
}

.ambiance-defaut, .ambiance-succes, .ambiance-erreur {
  border-radius: 10px;
  -moz-border-radius: 10px; /* Firefox 3.6 and earlier. */
  padding: 10px;
  margin: 10px;
}

.ambiance-defaut {
	background: #00ffff;
	color: black;
	background: linear-gradient(top, #009fa1 0, #00ffff 40%, #00ffff 50%, #009fa1 100%) no-repeat;
	background: -webkit-linear-gradient(top, #009fa1 0, #00ffff 40%, #00ffff 50%, #009fa1 100%) no-repeat;
	background: -moz-linear-gradient(top, #009fa1 0, #00ffff 40%, #00ffff 50%, #009fa1 100%) no-repeat;
	background: -o-linear-gradient(top, #009fa1 0, #00ffff 40%, #00ffff 50%, #009fa1 100%) no-repeat;
	background: -ms-linear-gradient(top, #009fa1 0, #00ffff 40%, #00ffff 50%, #009fa1 100%) no-repeat;
	background: linear-gradient(top, #009fa1 0, #00ffff 40%, #00ffff 50%, #009fa1 100%) no-repeat;
	-svg-background: linear-gradient(top, #009fa1 0, #00ffff 40%, #00ffff 50%, #009fa1 100%) no-repeat;
	text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
	-webkit-box-shadow: 4px 4px 8px 1px rgba(0, 0, 0, 0.5); 
	-moz-box-shadow: 4px 4px 8px 1px rgba(0, 0, 0, 0.5); 
	box-shadow: 4px 4px 8px 1px rgba(0, 0, 0, 0.5); 
}

.ambiance-succes {
	background: #468847;
	color: white;
	background: linear-gradient(top, #468847 0, #00c802 40%, #00c802 50%, #468847 100%) no-repeat;
	background: -webkit-linear-gradient(top, #468847 0, #00c802 40%, #00c802 50%, #468847 100%) no-repeat;
	background: -moz-linear-gradient(top, #468847 0, #00c802 40%, #00c802 50%, #468847 100%) no-repeat;
	background: -o-linear-gradient(top, #468847 0, #00c802 40%, #00c802 50%, #468847 100%) no-repeat;
	background: -ms-linear-gradient(top, #468847 0, #00c802 40%, #00c802 50%, #468847 100%) no-repeat;
	background: linear-gradient(top, #468847 0, #00c802 40%, #00c802 50%, #468847 100%) no-repeat;
	-svg-background: linear-gradient(top, #468847 0, #00c802 40%, #00c802 50%, #468847 100%) no-repeat;
	text-shadow: 2px 2px 2px rgba( 0, 0, 0, 0.7);
	-webkit-box-shadow: 4px 4px 8px 1px rgba(0, 0, 0, 0.5); 
	-moz-box-shadow: 4px 4px 8px 1px rgba(0, 0, 0, 0.5); 
	box-shadow: 4px 4px 8px 1px rgba(0, 0, 0, 0.5); 
}

.ambiance-erreur {
	background:#FF0000;
   background: linear-gradient(top, #FF0000 0, #b22222 40%, #b22222 50%, #FF0000 100%) no-repeat;
   background: -webkit-linear-gradient(top, #FF0000 0, #b22222 40%, #b22222 50%, #FF0000 100%) no-repeat;
   background: -moz-linear-gradient(top, #FF0000 0, #b22222 40%, #b22222 50%, #FF0000 100%) no-repeat;
   background: -o-linear-gradient(top, #FF0000 0, #b22222 40%, #b22222 50%, #FF0000 100%) no-repeat;
   background: -ms-linear-gradient(top, #FF0000 0, #b22222 40%, #b22222 50%, #FF0000 100%) no-repeat;
   background: linear-gradient(top, #FF0000 0, #b22222 40%, #b22222 50%, #FF0000 100%) no-repeat;
   -svg-background: linear-gradient(top, #FF0000 0, #b22222 40%, #b22222 50%, #FF0000 100%) no-repeat;
	color:#FFF;
	text-shadow: 2px 2px 2px rgba( 0, 0, 0, 0.7);
	-webkit-box-shadow: 4px 4px 8px 1px rgba(0, 0, 0, 0.5); 
	-moz-box-shadow: 4px 4px 8px 1px rgba(0, 0, 0, 0.5); 
	box-shadow: 4px 4px 8px 1px rgba(0, 0, 0, 0.5); 
}

/* Attributs du bouton Fermer -- basés sur l'élément de fermeture d'alerte Twitter Bootstrap. */
.ambiance-close {
  display: block;
  position: relative;
  top: -2px;
  right: 0px;
  color: #FFFFFF;
  float: right;
  font-size: 18px;
  font-weight: bold;
  filter: alpha(opacity=20);
  text-decoration: none;
  position: relative;
  line-height: 14px;
  margin-left: 5px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.ambiance-close:hover {
  color: #BBBBBB;
  cursor: pointer;
}