/* root element for tabtop1  */
ul.tabtop1 {
	list-style:none;
	margin:0 ;
	padding:0;
	border-bottom:1px solid #666;
	height:30px;
}
/* single tab */
ul.tabtop1 li {
	float:left;
	text-indent:0;
	padding:0;
	margin:0 ;
	list-style-image:none ;
}
/* link inside the tab. uses a background image */
ul.tabtop1 a {
	background: url(blue.png) no-repeat -420px 0;
	font-size:11px;
	display:block;
	height: 30px;
	line-height:30px;
	width: 134px;
	text-align:center;
	text-decoration:none;
	color:#333;
	padding:0px;
	margin:0px;
	position:relative;
	top:1px;
	outline:none;
}
ul.tabtop1 a:active {
	outline:none;
}
/* when mouse enters the tab move the background image */
ul.tabtop1 a:hover {
	background-position: -420px -31px;
	color:#fff;
}
/* active tab uses a class name "current". it's highlight is also done by moving the background image. */
ul.tabtop1 a.current, ul.tabtop1 a.current:hover, ul.tabtop1 li.current a {
	background-position: -420px -62px;
	cursor:default ;
	color:#000 ;
}
/* Different widths for tabtop1: use a class name: w1, w2, w3 or w2 */


/* width 1 */
ul.tabtop1 a.s {
	background-position: -553px 0;
	width:81px;
}
ul.tabtop1 a.s:hover {
	background-position: -553px -31px;
}
ul.tabtop1 a.s.current {
	background-position: -553px -62px;
}
/* width 2 */
ul.tabtop1 a.l {
	background-position: -248px -0px;
	width:174px;
}
ul.tabtop1 a.l:hover {
	background-position: -248px -31px;
}
ul.tabtop1 a.l.current {
	background-position: -248px -62px;
}
/* width 3 */
ul.tabtop1 a.xl {
	background-position: 0 -0px;
	width:248px;
}
ul.tabtop1 a.xl:hover {
	background-position: 0 -31px;
}
ul.tabtop1 a.xl.current {
	background-position: 0 -62px;
}
/* initially all panes are hidden */ 
/* tab pane styling */
div.tabtoppane1 {
	display:block;
	padding:15px 10px;
	border:1px solid #999;
	border-top:0;
	min-height:100px;
	font-size:14px;
	background-color:#fff;
}