/* NOT REQUIRED */
/* Just some example CSS */
.tag-reset {
	display: inline-block;
	border: 1px solid #e64b35;
	color: #e64b35;
	font-size: 13px;
	font-weight: bold;
	line-height: 10px;
	padding: 5px 15px;
	margin: 5px;
	cursor: pointer;
	border-radius: 15px 15px 15px 15px;
	-moz-border-radius: 15px 15px 15px 15px;
	-webkit-border-radius: 15px 15px 15px 15px;
	-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;
}
.tag-reset:hover {
	border: 1px solid #e64b35;
	color: #FFF;
	background-color: #e64b35;

}

.tags-container span {
	display: inline-block;
	border: 1px solid #e64b35;
	color: #e64b35;
	font-size: 13px;
	font-weight: bold;
	line-height: 10px;
	padding: 5px 15px;
	margin: 5px;
	cursor: pointer;
	border-radius: 15px 15px 15px 15px;
	-moz-border-radius: 15px 15px 15px 15px;
	-webkit-border-radius: 15px 15px 15px 15px;
	-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;
}
.tags-container span:hover {
	border: 1px solid #e64b35;
	color: #FFF;
	background-color: #e64b35;

}
.tags-container span.tagsort-active {
	border: 1px solid #e64b35;
	color: #fff;
	background-color: #e64b35;
}
.tags-container span.active {
	border: 1px solid #e64b35;
	color: #fff;
	background-color: #e64b35;
}