In our last meeting, the PM elaborated on his list of grievances, and noted discontinuities in shadows, rounded/square corners, and color palettes for the aforementioned bars. So I spent this past week trying to revamp these elements. Initially I tried using an image manipulation program to modify the existing images, but found it EXTREMELY difficult to get the radial widths (despite knowing their values) of my rounded corners to match with those generated by the webpage's CSS. After a while I realized this approach was a dead-end and ditched it. My next (and only other obvious) avenue of attack was by manipulating the images/divs with HTML/CSS. As it turns out, this works really well.

I also found that I was able to make transparent gradients using the rgba() method. For example:
background-image: -moz-linear-gradient(100% 30% 90deg, rgba(239, 214, 120,.67), rgba(255, 255, 255,.67));the above two lines normally define a gradient, but by using the rgba method, I was able to set an alpha transparency, and make them transparent. Neat trick. The only caveat is that you have to convert color codes from Hex to Decimal.
background-image: -webkit-gradient(linear, 0% 0%, 0% 50%, from rgba(255, 255, 255,.67), to rgba(239, 214, 120,.67));
I present, the finished product: