/* NOT REQUIRED */
/* Just some example CSS */
.tagsort-tags-container {
	display: inline-block;
	border: 2px solid #CCC;
	color: #CCC;
	font-size: 10px;
	line-height: 8px;
	padding: 4px 4px;
	margin: 5px 5px 10px 5px;
	cursor: pointer;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.tagsort-tags-container:hover {
	border: 2px solid #000;
	color: #FFF;
	background-color: #000;

}
.tagsort-tags-container.active {
	border: 2px solid #F00;
	color: #CCC;
	background-color: transparent;
}