* {
	padding:0;
	margin:0;
}

@font-face {
    font-family: 'gotham_blackregular';
    src: url('.fonts/gotham_black-webfont.eot');
    src: url('.fonts/gotham_black-webfont.eot?#iefix') format('embedded-opentype'),
         url('.fonts/gotham_black-webfont.woff') format('woff'),
         url('.fonts/gotham_black-webfont.ttf') format('truetype'),
         url('.fonts/gotham_black-webfont.svg#gotham_blackregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

body {
    color: #B5B5B5;
    font: 14px Sans-Serif;
    padding: 50px;
    background: #2B2A2A;
}

h1 {
	font-family: 'gotham_blackregular';
	font-size: 20px;
	text-align: center;
	padding: 20px 0 5px 0;
	margin: 0;
	letter-spacing: 1px;
}
h5 {
	font-size: 14px;
	text-align: center;
	padding: 0 0 20px 0;
	margin: 0;
	font-weight: 100;
}
h2 {
	font-size: 14px;
	text-align: center;
	padding: 0 0 20px 0; 
}

#container {
	
	position: relative;
}

table {
	background-color: #F3F3F3;
	border-collapse: collapse;
	width: 100%;
	margin: 15px auto;
	box-shadow: 0 5px 10px -5px rgba(0,0,0,0.5);
    max-width: 1000px;
}

th {
	background-color: #111;
	color: #FFF;
	cursor: pointer;
	padding: 5px 10px;
    border: 1px solid #333;
}

th small {
	font-size: 9px; 
}

td, th {
	text-align: left;
}

a {
	text-decoration: none;
	color: black;
}

td a {
	display: block;
	padding: 5px 10px;
    color: #777;
}
th a {
	padding-left: 0
}

td:first-of-type a {
	background: url(./.images/file.png) no-repeat 10px 50%;
	padding-left: 35px;
    background-size: 16px 16px;
    color: #000;
}
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;
}

td{
	padding-top: 5px;
	padding-bottom: 5px;
}
th{
	padding-top: 10px;
	padding-bottom: 10px;
}



/* 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$=".png"], 
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.png);}

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

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

/* 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.png)}

/* 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.png);}

/* 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.png);}

/* 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.png);}

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

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

/* directories */
table tr.dir td:first-of-type a
{background-image: url(./.images/folder.png);}
			
/***** Phone (portrait 300px) *****/
@media only screen and (max-width: 767px) {

body {
	width:100%;
	font: 12px Sans-Serif;
	padding: 0px;
}
td.hide,
th.hide{
	display: none;
}
.logos {
	display: none;
}
h1 {
	font-size: 15px;
}
@media only screen and (min-width: 480px) and (max-width: 767px) {

body {
	width: 90%;
	margin: 0 auto;
}

}