/*** formatting for the IE warning dialog */
#dialogOuterWrapper
{
    position: fixed;
    left: 0px;
    right: 0px;
    width: 100vw;
    height: 100vw;
    background-color: rgba( 0, 0, 0, 0.5 );
    z-index: 1000;
}

#dialogInnerWrapper
{
    position: absolute;
    width: 720px;
    max-width: 80vw;
    left: 50%;
    top: 20vh;
    transform: translate( -50%, 0 );
    padding-left: 60px;
    padding-right: 60px;
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: #FFF;
    border-radius: 10px;
}

#dialogHeader
{
    margin-bottom: 40px;
    text-align: right;
}

#dialogInnerWrapper h3
{
    margin-bottom: 20px;
    font-weight: 900;
    text-transform: uppercase;
    color: #3E3E3E;
}

#dialogInnerWrapper #buttonWrapper
{
    height: 30px;
    margin-top: 35px;
}

button.msgButton
{
    display: block;
    float: left;
    width: 240px;
    max-width: 49%;
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: #FFF;
    color: #003665;
    text-align: center;
    border: 1px #3E3E3E solid;
    cursor: pointer;
}

button#rightMsgButton
{
    float: right;
    background-color: #003665;
    color: #FFF;
    border-color: #003665;
}
