/* -------------------------------------------------- */
/*	Default Styles
/* -------------------------------------------------- */
#pn_advanced_wp_popup_mdf{
    height: 1;
    position: absolute;
    z-index:10001;
}


.pn_advanced_wp_popup_li input.data-upload { width: 80.7%; }

/* Headings */

.pn_advanced_wp_popup_li h6,
.pn_advanced_wp_popup_li h4 { 
    margin: 0 0 5px 0;
    font-family: Verdana;
    font-size: 13px;
}

.pn_advanced_wp_popup_li input[type="text"][disabled] {
    box-shadow: none !important;
}


/* ---------------------------------------------------------------------- */
/*	Popup
/* ---------------------------------------------------------------------- */

.pn_advanced_wp_popup_li {
    position: fixed;
    top: 15%;
    left: 50%;
    z-index: 1001;
    display: none;
    overflow: hidden;
    overflow-y: auto;
    margin-left: -400px;
    padding: 3px;
    width: 400px;
    max-height: 80%;
    background-color: #eee;
    border: 1px solid #ddd;
    color: #333;
    font-family: Trebuchet MS,Tahoma,Verdana,Arial,sans-serif;
    font-size: 1.1em;

    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

/* -------------------------------------------------- */
/*	Title Bar
/* -------------------------------------------------- */

.pn_titlebar {
    position: relative;
    padding: 8px 13px;
    background-color: #f6a828;
    border: 1px solid #e78f08;
    color: #fff;
    font-weight: bold;
    cursor: move;

    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.pn_titlebar h6 { 
    margin: 0;
    color:#fff !important;
}

/* -------------------------------------------------- */
/*	Form Style
/* -------------------------------------------------- */

.pn_advanced_wp_popup_li .radio-holder { margin-bottom: 15px; }




/* -------------------------------------------------- */
/*	Content
/* -------------------------------------------------- */

.advanced_wp_popup_content { padding: 13px; overflow: hidden;}

.pn_item { margin-bottom: 10px; }

/* -------------------------------------------------- */
/*	Buttons
/* -------------------------------------------------- */	

.advanced_wp_popup_buttons {
    padding: 8px 13px;
    border-top: 1px solid #cacaca;
    text-align: right;

    -webkit-box-shadow: inset 0 1px 0 0 #fff;
    box-shadow: inset 0 1px 0 0 #fff;
}

.pn_button {
    display: inline-block;
    margin: 3px 2px;
    padding: 2px 14px 3px;
    color: #fff;
    font-weight: 600;
    border: 1px solid #d08e00;
    text-shadow: -1px -1px 0 #ed9300;
    text-decoration: none;
    outline: none;
    text-align: center;

    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;		
    -webkit-box-shadow: inset 0 1px 0 #f7cc40;
    -moz-box-shadow: inset 0 1px 0 #f7cc40;
    box-shadow: inset 0 1px 0 #f7cc40;
}

/* Gradient Button */

.pn_button {
    background: #f4bb00; /* Old browsers */
    background: -moz-linear-gradient(top, #f4bb00 0%, #f0a700 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f4bb00), color-stop(100%,#f0a700)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #f4bb00 0%,#f0a700 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #f4bb00 0%,#f0a700 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #f4bb00 0%,#f0a700 100%); /* IE10+ */
    background: linear-gradient(to bottom, #f4bb00 0%,#f0a700 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f4bb00', endColorstr='#f0a700',GradientType=0 ); /* IE6-9 */
    color:#fff !important;
}

.pn_button:hover {
    color: #fff;

    -webkit-box-shadow: 0 0 3px 2px rgba(0,0,0,.15);
    -moz-box-shadow: 0 0 3px 2px rgba(0,0,0,.15);
    box-shadow: 0 0 3px 2px rgba(0,0,0,.15);
}

/* -------------------------------------------------- */
/*	Overlay
/* -------------------------------------------------- */	

#advanced_wp_popup_overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    display: none;
    width: 100%;
    height: 100%;
    background-color: #000;
    background-color: rgba(0,0,0,.6);
}

/* -------------------------------------------------- */
/*	Close Button
/* -------------------------------------------------- */

.pn_titlebar .pn_ig_wp_popup_close_mdf {
    position: absolute;
    top: 7px;
    right: 7px;
    overflow: hidden;
    padding: 2px;
    width: 16px;
    height: 16px;
    background-color: #fff;
    background-image: url(images/close.png);
    background-position: 0 0;
    background-repeat: no-repeat;

    -webkit-border-radius: 3px;
    border-radius: 3px;
}

.pn_titlebar .pn_ig_wp_popup_close_mdf:hover { background-position: 0 bottom; }

