.msg-container {
  width: 150px;
  z-index: 9999;
}


* html .msg-container {
  position: absolute;
}

.msg-item {
  height: auto;
  background: #333;
  opacity: 0.9;
  filter: alpha(opacity=90);
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  color: #eee;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 6px;
  padding-right: 6px;
  font-family: lucida Grande;
  font-size: 14px;
  border: 2px solid #999;
  display: block;
  position: relative;
  margin: 0 0 12px 0;
}

.msg-item p {
  text-align: center;
  margin: 0 15px;
}

.msg-item .close {
  float: right;

}

.msg-item .close:hover {
  cursor: pointer;
  opacity: 1;
  filter: alpha(opacity=100);
}

.msg-item-close {
  background: url(../images/close.gif);
  width: 22px;
  height: 22px;
  position: absolute;
  top: 4px;
  right: 4px;
}

.msg-item-image {
  width: 32px;
  height: 32px;
  position: absolute;
  top: 50%;
  margin-top: -16px;
  left: 10px;
}

.msg-item-image-notice {
  background: url(../images/notice.png);
}

.msg-item-image-success {
  background: url(../images/success.png);
}

.msg-item-image-warning {
  background: url(../images/warning.png);
}

.msg-item-image-error {
  background: url(../images/error.png);
}


/**
 * msg types
 *
 * pattern: msg-type-[value]
 * where 'value' is the real value of the plugin option 'type'
 *
 */
.msg-type-notice {
  background-color: #f4f4f5;
  color: #909399;
  border: 2px solid #909399;
}

.msg-type-info {
  background-color: #ffffc0;
  color: #4d4c4c;
  border: 2px solid #debe6b;
}

.msg-type-success {
  /* color: white; */
  background-color: #f0f9eb;
  color: #3ac267;
  border: 2px solid #3ac267;
}

.msg-type-warning {
  background-color: #fdf6ec;
  color: #e6a23c;
  border: 2px solid #e6a23c;
}

.msg-type-danger {
  /* color: white; */
  background-color: #fef0f0;
  color: #f56c6c;
  border: 2px solid #f56c6c;
}

/**
 * positions
 *
 * pattern: msg-position-[value]
 * where 'value' is the real value of the plugin option 'position'
 *
 */
.msg-position-top-left {
  position: fixed;
  left: 20px;
  top: 20px;
}

.msg-position-top-center {
  position: fixed;
  top: 20px;
  left: 50%;
  margin-left: -75px;
}

.msg-position-top-right {
  position: fixed;
  top: 20px;
  right: 20px;
}

.msg-position-middle-left {
  position: fixed;
  left: 20px;
  top: 50%;
  margin-top: -40px;
}

.msg-position-middle-center {
  position: fixed;
  left: 50%;
  margin-left: -75px;
  margin-top: -40px;
  top: 50%;
}

.msg-position-middle-right {
  position: fixed;
  right: 20px;
  margin-left: -75px;
  margin-top: -40px;
  top: 50%;
}