/** This CSS file contains style definitions that apply to any basepages installation, no matter what the look and feel is */


.basepagesimagecontainerdiv {
  position: absolute;
  margin: 0px 0px 0px 0px;
}

/* This must be the same as "basepagesimagecontainerdiv", but without "position: absolute" */
.basepagesimagespacerdiv {
  margin: 0px 0px 0px 0px;
}

.highlight {
  position: absolute;
  background-color: #FFFF77;
  -moz-opacity: 0.5;
  opacity: 0.5;
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
}


/* CSS changes for printing */
@media print
{
  .basepagesimagecontainerdiv {
    position: static;
    margin: 5px 5px 5px 5px;
  }

  .basepagesimagespacerdiv {
    display: none;
  }

  .basepagesimage {
    float: left;
    position: relative;
  }

  .basepagesprinthide {
    display: none;
  }

  .highlight {
    display: none;

    /* Use a black outline around query terms instead of semi-transparent highlighting
       Sadly this doesn't work on IE: the divs become white boxes covering the text!
      position: absolute;
      background-color: transparent;
      border: 1px solid black;
      margin: 0px 0px 0px 0px;
      padding: 0px 0px 0px 0px; */
  }
}

