header/body column widths not in sync with dataTables 1.9.4 and bootstrap 2.3.2

HTML

<script src="https://www.datatables.net/release-datatables/media/js/jquery.dataTables.js"></script>
<script src="https://www.datatables.net/release-datatables/extensions/FixedColumns/js/dataTables.fixedColumns.js"></script>
	<div class="container">
		<div class="row">
			<div class="span12">
				<table id="teamTable" class="table table-striped table-bordered">
					<thead>
						<tr>
							<th>Team Member</th>
							<th>Balancing Team &amp; Individual Priorities</th>
							<th>Conscientiousness</th>
							<th>Relating to Others</th>
							<th>Preference for Teamwork</th>
							<th>Problem Solving</th>
							<th>Effort</th>
							<th>Relying on Others</th>
							<th>Balancing Work Tasks &amp; Relationships</th>
							<th>Work Life Balance</th>
							<th>Assertiveness</th>
							<th>Time Urgency</th>
							<th>Pacing Style</th>
							<th>Resolving Conflict</th>
							<th>Avoiding Judgement</th>
							<th>Seeking Approval</th>
							<th>Learning</th>
						</tr>
					</thead>
					<tbody id="tableBody">
						<tr>
							<td>Alexandra Slater</td>
							<td><p><a href="#">Team Focus</a></p></td>
							<td><p><a href="#">Preparer</a></p></td>
							<td><p><a href="#">Relationship	Prioritizer</a></p></td>
							<td><p><a href="#">Balanced Worker</a></p></td>
							<td><p><a href="#">Enthusiastic	Theorist</a></p></td>
							<td><p><a href="#">Marathon Runner</a></p></td>
							<td><p><a href="#">Three Musketeer</a></p></td>
							<td><p><a href="#">Relationship	Builder</a></p></td>
							<td><p><a href="#">Work-Life Balancer</a></p></td>
							<td><p><a href="#">Behind The Scenes</a></p></td>
							<td><p><a href="#">Measured	Progresser</a></p></td>
							<td><p><a href="#">Last Minute</a></p></td>
							<td><p><a href="#">Adaptor</a></p></td>
							<td><p><a href="#">Hidden Light</a></p></td>
							<td><p><a href="#">Diamond</a></p></td>
							<td><p><a href="#">Eternal Student</a></p></td>
						</tr>
						<tr>
							<td>MIKE...

JavaScript

var tableId = 'teamTable';

			var oTable = $('#' + tableId).dataTable({
			    'sDom':'t','bPaginate': false, 'scrollCollapse': true,'scrollX':true, 
								'bAutoWidth':false, 'scrollY':'80%','bDeferRender': true, 'aaSorting': [],'jQueryUI':true
			});

		    new $.fn.dataTable.FixedColumns(oTable);