/* credits to http://cssglobe.com/post/9435/pure-css3-post-tags/ */

.cedtag ul {
    margin: 0;
    padding: 0;
    list-style: none;
    float: left;
    width: 100%;
    margin-bottom: 10px !important;

}

.cedtag li {
    list-style: none;
    float: left;
}

.cedtag li a, .cedtag li span {
    display: inline-block;
    background: #20acb8;
    color: #fff !important;
    padding: 2px 10px;
    margin: 5px 5px 0 0;
    font-size: 12px;
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-top-right-radius: 10px;
    -webkit-border-bottom-right-radius: 10px;
}

.cedtag li a:hover {
	background: #e44554;
	-webkit-transition: all 0.25s;
	-o-transition: all 0.25s;
	transition: all 0.25s;
}

.cedtag ul:after {
    clear: left;
}



