too much positioning really, and because you're always positioning the divs/spans a percentage from the left side that is bound to cause an overlap eventuall, what you need is to give at least one of you column a width (and you have that "snap" with a width of 184px) so you know that the right side has to be at least 184, + and "margins" from the left side
however I'd advise to lose the positioning altogether as @JackWilson suggests, AP (absolute positioning) should be used sparingly, not really advisable for entire layouts unless you're after a UI type interface - then when it is used it's best to at least have it inside an element that is positioned relatively so it's taking it's position from an element that is already in the flow.
here's a working Sample in JSBIN
I've coloured the backgrounds so you can "see" the divs, this is often a good idea when developing too.. btw the way you also don't need to specify display block on either a floated or an AP'd element they automatically are blocks once those properties are applied