/* everything is constructed with a single background image */

/* root element for tabs */
#flowtabs
{
	/* dimensions */
	width: 600px;
	margin-top: -14px;
	margin-left: 100px;
	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
{
	display: block;
	width: 20px;
	padding: 0px;
	margin: 0px; /* font decoration */
	color: #FFFFFF;
	font-size: 12px;
	line-height: 15px;
	text-align: center;
	text-decoration: none;
}
#flowtabs li a:hover
{
	display: block;
	padding: 0px;
	margin: 0px; /* font decoration */
	font-size: 12px;
	line-height: 15px;
	text-align: center;
	text-decoration: none;
	background-color: #468DB7;
}
#flowtabs a.current
{
	cursor: default;
	color: #fff;
	line-height: 15px;
	background-color: #468DB7;
}



/* override the root element to enable scrolling */
#flowpanes
{
	position: relative;
	overflow: hidden;
	clear: both;
	width: 600px;
	height: 256px;
}


/* override single pane */
#flowpanes div
{
	float: left;
	display: block;
	width: 600px;
	cursor: pointer;
	font-size: 14px;
}

#flowpanes .less, #flowpanes .less a
{
	color: #999 !important;
	font-size: 11px;
}







#flowpanes p, #flowpanes samp
{
	color: #ccc;
}

#flowpanes div.narrow
{
	padding-right: 160px;
}
/* our additional wrapper element for the items */
#flowpanes .items
{
	width: 20000em;
	position: absolute;
	clear: both;
	margin: 0;
	padding: 0;
}

#maskright
{
	margin: 0;

	float:left;
	width:200px;
	overflow:hidden;
}
#maskleft .title 
{
	margin-top: -6px;
	color:#FFFFFF;
}
#maskleft
{
	float:left;
	width:625px;
		overflow:hidden;
}


/* the overlayed element */
#jquerybox {
	
	/* must be initially hidden */
	display:none;
	
	/* place overlay on top of other elements */
	z-index:10000;
	
	/* styling */
	background-color:#FFFFFF;
	
	width:400px;	
	min-height:200px;
	border:1px solid #666;
	
	/* CSS3 styling for latest browsers */
	-moz-box-shadow:0 0 90px 5px #000;
	-webkit-box-shadow: 0 0 90px #000;	
}

/* close button positioned on upper right corner */
#jquerybox .close {
	background-image:url(close.png);
	position:absolute;
	right:-15px;
	top:-15px;
	cursor:pointer;
	height:35px;
	width:35px;
}

