Is there an option to draw a circular segment using only CSS / CSS3?

I need this green part of the circle.
I tried this:
div { width: 86px; height: 22px; background-color: green; border-bottom-right-radius: 42px; border-bottom-left-radius: 42px; }
<div></div>
But this does not look like a circular segment.
css css3 segment circular
Maryna
source share