/* CSS Document 

 Below is the CSS for the example tab panel div tags. You may, of course, change these according to your  design requirements.  Refer to the Creating a Tab Panel article for notes  about this CSS. */

.tab { 
	font-family: verdana,sans-serif; 
	font-size: 12px;
	font-weight:bold;
	width:auto;
	white-space: nowrap;
	text-align: center;
	border-style: solid;
	border-color: black;
	border-left-width: 1px;
	border-right-width: 1px;
	border-top-width: 1px;
	border-bottom-width: 0px;
	padding: 5px;
	cursor: pointer;
	width:auto;
	}
.tabhold { 
	background-color: #6F6F6F;
	color: #ffffff;
	}
.tabfocus { 
	background-color:#CC0000;
	color: #ffffff;
	}
.tabcontent { 
	font-family: sans-serif; 
	font-size: 14px;
	width: 737px;
	height: 135px;
	border-style: solid;
	border-color: black;
	border-width: .5px;
	padding-top: 1px;
	padding-left: 0px;
	padding-right: 0px;
	background-image:url(../images/tab-back1.gif); background-position:bottom; background-repeat:repeat-x;
	}
