body {
	background: #000;
	color: white;
	margin: 0px;
	font-family: 'Roboto', sans-serif;
}

a {
	color: #BBB;
	font-weight: bold;
	text-decoration: none;
}
a:hover{
	color: white;
}

ul {
	padding: 0px;
}

.content-wrapper {
	margin: 0px auto;
    padding-top: 20px;
    padding-bottom: 20px;
}

.content-wrapper h1 {
	text-align: center;
}

.item-list {
	margin: 0px auto;
	letter-spacing: -4px;
}

.item-list li {
    display: inline-block;
    padding: 5px;
    letter-spacing: normal;
    vertical-align: top;
    text-align: center;
}

.item-list .image-wrapper,
.item-list a {
    display: block;
    width: 190px;
    max-width: 100%;
}

.item-list .image-wrapper {
	background: #333;
	/*height: 100px;*/
	margin-bottom: 5px;
	border: #333 solid 3px;
}

.item-list .image-wrapper .inner-image-wrapper {
	overflow: hidden;
	height: 100%;
}

.item-list .image-wrapper img {
	width: 100%;
    max-height: 100%;

    position: relative;
    left: 50%;
    
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

.item-list a {
    margin: 0px auto;
	margin-bottom: 20px;
}

.item-list li.disabled {
    opacity: 0.3;
    pointer-events: none;
}