  
.popupCover{ position:fixed; 
             top:0; 
             left:0; 
             background:rgba(0,0,0,0.6); 
             z-index:5; 
             width:100%; 
             height:100%; 
             display:none; 
             opacity:2; 
             cursor:pointer;
           } 

.popupScreen { width:90%; 
               height:100%; 
               display:table;
               padding:10px;
               position:relative; 
               margin:0 auto; 
               z-index:10; 
               background:white;
               border:5px solid #cccccc; 
               border-radius:10px; 
             } 

.popupContent { display: table-cell;
                vertical-align: middle;
              }

.popupCancel { display:block; 
               position:absolute; 
               cursor:pointer;
               top:5px; 
               right:4px; 
               border:3px solid #666666; 
               border-radius:5px; 
               background: white;
               color:#666666; 
               height:30px; 
               width:35px; 
               font-size:30px; 
               text-decoration:none; 
               text-align:center; 
               font-weight:bold; 
             } 

.fullScreen { width:100%;
              height:100%;
              bottom:0;
              left:0;
              margin:auto;
              overflow:auto;
              position:fixed;
              right:0;
              top:0;
              cursor:pointer;
              display:none;
            }
