/* ------------------------------------------------------------
 * PROJECT        : FHSC Interface Standard
 * FILENAME       : tabnavigation.css
 * ------------------------------------------------------------
 * DATE CREATED   : 04 Aug 2006
 * LAST UPDATED   : 16 Mar 2007
 * ------------------------------------------------------------
 * AUTHOR(S)      : Kevin Scholl (http://www.ksscholl.com/)
 * ------------------------------------------------------------ */

/* ------------------------------------------------------------
 * TABBED NAVIGATION
 * ------------------------------------------------------------ */

ul {
  position: relative;
  }
	
ul.tabBar {
  display: none;
	margin: 0;
	padding: 0;
	/* height: 1%; for IE, no effect on Firefox */
	list-style: none;
	z-index: 9;
  }
	
ul.tabBar li {
	float: left;
  position: relative;
  margin: 0 -4px -1px 0;
  border-bottom: 1px solid #407BC1;
	background: transparent url(../images/tabnav_right.gif) right top no-repeat;
  padding: 0;
	font: bold 70%/100% verdana,arial, helvetica, sans-serif;
  }
ul.tabBar li.blank {
  margin-right: 0;
	width: 0;
  }
	
ul.tabBar li a {
	display: block;
	margin: 0;
	border: 0;
	background: transparent url(../images/tabnav_left.gif) left top no-repeat;
	padding: 5px 19px 4px 10px;
	text-decoration: none;
  }

ul.tabBar li.active {
	background: transparent url(../images/tabnav_right_active.gif) right top no-repeat;
	z-index: 19;
  }	
ul.tabBar li.active a {
	background: transparent url(../images/tabnav_left_active.gif) left top no-repeat;
	color: #FFF;
	cursor: default;
  }

ul.tabBar li.disabled {
	background: transparent url(../images/tabnav_right_disabled.gif) right top no-repeat;
  }	
ul.tabBar li.disabled a {
	background: transparent url(../images/tabnav_left_disabled.gif) left top no-repeat;
	color: #ADBCCD;
	cursor: default;
  }
			
/* ------------------------------------------------------------
 * TAB CONTROL BLOCK
 * ------------------------------------------------------------ */

.tabControl {
	visibility: hidden;
	float: right;
	margin: 1px 0 0 0;
	padding: 0;
	font-size: 0;
  }

/* ------------------------------------------------------------
 * TAB INDEX
 * ------------------------------------------------------------ */

h3 span {
  float: right;
	position: relative;
	font-weight: normal;
  }
