The following screen shot shows a jquery ui datepicker that, up until recently, was displaying correctly:

The class associated with the problematic table is ui-datepicker-calendar, which is nested in ui-datepicker. I can inspect this element in chrome and see it has a width of 100%, which erroneously confers a width of 617px, that overruns the 217px width of its parent.
I admit my inexperience with CSS, but I thought I could override the style by using something like the following snippet:
.ui-datepicker-calendar
{
width: 217px !important;
}
I've seen this work in other questions on Stack Overflow, but I've been unable to fix this particular bug with like solutions to the above. Any ideas are enthusiastically welcomed.
Edit:
Code:
HTML:
<div id="container">
<br />
<!--This div will be dynamically loaded based on the selected tab-->
<div id="dataDisplay">
<!-- Section table is loaded here -->
</div>
<!--This div will be dynamically loaded based on the selected tab-->
<div id="mainBody">
<!--Date picker is loaded here -->
</div>
</div>
In the CSS:
#sectionTable th, td{
border-collapse:collapse;
background-color:#EEE;
border:2px solid #39F;
min-width:80px;
width:97%;
}
The culprit is in the above CSS entry for sectionTable. Defining the width on this table in another div caused the symptoms in the above screen shot as Mystere Man points out.
For anyone else that stumbles across this question, check out the following resources for CSS syntax and selectors to get a better hold of your CSS file.