/*
	CSS Stylesheet for IE Alert! plugin.
*/


/*

	Overlay Background

*/

#ie-alert-overlay {
    width: 100%;
    height: 100%;
    background-image: url(images/bg.png);
    background-repeat: repeat;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}

* html #ie-alert-overlay { /* fixed position hack for IE6 */
    position: absolute;
    z-index: 9999;
}

#js {
    position: fixed;
    z-index: 10001;
    width: 65%;
    top: 48%;
    left: 32%;
    margin: -201px 0 0 -296px;
    padding: 22px 22px 22px 22px;
    border: 2px solid #434040;
    background-color: white;
    border-radius: 8px;
    text-align: center;
}

#cancel {
    text-align: right;
    float: right;
    width: 100px;
    color: red;
    cursor:pointer;
}

#js h1 {
    font-size: 20pt;
    font-weight: bold;
    margin-bottom: 20px;
}
/*

	Pop Up Panel

*/
#ie-alert-panel {
    width: 520px;
    height: 350px;
    position: fixed;
    background: url(images/iealertsprite.png) no-repeat;
    background-position: -1px -109px;
    top: 50%;
    left: 50%;
    margin: -201px 0 0 -296px;
    padding: 72px 0 0 72px;
    _position: absolute; /* fixed position hack for IE6 */
    _top: expression(300+((e=document.documentElement.scrollTop)?e:document.body.scrollTop)+'px'); /* top:300px hack for IE6 */
    /* font settings */
    color: #333;
    line-height: 2.5em;
    z-index: 10000;
}

    #ie-alert-panel p {
        font-size: 14px;
        width: 486px;
        text-align: justify;
        font-family: "Microsoft YaHei";
    }

    #ie-alert-panel img {
        border: 0;
    }


    #ie-alert-panel span {
        font-size: 18px;
        margin: 0 0 20px 0;
        display: block;
        padding: 0;
        font-family: "Microsoft YaHei";
        font-weight: bold;
    }

    #ie-alert-panel ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    #ie-alert-panel li {
        text-align: center;
        margin: 0 22px 0 0;
    }

        #ie-alert-panel li.last {
            margin-right: 0;
        }


    #ie-alert-panel a {
        display: inline-block;
    }

.browser {
    position: absolute;
    left: 45%;
    top: 205px;
}

.chrome, .firefox, .ie9, .opera, .safari {
    background: url(images/iealertsprite.png) no-repeat;
}

/*

	browsers

*/


.chrome {
    background-position: 0 0;
    width: 73px;
    height: 96px;
    margin: 0 4px 0 0;
}

.firefox {
    background-position: -292px 0;
    width: 73px;
    height: 98px;
}

.ie9 {
    background-position: -179px 0;
    width: 95px;
    height: 98px;
}

.opera {
    background-position: -90px 0;
    width: 73px;
    height: 98px;
}

.safari {
    background-position: -387px 0;
    width: 73px;
    height: 98px;
    margin: 0 4px 0 0;
}
