/*************************************************************
  IMKTG Tabs file.  To use, this file, include the file in your HTML screen
  <link rel="stylesheet" href="IMKTG_tabs.css">
  To create a new tab set, create a ul inside of a div tag.  Each li tag should
  contain an "a" tag.
  Sample:
  <div id="IMKTG_tabs">
  <ul>
  <li><a href="#" id="tab1" onMouseOver="document.getElementById(this.id).className='active'" onMouseOut="document.getElementById(this.id).className=''">Sample Tab 1</a></li>
  <li><a href="#" id="tab2" onMouseOver="document.getElementById(this.id).className='active'" onMouseOut="document.getElementById(this.id).className=''">Sample Tab 2</a></li>
  <li><a href="#" id="tab3" onMouseOver="document.getElementById(this.id).className='active'" onMouseOut="document.getElementById(this.id).className=''">Sample Tab 3</a></li>
  </ul>
  </div>
*************************************************************/

#IMKTG_tabs{
  float: left;
  padding: 0px;
  padding-left: 0px;
  padding-right: 0px;
  padding-top: 0px;
  padding-bottom: 9px;
  margin: 0px;
  margin-left: 0px;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  border: 0px;
  background: url("images/tabfootercenter.gif") repeat-x bottom; 
}

#IMKTG_tabs ul{
  list-style: none;
  padding-left: 0px;
  padding-right: 0px;
  padding-bottom: 0px; 
  padding-top: 0px;
  margin: 0px;
  margin-bottom: 0px;
}

#IMKTG_tabs li{
  float: left;
  /* "Spacer" image path */
  background: url("images/tab1right.gif") no-repeat right top; 
  margin: 0;
  padding-left: 0px;
  padding-right: 0px;
  padding-top: 0px;
  padding-bottom: 0px;
  margin-bottom: 0px;

}

#IMKTG_tabs a{
  display: block;
  /* Main path background image */
  background: url("images/tab1left.gif") no-repeat left top; 
  /* Padding around text on the tab */
  padding-left: 13px; 
  padding-right: 13px; 
  padding-top: 4px; 
  /* NOTE:  This may throw off the background image...be careful */
  padding-bottom: 2px; 
  text-decoration:none;
  color: #009;
  font-weight: bold;
  font-size: 12px;
  width: .1em;
  white-space:nowrap;

}
#IMKTG_tabs > ul a {width:auto;}

#IMKTG_tabs .active{
  color: #fff;  /* Color of the highlighted tab */
  background: url("images/tab2left.gif") no-repeat left top; 
}
#IMKTG_tabs .liactive{
  background: url("images/tab2right.gif") no-repeat right top; 
}

/* Commented Backslash Hack
   hides rule from IE5-Mac \*/
#IMKTG_tabs a {float:none;}
/* End IE5-Mac hack */

.redheader {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: bold;
	color: #CC0000;
	line-height: normal;
	text-align: center;
}
.redheader-left {

	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: bold;
	color: #CC0000;
	line-height: normal;
}

