/*- Menu Tabs C--------------------------- */

    #tabsC {
      float:left;
      width:100%;
      background:#ffffff;   /* background for the tab strip, was #EDF7E7 */
      font-size:93%;
	  font: bold 11px/1.5em Verdana;
      line-height:22px;  /* 22 + 10 + 10 = 42 = the height of the button images */
      }
    #tabsC ul {
	margin:0;
	padding:0px 10px 0 5px;   /* top was 10, controls the top border */ /* left was 50, now 5 = space to left of tabs */
	list-style:none;
      }
    #tabsC li {
      display:inline;
      margin:0;
      padding:0;
      }
    #tabsC a {
      float:left;
      background:url("/styles/tableftC.gif") no-repeat left bottom;
      margin:0;
      padding:0 0 0 4px;
      text-decoration:none;
      }
    #tabsC a span {
      float:left;
      display:block;
      background:url("/styles/tabrightC.gif") no-repeat right bottom;
      padding:5px 15px 4px 6px;
	  color:#a7cd9e;    /* standard color of the text */
      }
    /* Commented Backslash Hack hides rule from IE5-Mac \*/
    #tabsC a span {float:none;}
    /* End IE5-Mac hack */
    #tabsC a:hover span {
      color:#FFF;   /* colour of the text when hovered over */
      }
    #tabsC a:hover {
      background-position:0% -11px;    /* -84 bg, -42 need much more,-62 wd, -22 close,-32 wd, -27 half way,-12   */
      }
    #tabsC a:hover span {
      background-position:100% -11px;
    }  

	#tabsC #current a {
		background-position:0% -11px;
	}
	#tabsC #current a span {
		background-position:100% -11px;
				color:#ffffff;    /* color of the text on the selected tab */
	}

