 See picture. How do I hide the horizontal and vertical scrolls bars in the div. I use
See picture. How do I hide the horizontal and vertical scrolls bars in the div. I use 
width: 100%;
height: 250px;
overflow-x: auto;
overflow-y: visible;
white-space: nowrap;
I want to allow scrolling horizontally (but hide the scrollbars) and anything that overflows vertically should be shown to the user.
Here's the HTML
<div class="shell">
    <div class="overlay-shell-content">
        <div class="area">
            <div class="panel">
                <div class="related">
                    <h4>More like this:</h4>
                    <div class="related-items clearfix">
..... 
                    </div>
                </div>
            </div>
        </div>
    </div>
</div>
