h1{
    text-align: center;
    margin: 20px;
	font-family: Arial, Helvetica, sans-serif;
	font-size:1.5em;
}
table { 
    width: 55%; 
    table-layout: fixed;
    border-collapse: collapse; 
    margin: 0 auto;
}
/* Zebra striping */
tr:nth-of-type(odd) { 
    background: #f2f2f2; 
}

td, th { 
    padding: 8px; 
    border: 1px solid #ccc; 
    text-align: left; 
    text-align: center;	
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-weight: bold;
}
th { 
    background: #000000; 
    color: #fff; 
    font-weight: 600; 
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	text-transform: uppercase;
}
.name{
	width:23%;
}
.download{
	width:30%;
}
.thumb{
	width:15%;
}
.pixels{
	width:10%;
}
.type{
	width:7%;
}
.responsive{
		max-width:100%;
	}
/*Mobile View*/
@media 
only screen and 
    (max-width: 760px){
    td, tr { 
        display: block; 
	}
	
	/* Hide table headers (but not display: none;, for accessibility) */
	thead tr { 
		position: absolute;
		top: -9999px;
		left: -9999px;
	}
	tr {
        border: 1px solid #999; 
    }
    tr + tr{
        margin-top: 1.5em;
    }
	td { 
		/* make like a "row" */
		border: none;
		border-bottom: 1px solid #999; 
		position: relative;
		padding-left: 50%; 
        background-color: #f2f2f2;
        text-align: left; 
	}
	td:before { 
        content: attr(data-label);
        display: inline-block;
        line-height: 1.5;
	    margin-left: -100%;
        width: 100%;
		white-space: nowrap;
	}
	p {
		-webkit-margin-before: 0em;
		-webkit-margin-after: 1.5em;
	}
}