* {
	padding:0;
	margin:0;
}

body {
	color: #333;
	font: 14px Sans-Serif;
	padding: 50px;
	background: #eee;
}

h1 {
	text-align: center;
	padding: 20px 0 12px 0;
	margin: 0;
}
h2 {
	font-size: 16px;
	text-align: center;
	padding: 0 0 12px 0; 
}

#container {
	box-shadow: 0 5px 10px -5px rgba(0,0,0,0.5);
	position: relative;
	background: white; 
}

table {
	background-color: #F3F3F3;
	border-collapse: collapse;
	width: 100%;
	margin: 15px 0;
}

th {
	background-color: #FE4902;
	color: #FFF;
	cursor: pointer;
	padding: 5px 10px;
}

th small {
	font-size: 9px; 
}

td, th {
	text-align: left;
}

a {
	text-decoration: none;
}

td span {
	cursor: default;
}
td span, td a {
	color: #663300;
	display: block;
	padding: 20px 10px;
}
th span, th a {
	padding-left: 0
}

td:first-of-type span, td:first-of-type a {
	background: url(./images/file.png) no-repeat 10px 50%;
	padding-left: 35px;
}
th:first-of-type {
	padding-left: 35px;
}

td:not(:first-of-type) span, 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 span {
	color: #000;
}





/* icons for file types (icons by famfamfam) */

/* images */
table tr td:first-of-type span[file$=".jpg"], 
table tr td:first-of-type span[file$=".png"], 
table tr td:first-of-type span[file$=".gif"], 
table tr td:first-of-type span[file$=".svg"], 
table tr td:first-of-type span[file$=".jpeg"]
{background-image: url(./images/image.png);}

/* zips */
table tr td:first-of-type span[file$=".zip"] 
{background-image: url(./images/zip.png);}

/* css */
table tr td:first-of-type span[file$=".css"] 
{background-image: url(./images/css.png);}

/* docs */
table tr td:first-of-type span[file$=".doc"],
table tr td:first-of-type span[file$=".docx"],
table tr td:first-of-type span[file$=".ppt"],
table tr td:first-of-type span[file$=".pptx"],
table tr td:first-of-type span[file$=".pps"],
table tr td:first-of-type span[file$=".ppsx"],
table tr td:first-of-type span[file$=".xls"],
table tr td:first-of-type span[file$=".xlsx"]
{background-image: url(./images/office.png)}

/* videos */
table tr td:first-of-type span[file$=".avi"], 
table tr td:first-of-type span[file$=".wmv"], 
table tr td:first-of-type span[file$=".mp4"], 
table tr td:first-of-type span[file$=".mov"], 
table tr td:first-of-type span[file$=".m4a"]
{background-image: url(./images/video.png);}

/* audio */
table tr td:first-of-type span[file$=".mp3"], 
table tr td:first-of-type span[file$=".ogg"], 
table tr td:first-of-type span[file$=".aac"], 
table tr td:first-of-type span[file$=".wma"] 
{background-image: url(./images/sound.png);}

/* web pages */
table tr td:first-of-type span[file$=".html"],
table tr td:first-of-type span[file$=".htm"],
table tr td:first-of-type span[file$=".xml"]
{background-image: url(./images/xml.png);}

table tr td:first-of-type span[file$=".php"] 
{background-image: url(./images/php.png);}

table tr td:first-of-type span[file$=".js"] 
{background-image: url(./images/script.png);}

/* directories */
table tr.dir td:first-of-type span
{background-image: url(./images/folder.png);}
table tr.dir td:first-of-type a
{background-image: url(./images/folder.png);}

.breadcrumb-link{
	display: inline;
    padding: 0 !important;
	background-image: none !important;
	background: 0 none !important;
}


/*the container must be positioned relative:*/
.autocomplete {
	position: relative;
	display: inline-block;
}

input {
	border: 1px solid transparent;
	background-color: #f1f1f1;
	padding: 10px;
	font-size: 16px;
}

input[type=text] {
	background-color: #f1f1f1;
	width: calc(100% - 100px);
    padding-left: 20px;
    padding-right: 80px;
}

input[type=submit] {
	background-color: #FE4902;
	color: #fff;
	cursor: pointer;
	float: right;
	margin-top: -41px;
	position: relative;
}

.autocomplete-items {
	position: absolute;
	border: 1px solid #d4d4d4;
	border-bottom: none;
	border-top: none;
	z-index: 99;
	/*position the autocomplete items to be the same width as the container:*/
	top: 100%;
	left: 0;
	right: 0;
}

.autocomplete-items div {
	padding: 10px;
	cursor: pointer;
	background-color: #fff; 
	border-bottom: 1px solid #d4d4d4; 
}

/*when hovering an item:*/
.autocomplete-items div:hover {
	background-color: #e9e9e9; 
}

/*when navigating through the items using the arrow keys:*/
.autocomplete-active {
	background-color: DodgerBlue !important; 
	color: #ffffff; 
}