Scrollbar

How do I go about removing the scrollbar on the right for this page? I’ve tried identifying and messing with various html elements but I cannot find the right one.

Remove the max-height from:


.Top_mid {
    padding: 0px 5px 10px;
[COLOR=#ff0000]    max-height: 480px;[/COLOR]
    overflow: auto;
}

You can also remove overflow:auto as you don’t need it anymore.