/* ================================================================ 
This copyright notice must be untouched at all times.

The original version of this stylesheet and the associated (x)html
is available at http://www.cssplay.co.uk/menus/flyout2.html
Copyright (c) 2005-2007 Stu Nicholls. All rights reserved.
This stylesheet and the assocaited (x)html may be modified in any 
way to fit your requirements.
=================================================================== */
div#bs_content div.bs_flmenu {
	z-index:1000;
	margin:15px 0 0 0;
}

/* remove all the bullets, borders and padding from the default list styling */
div#bs_content div.bs_flmenu ul {
	padding:0;
	margin:0;
	list-style-type:none;
	line-height: auto;
	width:350px;
	border-left:2px solid #949e7c;
}
/* hack for IE5.5 */
* html div#bs_content div.bs_flmenu ul {margin:0; margin-left:-16px; ma\rgin-left:0;}
/* position relative so that you can position the sub levels */

div#bs_content div.bs_flmenu li {
	position:relative;
	background:#F5F5F5;
	height:21px;
	margin:0;
	padding:0;
	width:auto;
	background-image:none;
	list-style-type:none;
	LIST-STYLE-IMAGE: none;
}

/* get rid of the table */
div#bs_content div.bs_flmenu table {
	position:absolute; 
	border-collapse:collapse; 
	top:0; 
	left:0; 
	z-index:100; 
	font-size:1em;
}

/* style the links */
div#bs_content div.bs_flmenu a, div#bs_content div.bs_flmenu a:visited {
	display:block; 
	text-decoration:none;
	height:20px;
	line-height:20px;
	width:349px;
	color:#000;
	text-indent:5px;
	border:1px solid #fff;
	border-width:0 1px 1px 0;
}
/* hack for IE5.5 */
* html div#bs_content div.bs_flmenu a, * html div#bs_content div.bs_flmenu a:visited {background:#F5F5F5; width:350px; w\idth:349px;}
/* style the link hover */
* html div#bs_content div.bs_flmenu a:hover {color:#fff; background:#949e7c;}

div#bs_content div.bs_flmenu :hover > a {
	color:#fff; 
	background:#949e7c;
}

div#bs_content div.bs_flmenu a span, div#bs_content div.bs_flmenu a:visited span {
	cursor:pointer;
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
div#bs_content div.bs_flmenu ul ul {
	visibility:hidden;
	position:absolute;
	top:0;
	margin:0;	
	left:350px; 
}
/* make the second level visible when hover on first level list OR link */
div#bs_content div.bs_flmenu ul li:hover ul,
div#bs_content div.bs_flmenu ul a:hover ul {
	visibility:visible;
}

/* keep the third level hidden when you hover on first level list OR link */
div#bs_content div.bs_flmenu ul :hover ul ul{
	visibility:hidden;
}