/*
 * Stylesheet for Ambiance - Notification Plugin for jQuery
 * Version 1.0.1
 *
 * Copyright (c) 2012 Richard Hsu
 * Documentation: http://www.github.com/richardhsu/jquery.ambiance
 * Dual licensed under the MIT and GPL licenses:
 * http://www.opensource.org/licenses/mit-license.php
 * http://www.gnu.org/licenses/gpl.html
 */

/* Notification area will be top right but feel free to modify it below. */
#ambiance-notification {
  display: table;
  position: fixed;
  top: 30px;
  left: 50%;
  margin-left: -151px;
  margin: 0px auto;
  width: auto;
  z-index: 99999;
  
  /*right: 10px;*/
}

/* Built in custom styling for the notifications. */
.ambiance-title {
  font-weight: bold;
}

.ambiance {
  display: inline-block;
  min-width: 250px;
  max-width: 450px;
  /*
  float: right;
  clear: both;
  */
  border: 1px solid #aaa;
}

.ambiance:hover {
  border: 1px solid #333;
}

.ambiance-default, .ambiance-success, .ambiance-error, .ambiance-warn {
  border-radius: 5px;
  -moz-border-radius: 5px; /* Firefox 3.6 and earlier. */
  padding: 10px;
  /*margin: 10px;*/
  background: #f9f9f9;
  color: #000;
}

.ambiance-success {
  color: #000;
  background: #e9ffe2 url(../../../img/icons/success.png) no-repeat;
}

.ambiance-error {
  background: #ffe2e2 url(../../../img/icons/error.png) no-repeat;
  color: #000;
}

.ambiance-warn { background: #f9f9f9 url(../../../img/icons/warn.png) no-repeat; }

.ambiance-success, .ambiance-error, .ambiance-warn {
	padding-left: 35px;
	background-position: 10px 11px;
}

/* Close button attributes -- based off Twitter Bootstrap alert close item. */
.ambiance-close {
  display: block;
  position: relative;
  top: -2px;
  right: 0px;
  color: #999999;
  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: #000000;
  cursor: pointer;
  text-decoration: none;
}
