/*--------------------------------------------------
  .tabber = before the tabber interface is set up
  .tabberlive = after the tabber interface is set up
  --------------------------------------------------*/
.tabber {
}
.tabberlive#tab2 .tabbertab {
	overflow:auto;
}
/* $Id: example.css,v 1.5 2006/03/27 02:44:36 pat Exp $ */

/*--------------------------------------------------
  REQUIRED to hide the non-active tab content.
  But do not hide them in the print stylesheet!
  --------------------------------------------------*/
.tabberlive .tabbertabhide {
 display:none;
}
.tabberlive {
 margin-top:1em;
}

/*--------------------------------------------------
  ul.tabbernav = the tab navigation list
  li.tabberactive = the active tab
  --------------------------------------------------*/
ul.tabbernav
{
	margin:0;
	padding-top: 7px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 130px;
}

ul.tabbernav li
{
	list-style: none;
	margin: 0;
	float: left;
	line-height: 24px;
	text-align: center;
	font-size: 10px;
}

#courseinfo ul.tabbernav li a
{
	text-decoration: none;
	background-image: url(../images/top/tab_a.jpg);
	background-repeat: no-repeat;
	height: 24px;
	width: 200px;
	display: block;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCCCCC;
}

#courseinfo ul.tabbernav li a:link {
	color: #CC0000;
}
#courseinfo ul.tabbernav li a:visited { color: #667; }

#courseinfo ul.tabbernav li a:hover
{
	height: 24px;
	width: 200px;
	background-image: url(../images/top/tab_b.gif);
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCCCCC;
	color: #996600;
}

#courseinfo ul.tabbernav li.tabberactive a
{
	background-image: url(../images/top/tab_b.gif);
	background-repeat: no-repeat;
	height: 24px;
	width: 200px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #ECE9E0;
	color: #CC0000;
	font-weight: bold;
	text-decoration: none;
}

#courseinfo ul.tabbernav li.tabberactive a:hover
{
	background-image: url(../images/top/tab_b.gif);
	background-repeat: no-repeat;
	height: 24px;
	width: 200px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #ECE9E0;
	color: #996600;
}

/*--------------------------------------------------
  .tabbertab = the tab content
  Add style only after the tabber interface is set up (.tabberlive)
  --------------------------------------------------*/
.tabberlive .tabbertab {
	clear: both; /* If you set a fix height set overflow to auto and you will get a
    scrollbar when necessary */ /* overflow:auto; */
}

/* If desired, hide the heading since a heading is provided by the tab */
.tabberlive .tabbertab h2 {
 display:none;
}

/* Example of using an ID to set different styles for the tabs on the page */
.tabberlive#tab1 {
}
.tabberlive#tab2 {
}
