/* ================================================================ 
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.
=================================================================== */

/* basic declarations of size */
#flyout {
	float:left;
	padding:0;
	margin:3px 0 0 0;
	list-style:none;
	position:relative;
	width:218px;
	}

/* top-level basic properties */
#flyout ul {
	padding:0;
	margin:0;
	list-style:none;
	width:218px;
	height:auto;
	background: url(/images/nav_trans.gif);
	position:absolute;
	left:-9999px;
	top:0;
	}
	
#flyout table {
	border-collapse:collapse;
	width:0;
	height:0;
	margin:-1px -10px;
	}

#flyout li {
	float:left;
	margin-bottom:1px;
	text-align:left;
	}

/* ///// TOP LEVEL DECLARATIONS ///// */

/* top-level non-flyout-enabled at-rest */
#flyout li a {
	display:block;
	float:left;
	width:218px;
	height:25px;
	color:white;
	line-height:25px;
	font-family:arial, sans-serif;
	font-size:11px;
	text-decoration:none;
	}

/* top level flyout-enabled at-rest */
#flyout li a.fly {
	background:url(/images/nav_right-arrow.gif) no-repeat right center;
	}

#flyout li:hover {
	position:relative;
	}
	
#flyout li a:hover {
	position:relative;
	background-color:teal;
	color:white;
	}

/* top-level all hover */
#flyout li:hover > a {
	background-color:#FADCBE;
	color:teal;
	}


/* ///// SECOND LEVEL DECLARATIONS ///// */

/* second-level non-flyout-enabled at-rest */
#flyout ul li a {
	background:#1F8A94;
	color:white;
	text-indent:10px;

	}

/* second-level flyout-enabled at-rest */
#flyout ul li a.fly {
	background:#1F8A94 url(/images/nav_right-arrow.gif) no-repeat right center;
	text-indent:10px;

	}

/* second-level all hover */
#flyout ul li:hover > a {
	background-color:#FADCBE;
	color:#1F8A94;
	}


/* ///// THIRD LEVEL DECLARATIONS ///// */

/* third-level non-flyout-enabled at-rest */
#flyout ul ul li a {
	background:#1F8A94;
	}

/* third-level flyout-enabled at-rest */
#flyout ul ul li a.fly {
	background:#1F8A94 url(/images/nav_right-arrow.gif) no-repeat right center;
	}

/* third-level all hover */
#flyout ul ul li:hover > a {
	background-color:#FADCBE;
	color:#1F8A94;
	}


/* ///// FOURTH LEVEL DECLARATIONS ///// */

/* fourth-level non-flyout-enabled at-rest */
#flyout ul ul ul li a {
	background:#ddd;
	}


/* ///// OTHER BASIC DECLARATIONS ///// */

/* setting custom color for nav items classed as current */
#flyout li a.current,
#flyout ul li a.current,
#flyout ul ul li a.current,
#flyout ul ul ul li a.current {
	background-color:#c40; color:#fff;
	}

/* distance the flyouts are positioned */
#flyout :hover ul,
#flyout :hover ul :hover ul,
#flyout :hover ul :hover ul :hover ul {
	left:218px;
	}

#flyout :hover ul ul,
#flyout :hover ul :hover ul ul {
	left:-9999px;
	}


