Seeking CSS Opinions

Not quite sure what the "correct" behavior should be in the HTML below.  What cursor would you expect to get when you mouse over the TD and why? 

<html>
<style>
TABLE.tbl1 TD
{
cursor:hand;
}
TD.td1
{
cursor:move;
}
</style>
<body>
<table class="tbl1">
<tr>
<td class="td1">what cursor is it?</td>
</tr>
</table>
</body>
</html>