I’m trying to put together this layout…

… but I’m having issues with the middle section.
The left section (with the MP3 icon) is ALWAYS aligned left and has fixed width of 72px… the right section (with the READY text) is ALWAYS aligned right BUT but its width may vary, i.e. it is not fixed.
I want the middle section to be aligned to the left and span the width between the left & right sections without overlapping the right section. So if the text is obscenely long, it will wrap around to a second line instead of overlapping or pushing the right section down.
This is my basic structure so far…
<div id="files">
<div class="file">
<div class="file-icon"></div>
<div class="file-status">
<span class="file-status-text">READY 100%</span>
</div>
<div class="file-info">
<div class="file-name">
<span class="file-name-text"></span>
</div>
</div>
</div>
</div>
How would I get this layout? Feel free to modify my HTML structure… it’s just what I have so far, nothing is set in stone.
I figured it out. Here’s a fiddle:
Here’s the code:
HTML
CSS