/* 
    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=70);
}
.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: 660px;
    height: 440px;
}
.popbox-border{
    position: fixed;
    top: 50%;
    margin-top: -223px;
    left: 50%;
    margin-left: -333px;
    opacity: 1;
    background: transparent;
    padding: 20px;
    /*overflow-y: scroll;*/
    width: 626px;
    height: 406px;
    
    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: -330px;
    opacity: 1;
    background: #FFF;
    padding: 20px;
    /*overflow-y: scroll;*/
    width: 620px;
    height: 400px;
	
    border-radius: 4px 4px;
    -o-border-radius: 4px 4px;
    -moz-border-radius: 4px 4px;
    -webkit-border-radius: 4px 4px;
    -ms-border-radius: 4px 4px;

    /*
    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 center{
    width: 580px;
    height: 45%;
}
#popbox-close{
    background: url('/images/close.png');
    position: absolute;
    top: 20px;
    right: 20px;
    color: #333;
    width: 16px;
    height: 16px;
    line-height: 24px;
    z-index: 99999;
	/*background: #FFF;*/
	text-align: center;
	/*border: 2px solid #333;*/
	font-size: 22px;
	font-family: 'Segoe UI','Trebuchet ms',Arial,Helvetica,Verdana,sans-serif;
	
    /*border-radius: 1000px 1000px;
    -o-border-radius: 1000px 1000px;
    -moz-border-radius: 1000px 1000px;
    -webkit-border-radius: 1000px 1000px;
    -ms-border-radius: 1000px 1000px;*/
}
#popbox-close:hover { opacity: 0.5; }
#popbox-loader{
    background: url('../images/popbox-loader.gif') no-repeat 50% 50%;
    background-color: rgba(0,0,0,0.8);
    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;
}