/* ================================================================
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_drop3.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:	John C. Scott, Scott Communications
				jcscott@scottcomm.com
=================================================================== */

/* top level rollovers */
.menu ul li a.menu_rt_top {
	background-image: url("../images/menu/rapid_testing.gif");
	/* IE Border Width Hack */
	width: 180px !important; /* all browsers */
	width: 179px; /* IE5. Hidden from IE6. */
	width/**/:/**/179px; /* IE6. Hidden from IE5. */
	border-right: 1px solid #fff;
}

.menu ul li a.menu_pcr_top {
	background-image: url("../images/menu/real_time.gif");
	/* IE Border Width Hack */
	width: 180px !important; /* all browsers */
	width: 179px; /* IE5. Hidden from IE6. */
	width/**/:/**/179px; /* IE6. Hidden from IE5. */
	border-right: 1px solid #fff;
}

.menu ul li a.menu_innov_top {
	background-image: url("../images/menu/innovation.gif");
	/* IE Border Width Hack */
	width: 180px !important; /* all browsers */
	width: 179px; /* IE5. Hidden from IE6. */
	width/**/:/**/179px; /* IE6. Hidden from IE5. */
	border-right: 1px solid #fff;
}

.menu ul li a.menu_order_top {
	background-image: url("../images/menu/how_to_order.gif");
	/* IE Border Width Hack */
	width: 180px !important; /* all browsers */
	width: 179px; /* IE5. Hidden from IE6. */
	width/**/:/**/179px; /* IE6. Hidden from IE5. */
	border-right: 1px solid #fff;
}

.menu ul li a.menu_sr_top {
	background-image: url("../images/menu/support.gif");
}

.menu ul li a.menu_ma_top {
	background-image: url("../images/menu/member.gif");
}

/* style the outer div to give it width */
.menu
{
	position: relative;
	font-family: Verdana, sans-serif;
}

/* remove all the bullets, borders and padding from the default list styling */
.menu ul
{
	font-size: 10px;
	padding: 0;
	margin: 0;
	list-style-type: none;
}

/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu li
{
	float: left;
	position: relative;
	/* IE6 Float Double Margin fix */
	display: inline;
}

/* style the text links for the top level */
.menu a, .menu a:visited
{
	display: block;
	text-decoration: none;
	background-repeat: no-repeat;
	background-position: 0 0;
	float: left;
	text-decoration: none;
	height: 20px;
	width: 180px;
	/* IE6 Float Double Margin fix */
	display: inline;
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul
{
	visibility: hidden;
	position: absolute;
	height: 0;
	top: 20px;
	left: 0;
}

/* style the table so that it takes no part in the layout - required for IE to work */
.menu table
{
	position: absolute;
	top: 0;
	left: 0;
	border-collapse: collapse;
	border-spacing: 0;
}

/* style the second level links */
.menu ul ul a, .menu ul ul a:visited
{
	background-color: #245564;
	border-top: 1px solid #fff;
	white-space: nowrap;
	text-transform: uppercase;
	font-weight: bold;
	font-size: 9px;
	color: #fff;
	display: block;
	height: 22px;
	line-height: 22px;
	text-decoration: none;
	padding: 0 8px;
	border-left: 6px solid #ccc;
	width: 190px;
}

/* style the second level rapid testing menu links */
.menu ul ul a.rt, .menu ul ul a.rt:visited {
	border-left: 6px solid #67a190;
}

/* style the second level pcr testing menu links */
.menu ul ul a.pcr, .menu ul ul a.pcr:visited {
	border-left: 6px solid #6697c0;
}

.menu ul ul a {
	background-repeat: no-repeat;
	background-position: 0 0;
}

/* style the top and 2nd level hovers */
.menu a:hover, .menu ul ul a:hover
{
	color: #fff;
	background-color: #005295;
	text-decoration: none;
}

.menu a:hover {
	background-position: 0 -20px;
	/* IE7 needs this */
	display: block;
}

.menu ul ul a:hover {
	background-color: #e9f1ef;
	color: #005596;
}

/* make the second level visible when hover on first level list OR link */
.menu ul li:hover ul, .menu ul a:hover ul { visibility: visible; }

