/* POPUP */
 #popupBackground{
     display: none;
     position: fixed;
     _position: absolute; /* hack for internet explorer 6*/
     height: 100%;
     width: 100%;
     top: 0;
     left: 0;
     background: #D3D3D3;

     filter:alpha(opacity=60);
     -moz-opacity: 0.6;
     opacity: 0.6;

     border: 1px solid #cecece;
     z-index: 1;
 }
 #popup{
     display:none;
     position:fixed;
     _position:absolute; /* hack for internet explorer 6*/
     background:#CFCFCF;
     border:1px solid #8F8F8F;
     z-index:2;
     padding:0;
 }
 #popupHead{
      background-color: #6F6F6F;
      height:20px;
      cursor: pointer;
 }

 #popupTitle{
     cursor: pointer;
     position:absolute;
     font-size:14px;
     color: white;
     font-weight:bold;
     text-align: left;
     height: 20px;
     padding-left: 15px;
 }

 #popupClose{
     cursor: pointer;
     font-size:14px;
     color: white;
     font-weight:bold;
     text-align: right;
     height: 20px;
     width: 10px;
     float: right;
     margin-right:5px;
 }
 #popupClose:hover{
    font-size: 15px;
 }

 #popupContent{
     background: #FFFFFF;
     margin: 10px;
     text-align: left;
     padding:10px;
     font-size: 13px;
 }
