/* CSS Document */

@charset "UTF-8";

/* -- UL.DROPDOWN, UL.DROPDOWN UL, UL.DROPDOWN LI -- */

/* -- removes bullets and margins from all menu list items -- */
ul.dropdown,
ul.dropdown li,
ul.dropdown ul {
 list-style: none;
 margin: 0px;
 padding: 0px;
}

/* -- additional for Google Chrome and Safari:
removes bullets and margins from all menu list items -- */
#tabs ul, #tabs ul ul {
 list-style: none;
 margin: 0px;
 padding: 0px;
}

/* -- sets positioning and background for top row -- */
ul.dropdown {
	position: relative;
	z-index: 597;
	float: left;
	background-image: url(http://www.blulob.com/images/menu-bkgd.gif);
	height: 31px;
}

/* -- sets font and color for text links -- */
ul.dropdown a:link,
ul.dropdown a:visited {
 color: #4A53A2; 
 font-family: Georgia, "Times New Roman", Times, serif;
}

/* -- on hover:
sets font and color for text links -- */
ul.dropdown a:hover	{
 color: #000000;
 font-family: Georgia, "Times New Roman", Times, serif;
 text-decoration: none;
}

/* -- hides 3rd-level buttons until 2nd level buttons are activated
sets background for 2nd-level buttons that have fly-outs
gives a consistent width to 2nd and 3rd level buttons -- */
ul.dropdown ul {
 visibility: hidden;
 position: absolute;
 top: 100%;
 left: 0;
 z-index: 598;
 width: 150px;
 background-image: url(http://www.blulob.com/images/menu-bkgd.gif);
}

/* -- top-row: 
align from left-to-right instead of top-to-bottom
provides padding around text to give better appearance as buttons
sets a thin gray border at right -- */
ul.dropdown li {
	float: left;
	line-height: 1.3em;
	vertical-align: middle;
	zoom: 1;
	border-right: 1px solid #CCC;
	padding-top: 7px;
	padding-right: 10px;
	padding-bottom: 7px;
	padding-left: 10px;
}

/* -- on hover:
moves individual dropdowns so that they align with their respective columns
changes background image -- */
ul.dropdown li.hover,
ul.dropdown li:hover {
 position: relative;
 z-index: 599;
 cursor: default;
 background-image: url(http://www.blulob.com/images/menu-bkgd-hover.gif);
}

/* -- makes 2nd level buttons visible -- */
ul.dropdown li:hover > ul {
 visibility: visible;
}

/* -- UL.DROPDOWN UL LI -- */

/* -- aligns 3rd level buttons to right edge of 2nd level buttons
aligns all 2nd level buttons to left
places an individual background image for each button
removes white right border from level 2 and 3 buttons -- */
ul.dropdown ul li {
	float: none;
	background-image: url(http://www.blulob.com/images/menu-bkgd.gif);
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}

/* -- UL.DROPDOWN UL UL -- */

/* -- pops 3rd level buttons out to the right instead of straight down -- */
ul.dropdown ul ul {
 top: 1px;
 left: 99%;
}
