html, body {
	padding: 0;
	margin: 0;
	height: 100%;
	width: 100%;
}

#tags {
	float: left;
	min-width: 150px;
	width: 10%;
	background-color: black;
	margin-right: 25px;
	padding: 50px;
	color: white;
}

#tags>p {
	font-style: italic;
	color: lightgray;
}

#tags a.activetag {
	background-color: black;
}
#tags a {
	color: white;
	display: block;
	padding: 10px;
	border: 1px solid gray;
	text-decoration: none;
	font-size: 1.3em;
	background-color: #333;
}

a#showAllTags {
	font-weight: bold;
	font-size: 2em;
}

@media (max-width: 800px) {
	#tags {
		float: none;
		width: 100%;
		height: initial;
		padding: 0px;
	}
	#tags a {
		display: inline-block;
		padding: 4px;
	}
}


.item {
	display: inline-block;
	margin: 2px;
}

.item-effect:before {
	content: 'Effect: ';
	color: lightgray;
}

.item-stack:before {
	content: 'Each Additional: ';
	color: lightgray;
}

.item-unlock {
	margin-top: 20px;
}
.item-unlock:before {
	content: 'Unlock: ';
	color: lightgray;
}

.item {
	position: relative;
	cursor: pointer;
}

.item-maxstack:before {
	content: 'x';
}
.item-maxstack {
	position: absolute;
	bottom: 0;
	right: 5px;
	color: white;
	font: bold 15px sans-serif;
}
