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

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

/* single tab */
#flowtabs { gap:1px }
#flowtabs li { 
	width: 25%;
	float:left; 
	margin:0; 
	padding:0; 
	text-indent:0; 
	list-style-type:none;
	border: 1px solid #1E3C46;
    border-bottom: none;
    border-radius: 3px 3px 0 0;
}

/* a- tag inside single tab */
#flowtabs li a {
/*	background: url('images/tab2.png') ;*/
	display:block;
	height: 31px;   
	width: 100%; 	
	padding:0px;
	margin:0px;
	/* font decoration */
	color:#000;
	font-size:14px;
	line-height:33px;
	text-align:center;
	text-decoration:none;
    border-radius: 3px 3px 0 0;
    background: #A9A9A9;
    border: 1px solid #fff;
    border-bottom: 2px solid #fff;
}

/* adjust the background image position on each tab */
/*#flowtabs #t1 			{ background-position: 0 0; }
#flowtabs #t2 			{ background-position: -149px 0; }
#flowtabs #t3 			{ background-position: -298px 0; }
#flowtabs #t4 			{ background-position: -447px 0; width:150px;}
 */
/* mouseover state */
#flowtabs a:hover 		{ color:#fff;	 }
/*#flowtabs #t1:hover 	{ background-position:      0 -33px; }
#flowtabs #t2:hover 	{ background-position: -149px -33px; }
#flowtabs #t3:hover 	{ background-position: -298px -33px; }
#flowtabs #t4:hover 	{ background-position: -447px -33px; }*/

/* currently selected tabs */
#flowtabs .active a		{ cursor:default; color:#fff; background:#1E3C46 }
/*#flowtabs #t1.current { background-position:      0 -66px; }
#flowtabs #t2.current { background-position: -149px -66px; }
#flowtabs #t3.current { background-position: -298px -66px; }
#flowtabs #t4.current { background-position: -449px -66px; }*/

#flowtabs .active a { 
	position:relative;
	border-radius: 3px 3px 0 0;
}
#flowtabs .active a::after {
	content: '';
	width: 100%;
	height: 3px;
	position: absolute;
	bottom: -2px;
	left: 0;
	z-index: 1;
	background:#1E3C46
}
/* panes */
#flowpanes {
	background-image:  url('assets/image/bgtable1.png');
	background-repeat:repeat;
	background-position:right top;		
	width:100%;
	height:450px;
	background-size: 100% 100%;	
	border-radius: 0 0 3px 3px;
	border: 1px solid #fff;
	border-top: none;
}
#flowpanes_bg {
	border-radius: 0 0 3px 3px;
	border: 1px solid #1E3C46;
	border-top: none;
}

/* single pane */
#flowpanes div {
	display:none;	
	color:black;	
	margin-top:20px;
	margin-right:50px;
}

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

#flowpanes a {
	color:#cc9;		
	font-size:14px;
}

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

#flowpanes div.narrow {
	padding-right:0;		
}
