/* 
    Document   : filemanager
    Created on : Jun 12, 2011, 12:35:02 AM
    Author     : olamedia
    Description:
        filemanager styles
*/

.files-list{
    display: block;
    padding: 10px 20px;
    border: solid 1px #666;
    margin: 0;
	margin-bottom: 1em;
    font-family: Verdana, Arial, Helvetica, sans-serif;
}
.files-list li{
    display: inline-block;
    vertical-align: top;
    width: 96px;
    max-height: 96px;
    *height: 96px;
    margin: 3px;
    position: relative;
}
.files-list a{
    text-decoration: none;
    display: block;
    width: 92px;
    min-height: 92px;
    height: 92px;
    overflow: hidden;
    padding: 2px;
    border: solid 1px transparent;
    border-radius: 2px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
}
.files-list a:hover{
    background: rgba(255,255,255, 0.2);
    border: solid 1px #ADCBF0;
}
.files-list-inactive a.selected{
    background: #EFEFEF;
    border: solid 1px #D9D9D9;
}
.files-list-active a.selected{
    background: #C1DCFC;
    border: solid 1px #7DA2CE;
    position: relative;
    overflow: visible;
    z-index: 3; 
    height: auto;
}
.files-list a.selected .caption{
    overflow: visible;
    height: auto;
    padding-bottom: 2px;
}
.files-list .icon{
    display: block;
    height: 64px;
    font-size: 64px;
    line-height: 64px;
    text-align: center;
}
.files-list li .icon img{
    vertical-align: bottom;
    margin: auto;
    /*width: 64px;*/
}
.files-list .caption{
    display: block;
    width: 92px;
    margin-top: 3px;
    word-wrap: break-word;
    text-align: center;
    font-size: 10px; 
    color: #222;
    line-height: 1.3; 
    height: 2.3em; 
    overflow: hidden;
    white-space: pre-wrap;
    text-overflow: ellipsis;
    padding-bottom: 1px;
 
}
.files-list .caption-rename{
    overflow: visible;
    height: auto;
}
.files-list .caption-rename textarea{
    width: 100%;
    display: block;
    border: solid 1px #333;
    padding: 1px;
    font-size: 10px; 
    font-family: inherit;
    line-height: 1.3; 
    overflow: hidden;
    resize: none;
    text-align: center;
}
body.wait * {
    cursor: wait !important;
}
