﻿/* ================================================================ 
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: 30px;
	list-style: none;
	margin: 0;
	padding: 0;
	position: relative;	
	z-index: 500;	
}

.menu li
{
	float: left;
	margin-right: 1px;	
}
.menu li a
{
	color: Black;
	display: block;
	float: left;
	height: 30px;
	line-height: 30px;			
	text-align: left;
	text-decoration: none;				
	width: 105px;
	font-weight:bold;
}

.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
{	
	color: #283B7E;	
	position: relative;
	z-index: 200;
}
.menu li:hover
{
	position: relative;
	z-index: 200;
}

.menu li:hover > a
{
	color: #283B7E;	
}
.menu li:hover > a.sub
{
	color: #283B7E;	
}

.menu li.current a
{
	color: Black;
}

.menu li a.sub
{
}
.menu li.current a.sub
{		
}

.menu :hover ul
{	
	left: -25px;
	top: 23px;
	width: 100px; /* 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 #364C1E;
	height: auto;
	left: 200px;
	top: -1px;	
	white-space: nowrap;
	width: 100px;
	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: Black;
	font-size: .9em;
	height: 25px;
	line-height: 25px;
	border: 1px solid Black;
	padding: 0;
	background: white;
	text-align: left;
	text-indent: 5px;
	width: 200px;
}
.menu :hover ul li a.fly /* 2nd level menu items with 3rd tier */
{
	background-color: #CCB3A4;	
}

.menu :hover ul :hover
{	
	color: #283B7E;
}
.menu :hover ul :hover a.fly
{
	color: #283B7E;
}

.menu :hover ul li.currentsub a
{
	background: #F4E190;
	color: #000;
}
.menu :hover ul li.currentsub a.fly
{
	background: #F4E190 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: #F4E190;
	color: #364C1E;
}