
/* root element for tabs  */
ul.tabs { 
	display: block;
	list-style:none; 
	margin:0; 
	margin-bottom: 15px;
	padding:0;		
	height:40px;
	width:450px;
	line-height: 19px;
	background: url(http://www.hetsprekersburo.nl/img/bg-tabs.png);
	background-repeat:repeat-x;
}

/* single tab */
ul.tabs li { 
	float:left;	
	height: 28px;
	margin-left: 15px;
}

/* link inside the tab. uses a background image */
ul.tabs a { 
	font-size: 9pt;
	line-height: 20px;
	width: 100%;
	text-align:center;	
	text-decoration:none;
	color:#A2A2A2;
}

ul.tabs a:active {
	outline:none;		
}

/* when mouse enters the tab move the background image */
ul.tabs a:hover {
	color:#F60;
}

/* active tab uses a class name "current". its highlight is also done by moving the background image. */
ul.tabs a.current, ul.tabs a.current:hover, ul.tabs li.current a {
	color: #686868;
	font-family: Verdana, Geneva, sans-serif;
	cursor: hand;
	padding: 0;
	
}

/* width 1 */
ul.tabs a.s 		{ }
ul.tabs a.s:hover 	{ }
ul.tabs a.s.current  	{ }

/* width 2 */
ul.tabs a.l 		{ background-position: -248px -0px; width:174px; }
ul.tabs a.l:hover 	{ background-position: -248px -31px; }
ul.tabs a.l.current  	{ background-position: -248px -62px; }


/* width 3 */
ul.tabs a.xl 		{ background-position: 0 -0px; width:248px; }
ul.tabs a.xl:hover 	{ background-position: 0 -31px; }
ul.tabs a.xl.current 	{ background-position: 0 -62px; }


/* initially all panes are hidden */ 
.panes .pane {
	display:none;		
}

/* tab pane styling */
.panes div {
	display:none;		
	padding:0;
	border:0px;
	border-top:0;
	height:auto;
	width: 450px;
}

.panes_down {
	display:block;		
	border:0px;
	border-top:0;
	height: 9px;
	width: 730px;
} 

