/* the overlayed element */ 
.simple_overlay { 
     
    /* must be initially hidden */ 
    display:none; 
     
    /* place overlay on top of other elements */ 
    z-index:10000; 
     
    /* styling */ 
    background-color:#333; 
     
    width:675px;     
    min-height:200px; 
    border:1px solid #666; 
     
    /* CSS3 styling for latest browsers */ 
    -moz-box-shadow:0 0 90px 5px #000; 
    -webkit-box-shadow: 0 0 90px #000;     
} 
 
/* close button positioned on upper right corner */ 
.simple_overlay .close { 
    background-image:url(../imagenes/cerrar.png); 
    position:absolute; 
    right:-15px; 
    top:-15px; 
    cursor:pointer; 
    height:31px; 
    width:31px; 
}

/* styling for elements inside overlay */ 
.details { 
    position:absolute; 
    top:15px; 
    right:15px; 
    font-size:11px; 
    color:#fff; 
    width:150px; 
} 
 
.details h3 { 
    color:#aba; 
    font-size:15px; 
    margin:0 0 -10px 0; 
}




div.scrollable {
	overflow:hidden;
	width: 365px;
	height:250px;
	position: absolute;
	margin-top: 8px;
	margin-left: 8px;
} 
.prevPage {
	background-image: url(../imagenes/bot_atras.gif);
	background-repeat: no-repeat;
	margin-right: 10px;
	height: 13px;
	width: 15px;
	display: block;
	float: right;
	margin-top: 273px;
}
.nextPage {
	background-image: url(../imagenes/bot_adelante.gif);
	background-repeat: no-repeat;
	height: 13px;
	width: 15px;
	display: block;
	float: right;
	margin-right: 10px;
	margin-top: 273px;
}
 
/* 
    root element for scrollable items. Must be absolutely positioned 
    and it should have a extremely large width to accomodate scrollable items. 
    it's enough that you set width and height for the root element and 
    not for this element. 
*/ 
div.scrollable div.items { 
    /* this cannot be too large */ 
    width:10000px; 
    position:absolute; 
} 
.disabled {
	display: none;
}
.disabled {
	display: none;
}


 
/* 
    a single item. must be floated in horizontal scrolling. 
    typically, this element is the one that *you* will style 
    the most. 
*/ 
div.scrollable div.items div { 
    float:left; 
} 
 
/* you may want to setup some decorations to active the item */ 
div.items div.active { 
    border:1px inset #ccc; 
    background-color:#fff; 
}

.contenedor_titulo_foto {
	height: 27px;
	width: 82px;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #666666;
	margin-bottom: -1px;
	border-right-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-left-style: solid;
	border-right-color: #666666;
	border-left-color: #666666;
	background-color: #F5F5F5;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #F5F5F5;
	position: relative;
}
.contenedor_foto {
	width: 380px;
	height: 300px;
	border: 1px solid #666666;
	background-color: #f5f5f5;
}

.titulo_foto {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #333333;
	text-decoration: none;
	padding-top: 7px;
	position: absolute;
	padding-left: 10px;
}
.contenedor_foto .epigrafe {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #339933;
	text-decoration: none;
	padding-left: 10px;
	position: absolute;
	padding-top: 273px;
}
.fotos{
	float:left;
}
.fotos img{
	border:none;
}
