.catBoxFrame {
	position: relative;
	float: left;
	border: none;
	margin: 0;
	padding: 0;
}

.catBox {
	position: relative;
	background: black;
	width: 200px;
	text-align: center;
	margin: 5px;
	border-width: 3px;
	border-radius: 8px;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-style: solid;
/*	border-color: #9f9187; */
	border-color: white;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	-o-text-overflow: ellipsis;
}

.catBoxBorder {
	position: absolute;
	display: block !important;
	display: none; /* IE Hack */
	top: -3px;
	right: -3px;
	bottom: -3px;
	left: -3px;
	border-width: 3px;
	border-radius: 8px;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-style: solid;
/*	border-color: #9f9187; */
	border-color: white;
}

.catBox img {
	width: 200px;
	height: 200px;
	border: 0;
}

.catBox a {
	text-decoration: none;
}

.catBox .catBoxCount {
	font-size: 75%;
}

@media only screen and (max-device-width: 600px), only screen and (max-device-height: 600px) {
	.catBox {
		width: 98px;
		margin: 2px;
		border-width: 2px;
		border-radius: 6px;
		-webkit-border-radius: 6px;
		-moz-border-radius: 6px;
	}

	.catBoxBorder {
		top: -2px;
		right: -2px;
		bottom: -2px;
		left: -2px;
		border-width: 2px;
		border-radius: 6px;
		-webkit-border-radius: 6px;
		-moz-border-radius: 6px;
	}

	.catBox img {
		width: 100px;
		height: 100px;
	}
}