

/* gestion pop up modal */
.modalPage
{
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px; left: 0px;
}
.modalBackground
{
    /*
		filter: Alpha(Opacity=40); -moz-opacity:0.4; opacity: 0.4;
    width: 100%; height: 100%; background-color: #000000;
    position: absolute;
    z-index: 500;
    top: 0px; left: 0px;*/
}
.modalContainer
{
    position: absolute;
    width: 480px;
    left: 50%;
    top: 50%;
    z-index: 9999;
}
.modal
{
    background-color: #E6E6E6;
    border: solid 4px black; position: relative;
    top: -200px;
    left: -240px;
    z-index: 1000;
    width: 480px;
    height: 360px;
    padding: 0px;
}
.modalTop
{
    width: 472px;
    background-color: #AAAAAA;
    padding: 4px;
    color: #ffffff;
    text-align: right;
		text-shadow: none;
}
.modalTop a, .modalTop a:visited
{
    color: #ffffff;
}
.modalBody
{
    padding: 10px;
    text-align: justify;
    height: 235px;
    overflow-y:auto;
}

.modalBody a, .modalBody a:visited
{
     color: #0000DD;
     text-decoration:underline;
}