/*********************************
 * OVERLAY SLIDESHOW POSITIONING *
 *********************************/

#overlay{
    width:100%;
    height:100%;
    overflow:hidden;
    position:fixed;
    top:0;
    left:0;
    text-align:center;
}

/* IE6 no entiende pos:fixed  */
* html #overlay {
     position: absolute;
	 /*padding-top: expression(((document.body.offsetHeight-200)/2)-2);*/
     height: expression(document.body.scrollHeight > document.body.offsetHeight ? document.body.scrollHeight : document.body.offsetHeight + 'px');
}

#overlay .back{
    width:100%;
    height:100%;
    background-color:white;
    opacity:0.6;
    filter:alpha(opacity=60);
    -moz-opacity: 0.60;
    position:absolute;
    top:0;
    left;0;
}

#overlay .window{
    background-color:white;
    border:1px solid #999;
    width:756px;
    height:542px;
    position:absolute;
    z-index:1;

    margin:0 auto;
    position:relative;
    text-align:left;
    clear:left;
}

#overlay .vcenter {
    width:1px;
    height:50%;
    margin-bottom:-272px; /* 1/2 window */
    float:left;
}



/******************************
 * OVERLAY SLIDESHOW SPECIFIC *
 ******************************/

#overlay #slidelinks {
    position:absolute;
    top:25px;
    right:10px;
}

#overlay #slidelinks .imglink {
    display:block;
    float:left;
    width:12px;
    height:12px;
    margin-left:6px;
    background:transparent url("../img/gazul.gif") no-repeat;
}
#overlay #slidelinks .imglink:hover,
#overlay #slidelinks .imglink.active {
    background:transparent url("../img/grosa.gif") no-repeat;
}

#overlay #slidelinks .close {
    display:block;
    float:left;
    margin-left:10px;
}

#overlay #slideitems .title {
    position:absolute;
    top:18px;
    left:33px;
    font-size:14pt;
}
#overlay #slideitems .photo {
    position:absolute;
    display:block;
}



/*******************************
 * OVERLAY SLIDESHOW HOR & VER *
 *******************************/

#overlay #slideitems.hor .title {
    width:680px;
}
#overlay #slideitems.hor .photo {
    top:57px;
    left:33px;
    width:690px;
    height:450px;
}


#overlay #slideitems.ver .title {
    width:133px;
}
#overlay #slideitems.ver .photo {
    top:25px;
    left:198px;
    width:360px;
    height:489px;
}


