﻿    #bg-popup
    {
    	display:none;
    	position:fixed;
    	top:0px;
    	left:0px;
    	width:100%;
    	height:100%;
    	min-height:100%;
    	max-height:100%;
    	background:#000000;
    	opacity:0.4;
        filter:alpha(opacity=40); /* For IE8 and earlier */
        z-index:998;
    }
    #popup
    {
    	display:none;
    	position:fixed;
    	background:#ffffff;
    	z-index:999;
    	width:400px;
    	border:1px solid #c3c3c3;
    	box-shadow: 5px 5px 5px #888888;
    	border-radius:10px;
    	-moz-border-radius:10px;
    	-webkit-border-radius:10px;
    	top:120px;
    }
    #popup h1.title
    {
    	background:#c0c0c0;
    	border-top-left-radius:8px;
    	-moz-border-top-left-radius:8px;
    	-webkit-border-top-left-radius:8px;
    	border-top-right-radius:8px;
    	-moz-border-top-right-radius:8px;
    	-webkit-border-top-right-radius:8px;
    	padding:3px 10px;
    	font-size:20px
    }
    #close-popup
    {
    	display:block;
    	width:34px;
    	height:34px;
    	min-width:34px;
    	min-height:34px;
    	max-width:34px;
    	max-height:34px;
    	background: url('close-icon.png') no-repeat top left;
    	position:absolute;
    	top:-15px;
    	right:-15px;
    }
    #popup-content
    {
    	margin:10px;
    }