.notice-wrap {
  position: fixed;
  top: 0;
  left:0px;
  width: 100%;
  z-index: 9999;
}
* html .notice-wrap {
  position: absolute;
}
.notice-item {
  min-height: 25px;
  -moz-border-radius: 0px 0px 5px 5px;
  -webkit-border-radius: 0px 0px 5px 5px;
  border-radius: 0px 0px 5px 5px;
  color: #eee;
  padding: 6px 6px 2px 6px;
  border: 1px solid #999;
  display: block;
  position: relative;
  margin: 0 0 12px 0;
  -webkit-box-shadow: 0 1px 15px #181E28;
  -moz-box-shadow: 0 1px 15px #181E28;
  box-shadow: 0 1px 15px #181E28;
}
.notice-item-close {
  /*display: none;*/
  float:right;
  color:#666;
  cursor: pointer;
  font-size:14px;
  padding-right:5px;
}
.notice-item-close:hover {
  color:#000;
}
.notice-wrap p {
  color: #333;
  padding-top: 3px;
}
.notice-wrap .warning p,
.notice-wrap .error p {
  background: #FFDDE2;
  color: #CC3300;
  font-weight: bold;
  padding-bottom:2px;
  text-align:center;
  font-style:normal;
}
.notice-wrap .success p,
.notice-wrap .ok p {
  background: #DDFFF0;
  color: #006633;
  font-weight: bold;
  padding-bottom:2px;
  text-align:center;
  font-style:normal;
}
.notice-wrap .success, .notice-wrap .ok {
  background-color: #DDFFF0;
}
.notice-wrap .warning, .notice-wrap .error {
  background-color: #FFDDE2;
}
