/*from: http://jsfiddle.net/tagliala/77re29ct/*/
.fa-divide,
.fa-subtract,
.fa-multiply,
.fa-less-than,
.fa-greater-than,
.fa-less-than-equal,
.fa-greater-than-equal,
.fa-equal {
	font-size: 1em!important;
    font-family: 'robotomedium'!important;
}

.fa-divide:before {
    content: "\2236";
}

.fa-less-than:before {
    content: "<";
}

.fa-greater-than:before {
    content: ">";
}

.fa-less-than-equal:before {
    content: "\2264";
}

.fa-greater-than-equal:before {
    content: "\2265";
}

.fa-equal:before {
    content: "=";
}

.fa-multiply:before {
    content: "x";
}

.fa-subtract:before {
    content: "-";
}