.notice-wrap {
  position: fixed;
  top: 0;
  left:0;
  width: 100%;
  z-index: 9999;
}
* html .notice-wrap {
  position: absolute;
}
.notice-item {
  min-height: 25px;
  padding: 10px;
  border: 1px solid #e5e5e5;
  display: block;
  position: relative;
  margin: 0 0 10px 0;
	-webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
	-moz-box-shadow: 0 0 5px  rgba(0, 0, 0, 0.7);
	box-shadow: 0 0 5px  rgba(0, 0, 0, 0.7);
}
.notice-item-close {
  /*display: none;*/
  float:right;
	color: #cacaca;
  cursor: pointer;
  font-size:14px;
  padding-right:5px;
}
.notice-item-close:hover {
  color:#ff9008;
}
.notice-wrap p {
  color: #002B45;
  padding-top: 3px;
}
.notice-wrap .warning p,
.notice-wrap .error p {
  background: #FAE7DF;
  font-weight: bold;
  padding-bottom:2px;
  text-align:center;
  font-style:normal;
}
.notice-wrap .success p,
.notice-wrap .ok p {
  background: #FFF7E5;
  font-weight: bold;
  padding-bottom:2px;
  text-align:center;
  font-style:normal;
}
.notice-wrap .success,
.notice-wrap .ok {
  background-color: #FFF7E5;
}
.notice-wrap .warning,
.notice-wrap .error {
  background-color: #FAE7DF;
}
