/*
 * Stylesheet for Ambiance - Notification Plugin for jQuery
 * Version 1.0.0
 *
 * 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: block;
  position: fixed;
  top: 400px;
  right: 600px;
  z-index: 9999;
   font: 0.6em 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  
 
}

/* Built in custom styling for the notifications. */
.ambiance-title {
  font-weight: bold;
}

.ambiance {
  float: right;
  clear: both;
  /*border: 1px solid transparent;*/
}

.ambiance:hover {
  border: 1px solid #000;
  filter: alpha(opacity=70);
    opacity: 0.7;
    cursor:pointer;
}

.ambiance-default, .ambiance-success, .ambiance-error {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px; /* Firefox 3.6 and earlier. */
  border-radius: 10px;
  padding: 10px;
  margin: 100px;
}

.ambiance-default {
  background: #000000;
  color: #FFF;
}

.ambiance-success {
  background: #468847;
  color: #FFF;
}

.ambiance-error {
  background: #ff0000;
  color: #FFF;
}

/* Close button attributes -- based off Twitter Bootstrap alert close item. */
.ambiance-close {
  display: block;
  position: relative;
  top: -2px;
  right: 0;
  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;
}
