/* Для общего блока всплывающего */
#pop-up-info{
    background:url('/wa-data/public/site/themes/custom/imgpopup/bg-pop-up.png');
    position:absolute;
    width:100%;
    height:100%;
    display:none;
    padding-bottom:20px;
    top:0;
    left:0;
    z-index:3000;
}
/* Для кнопки "Закрыть" */
#close-pop-up{
    width:20px;
    height:20px;
    position:absolute;
    background:url('/wa-data/public/site/themes/custom/imgpopup/close-pop-up.png') 0 0;
    top:-7px;
    right:-7px;
    cursor:pointer;
}
#close-pop-up:hover{
    background-position:0 20px;
}
/* Для блока, содержащего страницу */
#pop-up-content{
    background:#FFF;
    border-radius:0 10px 10px 10px;
    height:auto;
    min-height:200px;
    width:640px;
    position:relative;
    left:-325px;
    margin-left:50%;
    padding:10px 10px 20px 20px;
    border:1px solid #CCC;
    border-top:none;
}
/* Для блока со вкладками */
#pop-up-menu{
    width:650px;
    height:35px;
    position:relative;
    margin:210px 0 0 50%;
    left:-325px;
}
/* Для вкладки */
.pop-up-inset{
    height:28px; 
    width:150px;
    float:left;
    text-align:center;
    border-radius:5px 5px 0 0;
    border:1px solid #FFF;
    font-family:Arial;
    font-size:14px;
    font-weight:bold;
    cursor:pointer;
    padding-top:8px;
    color:#FFF;
    background:#f4ac47 url('/wa-data/public/site/themes/custom/imgpopup/bg-inset.png') repeat-x;
}
/* Для вкладки посередине */
.pop-up-inset.inset-center{
  border-left:none;
  border-right:none;
}
/* Для активного пункта меню */
.pop-up-inset#inset-active{
    height:28px;
    background:#f2a02c url('/wa-data/public/site/themes/custom/imgpopup/bg-inset.png') repeat-x 0 -26px;
}
/* Для изображения "Загрузка" */
#pop-up-loading{
    position:relative;
    height:100px;
    width:100px;
    margin-left:50%;
    left:-50px;
    top:50px;
}
/* Для отображения AJAX ошибок */
#ajax-error{
    color:#333;
    font-family:Arial;
    font-size:12px;
}
/* Для заголовков подгружаемой страницы */
#pop-up-content h1, #pop-up-content h2{
    font-family:Arial;
    font-size:17px;
    color:#333;
    margin:15px 0 10px 0;
}
#pop-up-content h2{
    font-size:15px;
}
/* Для ссылок во всплывающем окне */
#pop-up-content a, #pop-up-content a:visited{
    font-weight:normal;
    line-height:18px;
    font-size:12px;
}