* {
    padding:0;
    margin:0;
}

body {
    color: #06255B;
    font: 14px Sans-Serif;
    padding: 50px;
    background: #f0f4f7;
}

h1 {
    text-align: center;
    padding: 20px 0 12px 0;
    margin: 0;
}
h2 {
    font-size: 16px;
    text-align: center;
    padding: 0 0 12px 0; 
}

#container {
    padding-left: 1%;
    padding-right: 1%;
    padding-bottom: 1px;
    position: relative;
    background: white; 
    border-radius: 25px;
}

table {
    background-color: #F3F3F3;
    border-collapse: collapse;
    width: 100%;
    margin: 15px 0;
}

th {
    background-color: #06255B;
    color: #FFF;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 25px 0px;
}


th small {
    font-size: 9px; 
}

td, th {
    text-align: left;
}

a {
    text-decoration: none;
}

td a {
    color: #663300;
    display: block;
    padding: 5px 10px;
}
th a {
    padding-left: 0
}

td:first-of-type a {
    background: url(./.images/file.webp) no-repeat 10px 50%;
    padding-left: 35px;
}
th:first-of-type {
    padding-left: 35px;
}

td:not(:first-of-type) a {
    background-image: none !important;
} 

tr:nth-of-type(odd) {
    background-color: #E6E6E6;
}

tr:hover td {
    background-color:#CACACA;
}

tr:hover td a {
    color: #000;
}





/* icons for file types (icons by famfamfam) */

/* images */
table tr td:first-of-type a[href$=".jpg"], 
table tr td:first-of-type a[href$=".webp"], 
table tr td:first-of-type a[href$=".gif"], 
table tr td:first-of-type a[href$=".svg"], 
table tr td:first-of-type a[href$=".jpeg"]
{background-image: url(/.images/image.webp);}

/* zips */
table tr td:first-of-type a[href$=".zip"] 
{background-image: url(/.images/zip.webp);}

/* css */
table tr td:first-of-type a[href$=".css"] 
{background-image: url(/.images/css.webp);}

/* docs */
table tr td:first-of-type a[href$=".doc"],
table tr td:first-of-type a[href$=".docx"],
table tr td:first-of-type a[href$=".ppt"],
table tr td:first-of-type a[href$=".pptx"],
table tr td:first-of-type a[href$=".pps"],
table tr td:first-of-type a[href$=".ppsx"],
table tr td:first-of-type a[href$=".xls"],
table tr td:first-of-type a[href$=".xlsx"]
{background-image: url(/.images/office.webp)}

/* videos */
table tr td:first-of-type a[href$=".avi"], 
table tr td:first-of-type a[href$=".wmv"], 
table tr td:first-of-type a[href$=".mp4"], 
table tr td:first-of-type a[href$=".mov"], 
table tr td:first-of-type a[href$=".m4a"]
{background-image: url(/.images/video.webp);}

/* audio */
table tr td:first-of-type a[href$=".mp3"], 
table tr td:first-of-type a[href$=".ogg"], 
table tr td:first-of-type a[href$=".aac"], 
table tr td:first-of-type a[href$=".wma"] 
{background-image: url(/.images/audio.webp);}

/* web pages */
table tr td:first-of-type a[href$=".html"],
table tr td:first-of-type a[href$=".htm"],
table tr td:first-of-type a[href$=".xml"]
{background-image: url(/.images/xml.webp);}

table tr td:first-of-type a[href$=".php"] 
{background-image: url(/.images/php.webp);}

table tr td:first-of-type a[href$=".js"] 
{background-image: url(/.images/script.webp);}

/* directories */
table tr.dir td:first-of-type a
{background-image: url(/.images/folder.webp);}

/* pdf */
table tr td:first-of-type a[href$=".pdf"]
{background-image: url(/.images/pdf.webp);}