/* tab.css
 *
 * 	14px	font size
 * 	16px	line-height
 * 	 8px	offset from container
 *	30px	height to top of tabDiv -- see bottom for calculation
 *	#cff	unselected background color
 *	#6cf	selected background color
 *	 8px	radius of rounded tab corners (mozilla only)
 *	#000	color of tab text
 */

ul.tabNavigation {
  position: absolute;
  top: 8px;					/* distance from top of container		*/
  margin: 0;
  padding: 0 0 0 0;				/* top, right, bottom, left			*/
}

ul.tabNavigation li {
  font-family: verdana, tahoma, geneva, arial, helvetica, sans-serif;
  font-size: 14px;
  line-height: 16px;
  display: inline;
  list-style-image: none;
  list-style-position: outside;
  list-style-type: none;
}

/* common properties for both "selected" & "unselected" tabs -- only "selected" needs to have changes
 *
 */

ul.tabNavigation a, ul.tabNavigation a:link, ul.tabNavigation a:visited {
  background: #cff;
  border-bottom: 1px solid #cff;		/* should match tab background			*/
  border-left: 1px outset #ddd;			/* grey is generally appropriate for these	*/
  border-top: 1px outset #ddd;
  border-right: 1px outset #ddd;
  color: #000;
  float: left;
  margin: 0 5px 0 2px;				/* top, right, bottom, left			*/
  padding: 2px 6px 2px 6px;			/* top, right, bottom, left			*/
  text-decoration: none;
  -moz-border-radius: 8px 8px 0px 0px;		/* top, right, bottom, left; Mozilla only -- but does no harm to IE	*/
}

ul.tabNavigation li.unselectedTab a, ul.tabNavigation li.unselectedTab a:link, ul.tabNavigation li.unselectedTab a:visited {
  /* unselected tab styling -- defaults to above... */
}

/* selected tab styling -- only specify the differences from the default...	*/

ul.tabNavigation li.selectedTab a, ul.tabNavigation li.selectedTab a:link, ul.tabNavigation li.selectedTab a:visited {
  font-weight: bold;
  cursor: text;
  background: #6cf;
  border-bottom: 1px solid #6cf;		/* show the selected tab background color as the top border	*/
}

ul.tabNavigation li.fixTabsIE {
  display: none;
  visibility: hidden;
}

div.tabDiv {
  position: absolute;
  top: 30px;
  display: none;
}

div.selectedTabDiv {
  position: absolute;
  top: 30px;
  display: block;
  border-top: 2px solid #6cf;			/* show the selected tab background color as the top border	*/
}

/*	 8	top of container
	 1	top border of tab
	 2	top padding of tab
	16	line height
	 2	bottom padding of tab
	 1 	bottom border of tab
	==
	30	where to put the top of the tabDiv
 */
