body	{
	margin: 0;
	background: rgb(250,250,250);
	user-select: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	cursor: default;
	font-family: Helvetica, Arial, sans-serif;
	text-align: center;
}

div	{
	box-sizing: border-box;
}

#categories	{
	display: block;
	left: 0;
	right: 0;
	margin-left: auto;
	margin-right: auto;
	max-width: 1390px;
	position: relative;
	padding: 10px;
	font-size: 14px;
	font-weight: lighter;
	z-index: 6;
	text-align: left;
}

#categories .category	{
	display: inline-block;
	text-decoration: none;
	color: rgb(150,150,150);
	margin: 5px;
	cursor: default;
	transition: color 350ms linear;
}
#categories .category:hover	{
	color: rgb(10,10,10);
}

#categories .category.selected	{
	color: rgb(10,10,10);
}



#thumbnails	{
	display: block;
	left: 0;
	right: 0;
	margin-left: auto;
	margin-right: auto;
	max-width: 1390px;
	text-align: center;
	border-bottom: 1px solid rgb(230,230,230);
	position: relative;
	padding: 5px;
}

#thumbnails .thumbnail	{
	box-sizing: border-box;
	display: inline-block;
	position: relative;
	min-width: 200px;
	width: 93%;
	max-width: 450px;
	max-height: 450px;
	min-height: 10px;
	margin: 5px;
	border-radius: 4px;
	overflow: hidden;
	box-shadow: 0px 0px 0px rgb(250,250,250);
	transition: all 500ms ease-in-out, transform 400ms ease-in-out;
	z-index: 4;
	opacity: 1;
	transform: scale(1);
}

#thumbnails .thumbnail:hover		{
	transform: scale(1.1);
	z-index: 5;
	box-shadow: 0px 5px 20px rgba(30,30,30,.5);
}

#thumbnails .thumbnail .thumnail_image:before	{
	content: '';
	padding-top: 45%;
	display: block;
}

#thumbnails .thumbnail .thumnail_image	{
	background: rgb(225,225,225);
	background-size: 110%;
	background-position: center center;
	background-repeat: no-repeat;
}

#thumbnails .thumbnail .label	{
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	text-align: center;
	font-weight: lighter;
	color: rgb(250,250,250);
	font-size: 12px;
	padding: 5px;
}

#thumbnails .thumbnail.hide	{
	transform: scale(0);
	max-height: 0px;
	min-width: 0px;
	max-width: 0px;
	min-height: 0px;
	margin: 0px;
	opacity: 0;
}

#thumbnails .thumbnail.show:hover	{
	transform: scale(1.1);
}