﻿
#LBBlueBox ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
}

#LBBlueBox li { /* all list items */
    font-size: 12px;
    background-image:url(../images/menu-bg.png);
    background-repeat:no-repeat;
    width: 171px;
    height: 31px;
	float: left;
	position: relative;
	z-index: 5;
}

#LBBlueBox li ul { /* second-level lists */
	display: none;
	position: absolute;
	float:left;
	top: 1em;
	left: 171px;
	z-index:10;
}

#LBBlueBox li ul li
{
    height: auto;
    background-image:none;
    background-color:#1975d0;
    z-index:10;
}

#LBBlueBox li ul li a
{
    line-height: 15px;
    padding-top:6px;
    padding-bottom:6px;
}

#LBBlueBox li>ul { /* to override top and left in browsers other than IE, which will position to the top right of the containing li, rather than bottom left */
	top: 0px;
	left: 171px;
	border-left: solid 3px #FFFFFF;
    	
}

#LBBlueBox li:hover ul, #LBBlueBox li.over ul { /* lists nested under hovered list items */
	display: block;
}

/*
#LBBlueBox .SubList
{
	color: #FFFFFF;
	font-size: 10px;
	margin: 0 0 0 20px;
	padding: 4px 0 3px 0;
	list-style: disc;
}
#LBBlueBox .SubList a:active 
{
	color: #F3BF0A;
}
#LBBlueBox ul li a.active
{
	font-size: 12px;
	color: #F3BF0A;
}
#LBBlueBox ul li.SubList a.active
{
	font-size: 10px;
	color: #F3BF0A;
}
*/