body {
    background-color: #f5f6fa;
    font-family: 'Roboto', sans-serif;
}
/* Top Box */
.top-box {
    width: 100%;
    height: 100px;
    background-color: #ffffff;
    padding: 15px 0;
    -webkit-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.15);
    -moz-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.15);
    box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.15);
}
.top-box h3 {
    padding-top: 25px;
    display: inline-block;
    font-size: 24px;
}
.logo img {
    width: 30%;
}
/* Archives */ 
.archives {
    margin-top: 100px;
}
.archives-content {
    -webkit-box-shadow: 0px 0px 9px 0px rgba(0,0,0,0.19);
    -moz-box-shadow: 0px 0px 9px 0px rgba(0,0,0,0.19);
    box-shadow: 0px 0px 9px 0px rgba(0,0,0,0.19);
}
.archives-header {
    background-color: #ffffff;
    padding: 20px 30px;
    border-bottom: 1px solid #cacaca;
}
.archives-header h4 {
    color: #2f3640;
    font-size: 18px;
    text-transform: uppercase;
    margin: 0;
}
.archives-body { 
    height: 100%;
    width: 100%;
    background-color: #ffffff;
}
.footer {
    position: relative;
    bottom: 0;
    background-color: #ffffff;
    margin-top: 300px;
    height: 100px;
    text-align: center;
    -webkit-box-shadow: 0px -3px 9px 0px rgba(0,0,0,0.19);
    -moz-box-shadow: 0px -3px 9px 0px rgba(0,0,0,0.19);
    box-shadow: 0px -3px 9px 0px rgba(0,0,0,0.19);
}
.footer p { 
    padding: 35px 0;
}

/* LIST */
.folder-tree, .folder-tree ul {
    padding:0;
    margin:0;
    list-style:none;
}
.folder-tree li {
    display:block;
    position:relative;
    padding-left:20px;
    padding-right:10px;
}
.folder-tree li:before {
    width:1px;
    height:100%;
    background:#ddd;
    position:absolute;
    left:5px;
    top:0;
    content:'';
}
.folder-tree > li:first-child:before {
    top:50%;
    height:50%;
}
.folder-tree li .count {
    color:#aaa;
}
.folder-tree li:after {
    width:10px;
    height:1px;
    background:#ddd;
    position:absolute;
    left:5px;
    top:50%;
    content:'';
}
.folder-tree li:last-child:before {
    height:50%;
}
.folder-tree li a {
    font:12px sans-serif;
    text-decoration:none;
    color:#333;
    white-space:nowrap;
    padding-left:25px;
    padding-right:4px;
    line-height:26px;
    min-height:26px;
    display:inline-block;
    border-radius:2px;
    background-position:4px center;
    background-repeat:no-repeat;
    -moz-transition: 0.2s background-color;
    -webkit-transition: 0.2s background-color;
    -ms-transition: 0.2s background-color;
    -o-transition: 0.2s background-color;
    transition: 0.2s background-color;
}
.folder-tree li a:hover {
    background-color:#eee;
}
.folder-tree li a.folder {
    background-image:url(folder.png);
}
.folder-tree li a.file {
    background-image:url(file.png);
}
.folder-tree .subfolder {
    display: none;
}
