﻿/* ================================================================ 
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.cssmenus.co.uk
Copyright (c) 2009- Stu Nicholls. All rights reserved.
This stylesheet and the associated (x)html may be modified in any 
way to fit your requirements.
=================================================================== */
.menu
{
	height: 20px;
	list-style: none;
	margin: 0;
	padding: 0;
	position: relative;
	z-index: 500;
}

.menu li
{
	float: left;
}
.menu li a
{
	background: #2A5A8A url(images/right-arrow.gif) no-repeat right center;
	color: #FFFFFF;
	display: block;
	float: left;
	font-family: Arial;
	font-size: 14px;
	height: 20px;
	line-height: 20px;
	text-align: center;
	text-decoration: none;
	width: 180px;
}

.menu table
{
	border-collapse: collapse;
	width: 0;
	height: 0;
	position: absolute;
	top: 0;
	left: 0;
}

/* Default link styling */

/* Style the list OR link hover. Depends on which browser is used */

.menu li a:hover
{
	background: #2A5A8A url(images/down-arrow.gif) no-repeat right center;	
	color: White;
	position: relative;
	z-index: 200;
}
.menu li:hover
{
	position: relative;
	z-index: 200;
}

.menu li:hover > a
{
	color: White;
}
.menu li:hover > a.sub
{
	color: #FFF;
}

.menu li.current a
{
	color: #FFF;
}

.menu li a.sub
{
}
.menu li.current a.sub
{
}

.menu :hover ul
{
	left: 0;
	top: 20px; /* This changes the amount the menu drops down */
	width: 180px; /* 1 */
}

/* keep the 'next' level invisible by placing it off screen. */
.menu ul, .menu :hover ul ul
{
	position: absolute;
	left: -9999px;
	top: -9999px;
	width: 0;
	height: 0;
	margin: 0;
	padding: 0;
	list-style: none;
}

.menu :hover ul :hover ul
{
	border: solid 1px #2A5A8A;
	height: auto;
	left: 251px;
	top: -1px;
	white-space: nowrap;
	width: 180px;
	z-index: 200;
}

.menu :hover ul li
{
	margin-left: 0;
}
.menu :hover ul li a /* 2nd level menu items with no additional pop out */
{
	color: White;
	font-size: 11px;
	height: 20px;
	line-height: 20px;
	border: none;
	padding: 0;
	text-align: left;
	text-indent: 5px;
	width: 180px;
}
.menu :hover ul li a.fly /* 2nd level menu items with 3rd tier */
{
	background: #62849D;
}

.menu :hover ul :hover
{
	color: White;
}
.menu :hover ul :hover a.fly
{
	background: #2A5A8A;
	color: White;
}

.menu :hover ul li.currentsub a
{
	background: #62849D;
	color: #000;
}
.menu :hover ul li.currentsub a.fly
{
	background: #62849D url(right-arrow.gif) no-repeat right center;
	color: #000;
}

.menu :hover ul :hover ul li a
{
	/*background: #3e3e3e;*/
	color: #000;
	padding: 0;
	text-indent: 10px;
	width: 251px; /* 4 */
}
.menu :hover ul :hover ul :hover
{
	/*background-color: #d70;*/
	color: #364C1E;
}

.menu :hover ul :hover ul li.currentfly a, .menu :hover ul :hover ul li.currentfly a:hover
{
	background: #62849D;
	color: #364C1E;
}
