#ImageBox {
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 999;
    height: 100%;
    width: 100%;
    background-image: url(http://sites.google.com/site/juarezlourenco/background.png);
    display: none;
    overflow: auto;
}
.borderwindow {                  /*BORDA DA JANELA*/
    background-color: #fff         /*Raio dos cantos da borda*/
    padding: 5px;               /*Largura da borda*/
}
.container {
    position: relative;
}
#closebutton {                   /*BOTÃO FECHAR*/
    position: absolute;
    top: -10px;                  /*Posição veritical do botão*/
    right: -23px;                /*Posição horizontal do botão*/
}
.content {                       /*JANELA*/
    background-color: #ffffff;   /*Plano de fundo da janela*/
    overflow: hidden;
}
.title {                         /*TÍTULO DA JANELA*/
    background-color: #fff;   /*Plano de fundo*/
    font-family: Arial;          /*Fonte*/
    font-size: 14px;             /*Tamanho da fonte*/
    font-weight: bold;           /*Peso da fonte*/
    color: #ffffff;              /*Cor da fonte*/
    padding: 2px;
    text-align: center;          /*Alinhamento do texto*/
}
.texbox {                        /*TEXTO*/
    background-color: #ffffff;   /*Plano de fundo*/
    font-family: Arial;          /*Fonte*/
    font-size: 12px;             /*Tamanho da fonte*/
    color: #333333;              /*Cor da fonte*/
    padding: 2px;
    text-align: center;          /*Alinhamento do texto*/
}