/* Fix for Bootstrap Glyphicons - Map to Font Awesome equivalents */
.glyphicon {
    font-family: 'FontAwesome' !important;
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.glyphicon-check:before {
    content: "\f00c"; /* fa-check */
}

.glyphicon-file:before {
    content: "\f15b"; /* fa-file */
}

.glyphicon-ok:before {
    content: "\f00c"; /* fa-check */
}

.glyphicon-share:before {
    content: "\f045"; /* fa-share-square-o */
}

.glyphicon-remove:before {
    content: "\f00d"; /* fa-times */
}

.glyphicon-blank:before {
    content: ""; /* empty */
}

.glyphicon-unchecked:before {
    content: "\f096"; /* fa-square-o (unchecked box) */
}

.glyphicon-play:before {
    content: "\f04b"; /* fa-play */
}

.glyphicon-pause:before {
    content: "\f04c"; /* fa-pause */
}

.glyphicon-stop:before {
    content: "\f04d"; /* fa-stop */
}

.glyphicon-step-forward:before {
    content: "\f051"; /* fa-step-forward */
}

.glyphicon-step-backward:before {
    content: "\f048"; /* fa-step-backward */
}

.glyphicon-plus:before {
    content: "\f067"; /* fa-plus */
}

.glyphicon-minus:before {
    content: "\f068"; /* fa-minus */
}

.glyphicon-music:before {
    content: "\f001"; /* fa-music */
}

.glyphicon-arrow-up:before {
    content: "\f062"; /* fa-arrow-up */
}

.glyphicon-arrow-down:before {
    content: "\f063"; /* fa-arrow-down */
}

.glyphicon-arrow-left:before {
    content: "\f060"; /* fa-arrow-left */
}

.glyphicon-arrow-right:before {
    content: "\f061"; /* fa-arrow-right */
}

