@charset "UTF-8";

	.badgeGreen {
		position:relative;
	}
	.badgeGreen[data-badge]:after {
		content:attr(data-badge);
		position:absolute;
		top:-3px;
		right:-6px;
		font-size:.4em;
		background:green;
		color:white;
		width:18px;height:18px;
		text-align:center;
		line-height:18px;
		border-radius:50%;
		box-shadow:0 0 1px #333;
	}

	.badgeRed {
		position:relative;
	}
	.badgeRed[data-badge]:after {
		content:attr(data-badge);
		position:absolute;
		top:-3px;
		right:-6px;
		font-size:.4em;
		background:#BF0000;
		color:white;
		width:18px;height:18px;
		text-align:center;
		line-height:18px;
		border-radius:50%;
		box-shadow:0 0 1px #333;
	}