Firstly remove the float from your #group div as it's causing the content to come out of the document flow and isn't needed. There are work arounds for this if you need to use a float but you don't need it so the easiest fix is to simply remove it.
Code:
#group {
width:300px;
margin-right:20px;
padding:20px;
font-family:Arial, Helvetica, sans-serif;
font-size:11px;
border-right:2px #eacdff dotted;
}
This will then leave you with a big gap at the bottom and the top due to you specifying a 400px height for the top and bottom. I've changed this to 20px and it should look much better but you can specify whatever height you require there.
Code:
/* height and width attributes */
.rbtop div, .rbtop, .rbbot div, .rbbot {
width: 100%;
height: 20px;
font-size: 1px;
}
Hope that helps.
Bookmarks