/* 
    Document   : popBox
    Created on : 2013.01.28., 00:40:10
    Author     : Dimiona
*/
.popbox{
    display:none;
}
#popbox-wrapper{
    position: fixed;
    top:0;
    left:0;
	right:0;
	bottom:0;
    margin-left: 0;
    z-index: 99990;
    opacity: 0;
	background: none;
    background: rgba(0,0,0,1);
	*background: none;
    filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src="images/ie7_dark.png", sizingMethod="scale") alpha(opacity=100);
}
.ie8 #popbox-wrapper {
    background: transparent;
}
#popbox-container{
    display: block;
    position: absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
    z-index: 99995;
    opacity: 0;
    /*overflow: hidden;*/
    margin: auto;
    width: 440px;
    /*height: 440px;*/
}
.popbox-border{
    position: fixed;
    top: 50%;
    margin-top: -223px;
    left: 50%;
    margin-left: -223px;
    opacity: 1;
    background: transparent;
    padding: 20px;
    /*overflow-y: scroll;*/
    width: 406px;
    /*height: 406px;*/
    background: #FFF;
    border-radius: 5px 5px;
    -o-border-radius: 5px 5px;
    -moz-border-radius: 5px 5px;
    -webkit-border-radius: 5px 5px;
    -ms-border-radius: 5px 5px;

    
    box-shadow: 0 0 18px rgba(0,0,0,0.4);
    -o-box-shadow: 0 0 18px rgba(0,0,0,0.4);
    -moz-box-shadow: 0 0 18px rgba(0,0,0,0.4);
    -webkit-box-shadow: 0 0 18px rgba(0,0,0,0.4);
    -ms-box-shadow: 0 0 18px rgba(0,0,0,0.4);
}
#popbox-content{
    position: fixed;
    top: 50%;
    margin-top: -220px;
    left: 50%;
    margin-left: -220px;
    opacity: 1;
    
    padding: 20px;
    /*overflow-y: scroll;*/
    width: 406px;
    /* height: 400px; */
	
    border-radius: 5px 5px;
    -o-border-radius: 5px 5px;
    -moz-border-radius: 5px 5px;
    -webkit-border-radius: 5px 5px;
    -ms-border-radius: 5px 5px;
    
}
#popbox-content center{
    width: 580px;
    height: 45%;
}
#popbox-close{
    background: url('../images/popup_close_button.png') top left;
    position: absolute;
    top: -10px;
    right: -10px;
    width: 38px;
    height: 38px;
    z-index: 99999;
}
#popbox-close:hover {
    background-position: bottom left;
}
#popbox-loader{
    background: url('../images/popbox-loader.gif') no-repeat 50% 50%;
    background-color: transparent;
    display: none;
    width: 50px;
    height: 50px;
    position: fixed;
    top: 50%;
    left: 50%;
    margin-top: -25px;
    margin-left: -25px;
    z-index: 10000000;
    border-radius: 10px 10px;
}