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

/* root element for tabs */
#flowtabs {
	
	/* dimensions */
	width:960px;
	height:30px !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;
}

/* a- tag inside single tab */
#flowtabs li a {
	background: url(panes_960.jpg) no-repeat;
	display:block;
	height: 30px;   /* need to add 1px to height so it blends in with background photo */
	width: 160px; 	
	padding:0px;
	margin:0px;
	
	/* font decoration */
	color:#000;
	font-size:12px;
	line-height:31px;
	text-align:center;
	text-decoration:none;
}

/* adjust the background image position on each tab */
#flowtabs #t1 			{ background-position: 0 0; }
#flowtabs #t2 			{ background-position: -160px 0; }
#flowtabs #t3 			{ background-position: -320px 0; }
#flowtabs #t4 			{ background-position: -480px 0;}
#flowtabs #t5 			{ background-position: -640px 0;}
#flowtabs #t6 			{ background-position: -800px 0; width:160px;}
 
/* mouseover state */
#flowtabs a:hover 		{ color:#fff;	 }
#flowtabs #t1:hover 	{ background-position:      0 -30px; }
#flowtabs #t2:hover 	{ background-position: -160px -30px; }
#flowtabs #t3:hover 	{ background-position: -320px -30px; }
#flowtabs #t4:hover 	{ background-position: -480px -30px; }
#flowtabs #t5:hover 	{ background-position: -640px -30px; }
#flowtabs #t6:hover 	{ background-position: -800px -30px; }

/* currently selected tabs */
#flowtabs a.current		{
	cursor:default;
	color:#0d095f;
	line-height:30px;
	font-weight: bold;
}
#flowtabs #t1.current { background-position:      0 -60px; }
#flowtabs #t2.current { background-position: -160px -60px; }
#flowtabs #t3.current { background-position: -320px -60px; }
#flowtabs #t4.current { background-position: -480px -60px; }
#flowtabs #t5.current { background-position: -640px -60px; }
#flowtabs #t6.current { background-position: -800px -60px; }


/* panes  MUST put jpg link and full width to see all of background */
#flowpanes {
	background: url(panes_960.jpg) no-repeat 0 -100px;		
	width:960px;
	height:480px;	/* need to adjust ??? */
}


/* single pane */
#flowpanes div {
	display:none;	
	color:#000;	
	margin:20px 40px;
}

/* some decorations for elements inside single pane - NOT USED */
#flowpanes div h2 {
	font-weight:normal;
	color:#ddd;
	letter-spacing:1px;
	margin:10px 0 0 0;
	font-size:22px;	
}

#flowpanes a { /* hyperlink colours USED */
	color:#000000;		
	font-size:11px;
}

#flowpanes p, #flowpanes samp {
	color:#000;		
}

#flowpanes .narrow {
	padding-right:160px;		
}
