#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color:rgba(0,0,0,0.5);
    z-index: 100;
    display: none;
}
.content a{
    text-decoration: none;
}
.popup{
    display:block;
    width: 100%;
    margin:50px auto;
    display: none;
    position: fixed;
    z-index: 101;
}

.content{
    min-width: 600px;
    width:70%;
    min-height: 150px;
    max-height:500px;
    overflow:auto;
    margin: 10px auto;
    background: #f3f3f3;
    position: relative;
    z-index: 103;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 5px #000;
}
.content p{
    clear: both;
    color: #555555;
    text-align: justify;
}
.content p a{
    color: #d91900;
    font-weight: bold;
}

#popup #popup-close{
    position:absolute;
    top:0;
    right:0;
    display:inline-block;
    text-align:left;
    width:32px;
    height:32px;
    margin-top:6px;
    margin-right:10px;
    font-size:14px;
    background:url('../images/close.png') no-repeat right center;
cursor:pointer;
}