SVG Color by class

http://stackoverflow.com/questions/36331177/select-css-with-a-part-of-svg-inserted-within-an-object

by Aides

HTML

<object class="redDiv" type="image/svg+xml" data="Immagini/Cluster/MarkerBalloon.svg">
<svg xmlns="http://www.w3.org/2000/svg" version="1.0" width="100%" height="100%" viewBox="0 0 35.000000 46.000000" preserveAspectRatio="xMidYMid meet">
<g transform="translate(0.000000,46.000000) scale(0.100000,-0.100000)" fill="#000000" stroke="none">
<path d="M133 440 c-54 -24 -78 -63 -92 -153 -15 -103 -25 -287 -14 -287 13 0 179 110 240 158 69 55 86 90 81 159 -4 44 -11 60 -38 88 -31 32 -82 55 -120 55 -8 0 -34 -9 -57 -20z"/>
</g>
</svg>
</object>

CSS

.redDiv svg g {
fill: green
}