.sticky-notes-container {
  display: none;
  position: fixed;
  top: 50px;
  right: 1%;
  width: 452px;
  min-width: 225px;
  z-index: 1000;
  opacity: 80;
  filter: alpha(opacity=8000);
}
.sticky-notes-container.loaded {
  display: block;
}
.sticky-notes-container .sticky-note {
  padding: 10px 15px;
  margin-bottom: 1.42857143;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  border: 1px solid transparent;
}
.sticky-notes-container .sticky-note h4 {
  margin: 0 0 5px 0;
  font-size: 16px;
  font-weight: bold;
}
.sticky-notes-container .sticky-note .close-button {
  cursor: pointer;
}
.sticky-notes-container .sticky-note .sticky-icon {
  margin-right: 10px;
}
.sticky-notes-container .sticky-note.ok {
  color: #173443;
  border-color: #bce8f1;
  background-color: #d9edf7;
}
.sticky-notes-container .sticky-note.ok h4 {
  color: #173443;
}
.sticky-notes-container .sticky-note.info {
  color: #43351c;
  border-color: #faebcc;
  background-color: #fcf8e3;
}
.sticky-notes-container .sticky-note.info h4 {
  color: #43351c;
}
.sticky-notes-container .sticky-note.error {
  color: #602625;
  border-color: #ebccd1;
  background-color: #f2dede;
}
.sticky-notes-container .sticky-note.error h4 {
  color: #602625;
}
.sticky-notes-container .sticky-note.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  -moz-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}
.sticky-notes-container .sticky-note .sticky-content {
  overflow: hidden;
  text-overflow: ellipsis;
}
