http://cdpn.io/FykHr I seem to have an issue with the combined CSS properties:
position: absolute; bottom: 0;
First you can see that the .f
You need to add position: relative; to the parent container, which in this case is .wrapper.
position: relative;
.wrapper
Here's a good reference page on absolute positioning.