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


.basenewsimagecontainerdiv {
  position: absolute;
  margin: 5px 5px 5px 5px;
}

/* This must be the same as "basenewsimagecontainerdiv", but without "position: absolute" */
.basenewsimagespacerdiv {
  margin: 5px 5px 5px 5px;
}

.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
{
  .basenewsimagecontainerdiv {
    position: static;
    margin: 5px 5px 5px 5px;
  }

  .basenewsimagespacerdiv {
    display: none;
  }

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

  .basenewsprinthide {
    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; */
  }
}
