/* Default class for an overlay */
.ow-overlay {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;

  background: #424242;
  opacity: 0.8;
}

/* Default class for both hidden overlay and modal window */
.ow-closed {
  display: none;
}

/* Default class for modal window */
.ow-modal {
  position: fixed;
  z-index: 200;
  left: 50%;
  top: 50px;
  width: 850px;
  height: 650px;

  background-color: #fff;
}

.ow-iframe {
    background-image: url("/primo_library/libweb/images/spinner.gif");   
    background-repeat: no-repeat;
    background-position: 50% 50%;
}

.ow-close-button {
/*    float: right;*/
	font-family: tahoma;
    font-size: 12pt;
    font-weight: bold;
    padding-right: 2px;
    position: absolute;
    right: -20px
}

a.ow-close-button:link , a.ow-close-button:hover, a.ow-close-button:visited{
	color: #fff;
	text-decoration: none !important;
}

