/* $Id: sticky_notes.css,v 1.1 2010/03/09 16:45:34 berliner Exp $ */

#sticky-notes-overlay {
  background-color: black;
  opacity: 0.8;
  z-index: 1000;
  display: none;
}

/* The main wrapper for all sticky notes */
#sticky-notes-wrapper {
  left: 0px;
  position: absolute;
  top: 0px;
}

/* Wrapper for an individual sticky note */
div.sticky-notes-note-item-wrapper {
  height: 154px;
  margin: 0px;
  position: absolute;
  padding: 0px;
  width: 154px;
}

/* The priority image */
.sticky-notes-note-item-priority {
  position: absolute;
  top: -12px;
  left: -10px;
  height: 19px;
  overflow: hidden;
}

.sticky-notes-note-item-priority img {
  width: 20px;
}

/* Some elements need to be hidden on page load */
div#sticky-notes-info-box-wrapper .hide-info-box .content,
div#sticky-notes-info-box #sticky-notes-options,
#sticky-notes-wrapper #sticky-notes-options-display-normal,
#sticky-notes-wrapper span.sticky-note-nid,
#sticky-notes-wrapper.hidden {
  display: none;
}

/* An individual sticky note */
div.sticky-notes-note-item {
  background-color: #FDFB8C;
  border:1px solid #DEDC65;
  font-family: "Trebuchet MS", Tahoma, "Myriad Pro", Arial, Verdana,sans-serif;
  font-size: 12px;
  height: 97%;
  margin: 0px;
  overflow: hidden;
  padding: 0px;
  width: 97%;
  /* Adding a CSS3 shadow below the note, in the browsers which support it: */
  -moz-box-shadow: 2px 2px 0 #DDDDDD;
  -webkit-box-shadow: 2px 2px 0 #DDDDDD;
  box-shadow: 2px 2px 0 #DDDDDD;
}

/* draggable objects */
.sticky-notes-enabled .ui-draggable {
  cursor: move;
}

/* The notes body text */
div.sticky-notes-note-item-body {
  font-size: 12px;
  height: 80%;
  line-height: 16px;
  padding: 5px;
}

/* Paragraphs in the notes body*/
div.sticky-notes-note-item-body p {
  margin-top: 0px;
  padding-top: 0px;
}

/* Wrapper for the notes action links */
div.sticky-notes-note-item-actions-wrapper {
  position: relative;
  text-align: right; /* LTR */
}

/* The action links and their different states */
div.sticky-notes-note-item-actions {
  background-color: white;
  border: 1px solid lightgray;
  display: none;
  font-size: 9px;
  margin: 0px;
  overflow: hidden;
  padding: 1px;
  position: absolute;
  right: 0px;
  top: 0px;
}

div.sticky-notes-note-item-wrapper:hover div.sticky-notes-note-item-actions {
  display: inline;
  margin: 0px;
  padding: 0px;
}

div.sticky-notes-note-item-actions a {
  font-size: 9px;
  margin: 0px;
  padding: 0px;
}

/* The author and date information */
div.sticky-notes-note-item-author {
  float: right; /* LTR */
  font-size: 10px;
  text-align: right;
  width: 100%;
  margin-right: 5px;
}

/* The info box */
div#sticky-notes-info-box-wrapper {
  position: relative;
  text-align: left;
}

div#sticky-notes-info-box-wrapper .top_left {
  top: 0px;
  left: 0px;
}

div#sticky-notes-info-box-wrapper .top_right {
  top: 0px;
  right: 0px;
}

div#sticky-notes-info-box-wrapper .bottom_left {
  bottom: 0px;
  left: 0px;
}

div#sticky-notes-info-box-wrapper .bottom_right {
  bottom: 0px;
  right: 0px;
}

div#sticky-notes-info-box {
  min-height: 40px;
  min-width: 60px;
  margin: 0px;
  padding: 0px;
  position: fixed;
  z-index: 6;
}

div#sticky-notes-info-box div {
  display: block;
}

div#sticky-notes-info-box a.disabled,
div#sticky-notes-info-box a.disabled:hover {
  text-decoration: none;
}

div#sticky-notes-info-box-wrapper .content {
  background-color: lightgray;
  margin: 0px;
  padding: 3px 5px;
}

div#sticky-notes-add-note-button a {
  color: black;
  font-family: verdana;
  font-weight: normal;
  font-size: 16px;
  text-decoration: none;
}
