/* filesContainer */
.filesContainer{
/*	display:inline-block; */
	border:none;
	width:100%;
	padding:1em 0 2em;
	border-top:solid 1px #ddd;
	overflow: auto;
}
.filesContainer.listStyle {
	padding:0;
}
.filesContainer div.title{
	color: #777;
	font-size: 1.1em;
	padding: 0.25em;
	border-color: solid 1px #eee;
}
.filesContainer>li:first-child { padding:0 1em; font-size:1.2em; display:flex; }
.filesContainer .title { border:none; padding:0; text-align:left; }
.filesContainer>ul {
	display: grid;
	grid-template-columns: repeat(auto-fill,128px);
	justify-content: center;
	grid-gap: 10px;
	grid-auto-rows: 1fr;
}
.filesContainer.listStyle>ul {
	display: grid;
	grid-template-columns: repeat(auto-fill,100%);
	justify-content: center;
	grid-gap: 1px;
	grid-auto-rows: 1fr;
}
.filesContainer.listStyle>ul.listStyleHeader {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	border-bottom: solid 1px #222;
	position: sticky;
  	top: 0;
  	background: #111;
  	z-index: 9;
}

.thumbContainer{
	position:  relative;
	display: flex;
	flex-direction: column;
	opacity: .5;
}
.thumbContainer .thumbImg {
	height:100%;
	background-repeat: no-repeat;
	background-position: center;
	background-size:auto;
	border:solid 1px #ddd;
	height: 128px;
}
/*
.thumbContainer .thumb{
	position:relative;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	max-width:100%;
	max-height:100%;
}
*/

.listStyle .thumbContainer{
	flex-direction: row;
	border-bottom: solid 1px #333;
	align-items: center;
	height: 68px;
	padding: 2px;
}

.listStyle .thumbContainer .thumbImg {
	border: none;
	width: 64px;
	height: 64px;
	margin-right: 2px;
	background-size: contain;
}
.listStyle>ul.listStyleHeader .thumbContainer {
	border: none;
	height: 40px;
	width: 40px;
	padding: 1px;
}
.listStyle>ul.listStyleHeader .thumbContainer .thumbImg {
	height: 38px;
}
.listStyle>ul.listStyleHeader .title {
	font-size:1em;
	color:#999;
	overflow: hidden;
	text-overflow: ellipsis;
}
/*
.thumbContainer.selected .thumbImg, .thumbContainer:hover .thumbImg {
	opacity: 1;
}
*/
.thumbContainer.selected, .thumbContainer:hover {
	opacity: 1;
}

.thumbContainer.sys .thumbImg {
	border-color: #666;
	border-radius: 12px;
}
.listStyle>ul.listStyleHeader .thumbContainer.sys .thumbImg {
	border-color: unset;
	border-radius: unset;
}
.thumbContainer.sys .thumbImg, .thumbContainer[folder] .thumbImg {
	opacity: .9;
}
.thumbContainer.sys:hover .thumbImg {
	background-color:#fff5e5;
}
.listStyle>ul.listStyleHeader .thumbContainer.sys:hover .thumbImg {
	background-color:unset;
}
.thumbContainer.sys .thumbImg.folderHome {
	background-image:url(/..theTree/img/icons/folderHome.svg);
}
.thumbContainer.sys .thumbImg.folderAdd {
	background-image:url(/..theTree/img/icons/folderAdd.svg);
}
.thumbContainer.sys .thumbImg.docAdd {
	background-image:url(/..theTree/img/icons/docAdd.svg);
}
.listStyle .thumbContainer.sys .thumbImg.folderHome {
	background-image:url(/..theTree/img/icons/folderHome70.svg);
}
.listStyle .thumbContainer.sys .thumbImg.folderAdd {
	background-image:url(/..theTree/img/icons/folderAdd70.svg);
}
.listStyle .thumbContainer.sys .thumbImg.docAdd {
	background-image:url(/..theTree/img/icons/docAdd70.svg);
}

/*
.thumbContainer.new:after{
	content:"+";
	position:  absolute;
	top: 0;
	right: 0;
	transform: translate(-50%, 50%);
	font-size:2em;
	color:#333;
}
.listStyle>ul.listStyleHeader .thumbContainer.new:after{
	transform: translate(-13px, 7px);
	font-size: 24px;
}
.thumbContainer .thumbImg.clip {
	background-size:50%;
}
.listStyle .thumbContainer .thumbImg.clip {
	background-size:100%;
}
/*
.thumbContainer .clip{
	position:  absolute;
	top: 25%;
	left: 25%;
	height:50%;
	width:50%;
	opacity:0.4;
	z-index:1;
}
*/
.thumbContainer .trash{
	position:absolute;
	top: 0;
	right: 0;
	height:2em;
	width:2em;
	padding:0.25em;
	border-radius:0 0 0 1rem;
/*	background:#fff;*/
	opacity:0.2;
}

/*.thumbContainer:hover .clip, */
.thumbContainer:hover .trash{
	opacity:0.6;
}
/*.thumbContainer .clip:hover, */
.thumbContainer .trash:hover{
	opacity:1;
}

.thumbContainer p, .thumbContainer span, .thumbContainer input[type="text"] {
	font-size:0.9em;
	color:#333;
	margin-top:0.25em;
	width:100%;
	max-width:100%;
	text-align:center;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	border: solid 1px transparent;
	padding: 2px;
}
.listStyle .thumbContainer span, .listStyle .thumbContainer input[type="text"] {
	font-size:1em;
	color:#aaa;
	margin:0;
	width:calc(100% - 70px);
	max-width:unset;
	text-align:left;
	white-space: wrap;
	overflow: hidden;
	text-overflow: ellipsis;
	height: 100%;
	display: flex;
	align-items: center;
}

/*.thumbContainer input[type="text"]:hover { border:solid 1px #ddd; }*/
.thumbContainer textarea {
/*	position:  absolute;*/
	font-size:0.9em;
	color:#777;
	margin-top:0.25em;
	width:100%;
	max-width:100%;
	text-align:center;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.thumbContainer input[type="text"]:hover { border:solid 1px #ddd; }
.listStyle .thumbContainer input[type="text"]:hover { border:none; }
/*
.thumbContainer textarea:hover { border:solid 1px #ddd; }
.thumbContainer textarea:focus { border:solid 1px #ddd; white-space: normal; z-index:99; background:#eee; height:3em;}
*/



.theFrame .stickyHdr { border: none; }
.theFrame .dbbar {
	border-bottom: solid 1px #222;
	background: #111;
	display: flex;
	justify-content: end;
}
.theFrame .dbbar li {
	border: none;
	background:none;
	padding:none;
	margin-right:1em;
}
.theFrame .dbbar li:first-child {
	border-left: none;
}
.theFrame .dbbar li p {
	display: none;
}
.theFrame .dbButton.refreshBtn {
	display: none;
}
.theFrame .dbButton.shrink img {
	padding: .2em;
	border: solid 1px #777;
}

.theDocBrowser .dbbar .dbButton.previous, .theDocBrowser .dbbar .dbButton.next {
	position: absolute;
	margin: 0;
	font-size: 1.5em;
	top: 45.5vh;
	height: 5vh;
	width: 4vw;
	cursor: default;
}
.theDocBrowser .dbbar .dbButton.previous img, .theDocBrowser .dbbar .dbButton.next img {
	opacity: 0.1;
	transition: all 1s;
	cursor: default;
}

.theDocBrowser .dbbar .dbButton.previous img {
	transform: rotate(-90deg);
	margin: 0 auto 0 1vw;
}
.theDocBrowser .dbbar .dbButton.previous {
	left: 1vw;
}
.theDocBrowser .dbbar .dbButton.next img {
	transform: rotate(90deg);
	margin: 0 1vw 0 auto;
}
.theDocBrowser .dbbar .dbButton.next {
	right: 1vw;
}
.theDocBrowser .dbbar .dbButton#printBtn {
	display: none;
}
.docContainer {
	display: grid;
	align-items: center;
	background: #111;
	overflow: auto;
	width: 100%;
	height: 100%;
}
.docContainer>* {
	border: none;
/*	max-width: 100%;
	max-height: 100%;*/
	justify-self: center;
}
.docContainer>object {
	width:100%;
	height:100%;
}
.docContainer>pre {
	color: #eee;
	padding: .5vh .5vw;
	justify-self: flex-start;
	align-self: flex-start;
}
.docContainer>div.image{
	background-position:center;
	background-repeat:no-repeat;
	background-size:contain;
	border:none;
	position:relative;
	top:0;
	left:0;
}
.docContainer.stretch>div.image, .docContainer.stretch>video{
	width: 100% !important;
	height: 100% !important;
}
.docContainer>div.smallImage, .docContainer.shrink>div.image {
	background-size:initial;
}
.docContainer>div.bigDlBtn {
	position: relative;
	width:5em;
	height:5em;
	border-radius:50%;
	background:rgba(0, 0, 0,0.2);
	background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIAAAACACAYAAADDPmHLAAAACXBIWXMAABYlAAAWJQFJUiTwAAAE7UlEQVR4nO2doY8kRRxG3xJINsGcHNnyUIDalXsOEgS4c+wFAThwh6JQ/Ams2z6HxBDWAQkJexjArSLjwLFy3Jyo29xlbna7Z7q6u6q+7yXjqqZ/me9NT3VXTdfBer3G6PLa3AWYebEA4rw+dwEzcR94CBwBh8AV8BRoZ6xpFg4ExwCPga+JwW9yCTwiCiGBmgCfAd91tFkCbwGr0avJAKUxwAL4tke7hniGkEBJgA+Bez3bno5YR1YoCfD2Dm0Xz1/VoyTA/ZHbF4mSAGYLFkAcCyCOBRDHAohjAcSxAOJYAHEsgDgWQBwLII4FEMcCiGMBxLEA4lgAcSyAOBZAHAsgjgUQxwKIYwHEsQDiWABxLIA4FkAcCyCOBRDHAohjAcSxAOJYAHEsgDgWQBwLII4FEMcCiGMBxLEA4lgAcSyAOBZAHAsgjgUQxwKIYwHEsQDiWABxLIA4FkAcCyCOBRDHAohjAcQZS4BT4H9gvfE6p//mjaq8B/zLq5/d74ywld0YApxze9CnwJ/E7VnNqwTgJ7ZvWnlM/OxOUh4wtQAP6d52tQF+xhJsEujes/iQ+OXatvP5XqQWoM/mzGAJNgn037C6Ab5IdeCUAizYLdAGSwC7hX/DUaqDpxRgnwFKg7YEgf22qk82GEwpwHLPfg2aEgT2Cx/gKlURqQW43rNvg5YEgf3DB/g7UR3JB4FfDejboCFBYFj4/wFnaUpJL8AZ8MuA/g11SxAYFj7Al0QJkjDGjaCPgL8G9G+oU4LA8PC/Ab4fXsoLxhDgGniAJXiZQJrww+BKNhhrLsASvCCQafgw7mygJcg8fBh/OlhZgkDm4cM06wEUJQgUED5MtyBESYJAIeHDtCuCFCQIFBQ+TL8krGYJAoWFD/OsCaxRgkCB4cN8i0JvJBgyq9WQhwSBQsOHeVcFXwPvs/80MswvQaDg8GH+ZeFL4plgOeA9GuaRIFB4+DC/AFCmBIEKwoc8BICyJAhUEj7kIwCUIUGgovAhLwEgbwkClYUP+QkAeUoQqDB8yFMAyEuCQKXhQ74CQB4SBCoOH+BgvV7PXUMXDcO/yUviQsrjHfo8AT4ecEzIPHwoQwBII8GKhH+q7EH24UM5AsD8t313oYjwIe8xwCZLho8JpqCY8KEsASB/CYoKH8oTAPKVoLjwoUwBID8JigwfyhUA8pGg2PChbAFgfgmKDh/Kugy8i4bpLxHPgM8nPN4o1CIATCtBCzya4DijU/pPwMssmebnoKWS8KGuM8ANDfGpmtsetjiUlorCh7rOADcsiauN931e0W20VBY+1CkAxD+dPCCdBC0Vhg/1CgDpJGipNHyoWwAYLkFLxeFDnYPAbbwD/Aa8uUOflsrDBx0BIErwB/BGj7Y/Ah+MW04e7CvAghE2L5iAI+ITzQ/uaPMP8Mk05SRlBVzu2mlXAR4Dn1LGqhxVfiA+sbXXP6/7CnCPuJPFLosqzXysiPMUbVfDvgKc070TiMmLFfAuHWeCPgIcE2+tmvK4IN4VvZU+9wFOkpRi5uCkq0EfAZJtT2Im55B4+XsrfQRI9mhyMwt35tdHgKeJCjHTsySBABddb2Ky5UlXg76XgafES0FTDlfEy8DVXY36zga2xImR1IsszDhcEGdB7wwfdr8VvCBuD3vEOEuuzDAugV+JAvRCaTbQbKH2BSGmg2e6AyvzWOZsMwAAAABJRU5ErkJggg==");
	background-position:center;
	background-size:75%;
	background-repeat:no-repeat;
	font-size:2em;
/*	cursor:pointer; */
	opacity: 0.5;
}
.docContainer>div.bigDlBtn:after {
	Content: "El contenido no se puede visualizar.\APulsa aquí para descargarlo.";
	white-space: pre-wrap;
	position: absolute;
	top: 110%;
	width: 200%;
	font-size: 0.5em;
	line-height:120%;
	left: -50%;
	text-align: center;
}
.bigDlBtn img{
	opacity: 0.5;
	height: 70%;
	margin: 15%;
	transition: all 1s;
}
.docContainer>div.bigDlBtn:hover {
	opacity: 0.8;
}



.containerFoot {
	height: 1.5em;
	background: #111;
	border-top: solid 1px #222;
	color: #777;
	text-align: center;
}


