/*********************************************************
                ABOUT: graphic.css
**********************************************************/
  /* This stylesheet is used to assign styles to all graphic elements except for:
- menu.css, which is used to structure and style menus
- form.css, which is used to structure and style forms
- layout.css, which is used to structure and style the physical page layout */

/*********************************************************
                GENERAL TEXT STYLING
**********************************************************/

/* sub-lists in the UI translation list */
.translationList ul {
  padding: 0;
  margin: 0 0 10px 20px;
}

/* Giving hovered-over anchors a solid background does not play nice with YUI's
 * menu because YUI does not override our hovered-over anchor style.  Instead
 * it styles a .yuimenuitem-selected class.  So make an exception for YUI menu
 * items.  Ideally we would make an exception in the above selector, but CSS
 * does not support a "parent" selector.  See discussion on css-discuss list. */
.yuimenuitem a:hover {
  background: transparent;
}

/*disabled element*/
.disabled {
  background-color: #CCC;
  color: #666;
}

button.delete-small {
  background: transparent url('../images/delete.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: scroll;
  width: 16px;
  height: 16px;
  border: none;
  vertical-align: top;
  cursor: pointer;
}

/*********************************************************
              NOTE SPAN
**********************************************************/
span.note {
  font-size: 9px;
  font-style: italic;
  margin-left: 10px;
}

span.note2 {
  color: #999;
}

/*********************************************************
               TABLE FILTER
**********************************************************/

div.table-control {
  border: 1px #aaa solid;
  margin: 3px 0px;
  padding: 3px 10px;
  background: #eee;
}

/*********************************************************
             DIGITAL OBJECT THUMBS
**********************************************************/
.digitalobject.browse #content tbody
{
  background: #eee;
  border: 1px solid #000;
}

div.digitalObject {
  float: left;
  margin: 5px;
  padding: 5px;
  height: auto;
  width: 102px;
  text-align: center;
  color: black;
  display: table-cell;
  background-color: #eee;
}

div.digitalObjectRep {
  height: 102px;
  width: 102px;
  vertical-align: middle;
  text-align: center;
  background-color: white;
  border: 1px black solid;
  display: table-cell;
}

.digitalObjectDesc {
  height: auto;
}

div.digitalObjectDesc img {
  float: right;
}

/*********************************************************
             PAGER
**********************************************************/
.result-count {
  text-align: center;
  color: #999999;
  margin-top: 10px;
}

/* Style modifications for compound digital object pager */
.pager.compound_digiobj {
  margin-top: 0;
}

.result-count.compound_digiobj {
  margin: 0 0 5px 0;
}

/* Modifications to pager for display in context menus */
.contextMenu .pager
{
  border-top: 1px dotted #999;
  margin: 0;
  padding: 10px 2px;
  font-size: 10px;
}

/*********************************************************
             COMPOUND DIGITAL OBJECT TABLE
**********************************************************/

table.compound_digiobj {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0px;
}

table.compound_digiobj td {
  border: 1px solid black;
  width: 50%;
  padding: 0;
  vertical-align: middle;
  text-align: center;
  background: #666;
}

table.compound_digiobj td.download_link {
  border: none;
  background: white;
  padding: 2px;
}

/*********************************************************
             LOGOS
**********************************************************/

#footer a
{
  bottom: 1em;
  position: fixed;
  right: 1em;
}

/*********************************************************
             MULTIUPLOADER
  TODO: Apply default markup, .section, h3, etc...
**********************************************************/

div.multiFileUploadItem {
  border: 1px solid #bbb;
  padding: 2px;
  margin: 2px 2px 12px 2px;
  overflow: auto;
}

div.multiFileUploadWarning {
  color: #222200;
  background-color: #FFFFDD;
}

div.multiFileUploadWarning p {
  margin: 5px 8px;
}

div.multiFileUploadThumbItem {
  float: left;
  margin: 5px;
  padding: 5px;
  height: auto;
  text-align: center;
  display: table-cell;
  background-color: #eee;
}

div.multiFileUploadInfo {
  float: left;
  margin: 0 0 0 5px;
  height: auto;
}

div.multiFileUploadInfo .title {
  font-weight: bold;
  margin: 0 4px 0 0;
}

div.multiFileUploadInfoActions a {
  margin-right: 6px;
}


/*********************************************************
             CHECK FOR UPDATES
**********************************************************/

#update-check
{
  display: none;

  background-color: #def;

  padding: 4px 8px;
  margin: 8px 10px 0 0;

  border-radius: .5em;
  -moz-border-radius: .5em;
  -webkit-border-radius: .5em;

  position: absolute;
  right: 0;
}

#update-check span
{
  background: transparent url('../images/bell_error.png');
  background-repeat: no-repeat;
  background-position: left center;

  padding: 0 0 0 20px;

  font-weight: bold;
}
