        /* Start Modal Popup */
        .modal {
            position: fixed;
            left: 0;
            right: 0;
            top: 0;
            bottom: 0;
            height: 100%;
            width: 100%;
            padding: 15px;
//            background: transparent url(modal-bg.png) repeat left top;
 //           background: rgba(0,0,0,.65);
            -ms-box-orient: horizontal;
            display: -moz-box;
            display: -webkit-box;
            display: -webkit-flex;
            display: flex;
            -webkit-box-align: center;
            -moz-box-align: center;
            -ms-flex-align: center;
            -webkit-align-items: center;
            align-items: center;
            -webkit-box-pack: distribute;
            -moz-box-pack: distribute;
            -ms-flex-pack: distribute;
            -webkit-justify-content: space-around;
            justify-content: space-around;
            z-index: 8040;
            -webkit-box-sizing: border-box;
            -moz-box-sizing: border-box;
            box-sizing: border-box;
        }

        .modal--iframe-wrapper {
            position: relative;
            width: 540px;
            max-width: 100%;
            max-height: 100%;
            -webkit-box-shadow: 0 10px 25px rgba(0,0,0,.5);
            -moz-box-shadow: 0 10px 25px rgba(0,0,0,.5);
            box-shadow: 0 10px 25px rgba(0,0,0,.5);
            border: 1em solid #fff;
            -webkit-border-radius: .25em;
            -moz-border-radius: .25em;
            border-radius: .25em;
            background-clip: padding-box;
            -webkit-box-sizing: border-box;
            -moz-box-sizing: border-box;
            box-sizing: border-box;
        }

        .modal--iframe {
            width: 100%;
            height: 100%;
            -webkit-box-sizing: border-box;
            -moz-box-sizing: border-box;
            box-sizing: border-box;
        }

        .modal-close {
            display: block;
            position: absolute;
            top: -32px;
            right: -32px;
            width: 36px;
            height: 36px;
            cursor: pointer;
            background: url(close-x.png) no-repeat left top;
            z-index: 10;
            -webkit-box-sizing: border-box;
            -moz-box-sizing: border-box;
            box-sizing: border-box;
        }

        .no-flexbox.no-flexboxlegacy .modal--iframe-wrapper {
            position: absolute;
            left: 50%;
            top: 50%;
            -webkit-transform: translate(-50%,-50%);
            -moz-transform: translate(-50%,-50%);
            -ms-transform: translate(-50%,-50%);
            -o-transform: translate(-50%,-50%);
            transform: translate(-50%,-50%);
        }

        #signupForm {
            padding: .6em;
            background: #fff;
            font-family: arial,lucinda,verdana,geneva,sans-serif;
            text-align: center;
        }

        .headerlink {
            color: #000;
            font-family: arial,lucinda,verdana,geneva,sans-serif;
            font-size: 14pt;
            font-weight: 700;
            text-decoration: underline;
        }

            .headerlink:active, .headerlink:focus, .headerlink:hover, .headerlink:visited {
                color: #000;
                font-family: arial,lucinda,verdana,geneva,sans-serif;
                text-decoration: underline;
            }

        .signupForm--description {
            margin: 1em 0;
            font-size: 13pt;
            line-height: 1.1;
        }

        .signupForm--email {
            margin-bottom: 1em;
        }

        #txtEmail {
            font-size: 13pt;
            text-align: center;
            width: 100%;
            max-width: 250px;
            margin: 2px 0;
            padding: 7px 4px 5px;
            border: 1px solid #e3e3e3;
            border-radius: 5px;
            background-color: #EFEFEF;
            box-shadow: inset 2px 2px 0 #888;
            font-family: arial,lucinda,verdana,geneva,sans-serif;
        }

            #txtEmail:focus {
                border: 1px solid #e3e3e3;
                background-color: #FFF;
                color: #333;
                outline-color: -webkit-focus-ring-color;
                box-shadow: inset 2px 2px 0 #888;
            }

        #btnSubscribe {
            display: inline-block;
            outline: 0;
            cursor: pointer;
            height: 50px;
            width: 100%;
            max-width: 400px;
            border: solid 1px #333;
            background: #000;
            background: -webkit-gradient(linear,left top,left bottom,from(#666),to(#000));
            background: -moz-linear-gradient(top,#666,#000);
            filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#666666', endColorstr='#000000');
            color: #FFF;
            font-size: 15pt;
            font-family: arial,lucinda,verdana,geneva,sans-serif;
        }

        #ShowSuggestionPopup {
            margin-top: 5px;
        }
        /* End Mobile Popup*/

input[type=submit]
{
width: 100%;
}