/* everything is constructed with a single background image */

/* root element for tabs */
#flowtabs {
	
	/* dimensions */
	width:620px;
	height:33px !important;
	margin:0 !important; 
	padding:0;	
	
	/* IE6 specific branch (prefixed with "_") */
	_margin-bottom:-2px;
}

/* single tab */
#flowtabs li { 
	float:left; 
	margin:0; 
	padding:0; 
	text-indent:0; 
	list-style-type:none;
	text-indent:-2000px;
}

/* a- tag inside single tab */
#flowtabs li a {
	background: url(../images/tabs.jpg) no-repeat;
	display:block;
	height: 33px;   
	width: 124px; 	
	padding:0px;
	margin:0px;
}

/* adjust the background image position on each tab */
#flowtabs #t1 			{ background-position: 0 0; }
#flowtabs #t2 			{ background-position: -124px 0; }
#flowtabs #t3 			{ background-position: -248px 0; }
#flowtabs #t4 			{ background-position: -372px 0; }
#flowtabs #t5			{ background-position: -496px 0; }
 
/* mouseover state */
#flowtabs #t1:hover 	{ background-position:      0 -33px; }
#flowtabs #t2:hover 	{ background-position: -124px -33px; }
#flowtabs #t3:hover 	{ background-position: -248px -33px; }
#flowtabs #t4:hover 	{ background-position: -372px -33px; }
#flowtabs #t5:hover 	{ background-position: -496px -33px; }

/* currently selected tabs */
#flowtabs #t1.current 	{ background-position:      0 -66px; }
#flowtabs #t2.current 	{ background-position: -124px -66px; }
#flowtabs #t3.current 	{ background-position: -248px -66px; }
#flowtabs #t4.current 	{ background-position: -372px -66px; }
#flowtabs #t5.current 	{ background-position: -496px -66px; }


/* panes */
#flowpanes {
	background: url(../images/tabs.jpg) no-repeat 0 -100px;	
	width:100%;
	height:132px;	
}

/* single pane */
#flowpanes div {
	font-family:'Trebuchet MS', Arial, Verdana;
	font-size:11px;
	display:none;	
	color:#8b8b8b;
	padding-top:16px;
	width:619px;
	line-height:20px;
}
#flowpanes div a{
text-decoration:underline;
color:#4fa0e2;
}

