Making vertical tabs "clickable"

Making vertical tabs "clickable"

Hey, on a page I'm working on there are horizontal and vertical tabs.  The horizontal ones work fine, i can click anywhere in the tab and it activates it.  But the vertical tabs only work when i click on the actual text inside the tab, not anywhere else.  How can I make the whole tab clickable?

here is the .css for the vertically aligned tabs.

  1.     <style type="text/css">
  2.         /* Vertical Tabs----------------------------------*/
  3. .ui-tabs-vertical
  4.         {
  5.             width: 69em;
  6.         }
  7.         .ui-tabs-vertical .ui-tabs-nav
  8.         {
  9.             padding: .2em .1em .2em .2em;
  10.             float: left;
  11.             width: 13.75em;
  12.             background: #eeeeee;
  13.         }
  14.         .ui-tabs-vertical .ui-tabs-nav li
  15.         {
  16.             clear: left;
  17.             width: 100%;
  18.             border-bottom-width: 1px !important;
  19.             border-right-width: 0 !important;
  20.             margin: 0 -1px .2em 0;
  21.         }
  22.         .ui-tabs-vertical .ui-tabs-nav li a
  23.         {
  24.             display: block;
  25.         }
  26.         .ui-tabs-vertical .ui-tabs-nav li.ui-tabs-selected
  27.         {
  28.             padding-bottom: 0;
  29.             padding-right: .1em;
  30.             border-right-width: 1px;
  31.             border-right-width: 1px;
  32.         }
  33.         .ui-tabs-vertical .ui-tabs-panel
  34.         {
  35.             padding: 1em;
  36.             float: right;
  37.             width: 51em;
  38.         }
  39.         a
  40.         {
  41.             outline: none;
  42.         }
  43.         a img
  44.         {
  45.             border: none;
  46.         }
  47.     </style>

thanks for any and all help!