@charset "UTF-8";
/*
*  Notify Bar - jQuery plugin
*
*  Copyright (c) 2009-2010 Dmitri Smirnov
*
*  Licensed under the MIT license:
*  http://www.opensource.org/licenses/mit-license.php
*  
*  Version: 1.2
*
*  Project home:
*  http://www.dmitri.me/blog/notify-bar
*/
.jquery-notify-bar {
  position: fixed;
  z-index: 32768;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 0;
  background-color: #efefef;
  text-align: center;
  font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", sans-serif;
  font-size: 14px;
  color: #333;
}

.jquery-notify-bar.error {
  background-color: #db0101;
  color: #fff;
}

.jquery-notify-bar.success {
  background-color: #0cf;
  color: #fff;
}

.notify-bar-close {
  position: absolute;
  left: 95%;
  font-size: 11px;
}
