/* styles needed for interstitial structure */
.interstitialOverlay {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1000;
    background-color: #000;
    text-align: center;
    width: 100%;
    height: 100%;
}
.interstitialContainer {
    overflow: hidden;
    position: fixed;
    z-index: 1001;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 80%;
    height: 40%;
    border-radius: 0;
    border: none;
    background: white;
    padding: 20px;
    font-size: 15px;
    line-height: 18px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-user-select: none;
    -webkit-touch-callout: none;
}
.lt-ie8 .interstitialContainer {
    width: 574px;
    height: 238px;
}
.interstitialContainer nav{text-align:center;line-height:30px;margin-top:60px;}
.interstitialContainer .continue,.interstitialContainer .cancel{display: inline-block;width:150px;padding:7px 0 7px;text-align:center;text-decoration:none;font-weight:700;font-size:16px;line-height:1;color:white}
.interstitialContainer .continue{background-color:#333;}
.interstitialContainer .cancel{background:#666666;}