@charset "UTF-8";
/* CSS Document */

#framePopUp {
    background-color:black;
    display: none;
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1;
}

#inPopUp {
    display: none;
    left: 50%;
    position: absolute;
    top: 50%;
    z-index: 90;
	background-color:white;
	overflow: hidden;
}

html > body #inPopUp {
    position: fixed;
}

a#spmCloseButton{
    display: block;
    width: 34px;
    height: 34px;
    top:-17px;
    right:-17px;
    position: absolute;
    z-index: 100;
    background: url(images/spm-close-icon.png) top left no-repeat transparent;
    outline: none;
    border: none;
    text-decoration: none;
}