/*V1*/
/* ================================================================ 
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/final_drop.html
Copyright (c) 2005-2007 Stu Nicholls. All rights reserved.
This stylesheet and the associated (x)html may be modified in any 
way to fit your requirements.
===================================================================
===================================================================
Modified by: Ricardo Zea
Date: May - 08
Project: LexisNexis country sites
===================================================================*/

/***************************************************
SMALL BY BUSINESS NEED DROP DOWN MENU - This menu is located on the right side/gray column in the Segment landing pages (ie: Law, Academic, Government, etc.)
***************************************************/

/*------------------- General Classes*/
.clear {clear:both;}
.float-right {float:right;}
/*------------------- Menu Container*/
#small-by-business-need-drop-down {	
	width:0;
	height:0;
	margin-top:12px;
	margin-right: 180px;
	float: right;
}
.container-bbn-drop-down {
	position:relative;
	z-index:100;	
	float:left;
	font-size:13px;
	font-family:Arial, Helvetica, sans-serif;
}

/* remove all the bullets, borders and padding from the default list styling */
.container-bbn-drop-down ul {
	padding:0;	
	margin:0;
	list-style-type:none;
	text-align:center;	
}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.container-bbn-drop-down li {		
	position:relative;
	display:inline;
}
/* TOP LINK */
.greySectionPanel #small-by-business-need-drop-down li.top-link { 	
	background:none;
	padding:0;
	margin:0;
}
li.top-link a,
li.top-link a:visited {
	background: url(../images/by-business-need-drop-down-arrow.gif) no-repeat 99% 2px #ebece6;
	border:#ccc 1px solid;
	display:block;
	width:180px;
	padding:3px;
	font-size:1em;
	text-decoration:none;
	text-align:left;
	color:#666;
}
li.top-link a:hover {
	background: url(../images/by-business-need-drop-down-arrow.gif) no-repeat 99% -24px #ebece6;
	border:#b6d887 1px solid;
	text-decoration:none;
}

/* This class separates the TOP LINK from the 'by Product' image in IE7 */
#IEroot7 #ie7-separator { margin-bottom:10px;}

/* DROP DOWN LINKS */
#inner-links li a,
#inner-links li a:visited {
	background:#fff;
	border:none;
	color:#666;		
	display:block;
	padding:1px;
	padding-left:2px;
	font-size:11px;
}
#inner-links li a:hover {
	background:#b6d887;
	color:#000;
}

#inner-links{
	width: 180px;
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.container-bbn-drop-down ul ul {
	visibility:hidden;
	position:absolute;
	top:24px;	
	left:-47px;	
	margin-left: -365px;
	text-align:left;	
}


#IEroot .container-bbn-drop-down ul ul { top:24px; left:-47px;}
.container-bbn-drop-down > ul ul { left:-137px;}
.ie .container-bbn-drop-down > ul ul { left:363px;}

/* style the table so that it takes no part in the layout - required for IE to work */
.container-bbn-drop-down table {
	position:absolute;
	top:0;
	left:0;
	border-collapse:collapse;
}

/* style the second level list items */
.container-bbn-drop-down ul ul {
	border:#cecece 1px solid;
	background:#fff;
	padding:5px;	
}
.container-bbn-drop-down ul ul li {
	 display:block;	 
	 margin:0;
	 padding:0;
	 background:none;
	 color:#0033CC;
}
/* make the second level visible when hover on first level list OR link */
.container-bbn-drop-down ul li:hover ul,
.container-bbn-drop-down ul a:hover ul {visibility:visible;}
