/* LeaveNotice - plugin to notify users when leaving your site                     */
/* Examples and documentation at: http://rewdy.com/tools/leavenotice-jquery-plugin */
/* ------------------------------------------------------------------------------- */
/* Modified for First News                                                         */

/* The style for the blackout div that appears when the exit dialog is shown. */
#ln-blackout {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  z-index: 1010;
}

/* This style is for a container that holds the message dialog box. */
#ln-messageHolder {
  position: fixed;
  /*top: 80px;*/
  bottom: 20px;
  left: 0;
  width: 100%;
  z-index: 1015;
}

/* This style is for the div that holds the actual exit dialog. */
#ln-messageBox {
  width: 95%;
  margin: 0 auto;
  min-height: 200px;
  background-color: #fff;
  border: 10px solid #e6e6e6;
  text-align: center;
  padding: 20px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}

/* This style is for the box that holds the section that says where the user is being directed to. */
#ln-messageBox .ln-setoff {
  background-color: #f2f2f2;
  padding: 5px;
  margin: 10px 0 20px 0;
}
#ln-messageBox .ln-setoff p {
  margin-bottom: 0;
}
#ln-messageBox #ln-cancelMessage {
  margin-bottom: 0;
}

/* This style is applied to the link that closes the dialog. */
#ln-messageBox a#ln-cancelLink, #ln-messageBox a#ln-goLink {
  display: block;
  width: 100%;
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
  font-weight: bold;
  padding: 12px 20px;
  padding: 0.75rem 1.25rem;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 16px;
  font-size: 1rem;
  color: #ffffff;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.25);
}
#ln-messageBox a#ln-cancelLink:hover, #ln-messageBox a#ln-goLink:hover {
  color: #ffffff;
}
#ln-messageBox a#ln-cancelLink {
  border-bottom: 4px solid #b50e02;
  background: #f42417;
}
#ln-messageBox a#ln-cancelLink:hover {
  background: #f94943;
}
#ln-messageBox a#ln-goLink {
  border-bottom: 4px solid #1e6e3a;
  background: #47b64e;
}
#ln-messageBox a#ln-goLink:hover {
  background: #7cc24b;
}

@media only screen and (min-width: 62em) {
  /*
  #ln-messageHolder {
    top: 150px;
  }
  */
  #ln-messageBox {
    width: 550px;
  }
  #ln-messageBox a#ln-cancelLink, #ln-messageBox a#ln-goLink {
    display: inline-block;
    width: auto;
    margin-left: 8px;
    margin-left: 0.5rem;
    margin-right: 8px;
    margin-right: 0.5rem;
  }
}

/*
@media only screen and (min-width: 75em) {
  #ln-messageHolder {
    top: 200px;
  }
}
*/
