/*for glossary*/
.common_popup{
    position: absolute;
    top:0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;


    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);

    -webkit-backface-visibility: visible !important;
    -moz-backface-visibility: visible !important;
    -o-backface-visibility: visible !important;
    backface-visibility: visible !important;

    -webkit-animation: scaleUp .3s;
    -moz-animation: scaleUp .3s;
    -o-animation: scaleUp .3s;
    animation: scaleUp .3s;

    overflow: hidden;
}
#popup_view {
   background:#ccc;
}

#popup_content{
 position: absolute;
  width: 400px;
  height: 182px;
  background-color: #fff;
  overflow: visible;
  /* padding: 20px; */
  border: 1px solid #999;
  top: 50%;
  left: 50%;
  margin: -91px 0 0 -200px;

}
#popup_title{
  position: absolute;
  width: 100%;
  left: 0px;
  top: 60px;
  text-align: center;
  font-weight: bold;
  
}
#popup_close {
  position: absolute;
  width: 17px;
  height: 19px;
  right: 22px;
  top: 24px;
  background: url(../images/exitbtn.png) no-repeat;
 
  cursor: pointer;
  
}
.common-popup > h2 {
  color: #034da2;
  font-family: helvetica;
  font-weight: bold;
  font-size: 14pt;
  padding: 8px 12px;
  position: relative;
  top: 15px;
  width: 300px;
}



#popup_button_container{
  position: relative;
  width: 220px;
  margin: 0 auto;
  top:125px;
}

.popup_button{
  position:relative;
  width:80px;
  height:25px;
  background:#0089c4;
  color:#fff;
  text-align:center;
  float:left;
  margin-left:20px;
  line-height:25px;
  cursor:pointer;
}
.popup_button:hover {
  background-color: #0073b4;
}

#popup_screen {
  width: 890px;
  height: 490px;
  top: 115px;
  background-color: #fff;
  box-shadow: 3px 3px 10px 3px #999;
  overflow: visible;
}

#popup_screen_content {
  position:relative;
  width:100%;
  height:100%;  
}

#popup_screen_content #popup_top_bar{
  position:relative;
  width: 870px;
  height: 40px;
  border-bottom: 1px solid #0175b0;
  margin: 0 auto;
}

#popup_screen_content #popup_num_text{
  display: none;
  font-size: 30px;    font-family: "shaw-bold";    color: #0175b0;
}

#popup_screen_content #popup_title_text{
  display:inline-block;
  font-size: 18px;    
  font-family: "shaw-regular";    
  margin-left: 5px;
  top: 10px;
  position: absolute;
}

#popup_screen_content #popup_close_button{
  position:absolute;
  width:23px;
  height:22px;
  right:0px;
   background: url(../images/popup_close.png) no-repeat;
  top: 10px;
  cursor:pointer;
}

#popup_screen_content #popup_content_data{
    position: relative;
    height: 435px;
    width: 870px;
    margin: 0 auto;
    margin-top: 2px;
    overflow:hidden;
}

#popup_screen_content #popup_image{
    width: 100%;
    height: 100%;
    position: absolute;
    background-repeat: no-repeat;
}

#popup_screen_content #popup_text_area{
    position: absolute;
    color: #fff;
    font-size: 20px;
    font-family: "shaw-regular";
   height: auto;
}

#popup_screen_overlay{
  position: absolute;
    background:#fff;
  top: 0px;
  right: 0px;
  left: 0px;
  bottom: 0px;
  margin: auto;
}
#popup_screen_overlay_bg{
  position: absolute;
  background:rgba(0,0,0,0.3);
  top: 0px;
  left: 0px;
  width:100%;
  height:100%;
}
