// online documentation feature
i.documentation {
  font-size: 1.8em;
  color: #1caecb;
  cursor: pointer;
  position:relative;
  top: 3px;
  &.up {
    top: -3px;
  }
  &.down {
    top: 10px;
  }
} // question

.update-nag {
  //make sure that we don't let the nag push down the header, better if it overlaps
  position: absolute;
  margin-top: 0;
}


div.spio-modal-shade {
  //  display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 10; /* Sit on top - zindex wars  */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}
div.spio-modal {
    background-color: #fefefe;
    /*margin: 8% auto;  15% from the top and centered */
		background-image: url("../img/spinner2.gif");
    background-repeat: no-repeat;
    background-position: center;

    padding: 20px 16px 6px 16px;
    border: 1px solid #888;
    width: 40%; /* Could be more or less, depending on screen size */
    max-width: 100%;
    min-width: 300px; /* Could be more or less, depending on screen size */
    z-index: 100; /* Proper z-index */
    position: fixed;
    top: 10%;
    left: 30%;
    height: 60%;
    max-height: 90%;

    overflow-y: auto;
    iframe {
        width: 100%;
        height: 625px;
        background-color: #fff;
    }
		.spio-close-help-button {
			 position:absolute;
			 top:5px;
			 right:0;
			 margin-top: 0px;
			 background: transparent;
			 border: none;
			 font-size: 22px;
			 line-height: 10px;
			 cursor: pointer;
	 }

}


div.spio-modal-title {
    font-size: 22px;
}
.spio-hide { display: none; }
