Add this to the div containing the spry's:
HTML Code:
style="border:solid #000000 1px; width:450px"
So your code for the opening div tag would be:
HTML Code:
<div id="computers" class="SlidingPanels" tabindex="0" style="border:solid #000000 1px; width:450px">
Alternatively you can add that code to the CSS that controls that section (#computers) in the following form:
Code:
border:solid #000000 1px;
width 450px;
Setting the width to 450 pixels will control what is displayed within the div. Right now, with it set at default, it's at 100% page width (or parent div width). Obviously you can change the values to be whatever you want.
Hope that helps.