/* $Id: cssplay_flyout.css 238 2008-08-08 13:22:38Z espaan $ */
/* ================================================================ 
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/flyout3.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.
=================================================================== */
.cssplay_fly {
  font: normal 0.9em verdana,arial,helvetica,sans-serif;
/*  font:normal 0.9em 'Palatino Linotype', 'Book Antiqua', Palatino, 'Times New Roman', Times, serif;*/
/*  font:normal 0.9em 'Lucida Grande', Verdana, arial, Sans-Serif;*/
/*  font:normal 0.9em Georgia, "Times New Roman", Times, serif;*/
  margin:0;
  z-index:110;
/*  float:right;*/
}

/* remove all the bullets, borders and padding from the default list styling */
.cssplay_fly ul {
  width:150px;
  padding:0;
  margin:0;
  list-style-type:none;
}
/* hack for IE5.5 */
* html .cssplay_fly ul {
  margin-left:-16px; 
  ma\rgin-left:0;
}

/* style the list items */
.cssplay_fly li {
  position:relative;
  background:#d4d8bd url(../pnimages/cssplay_flyout/shade.gif);
  height:26px;
  margin:0;
}
.cssplay_fly li.sub {
  background:#d4d8bd url(../pnimages/cssplay_flyout/leftsub.gif) no-repeat right center;
}

/* get rid of the table */
.cssplay_fly table {
  position:absolute;
  border-collapse:collapse;
  top:0;
  left:0;
  z-index:110;
  font-size:1em;
}

/* style the links */
.cssplay_fly a, .cssplay_fly a:visited {
  display:block; 
  text-decoration:none;
  height:25px;
  line-height:25px;
  width:149px;
  color:#000;
  text-indent:5px;
  border:1px solid #fff;
  border-width:0 1px 1px 0px;
}
/* hack for IE5.5 */
* html .cssplay_fly a, * html .cssplay_fly a:visited {
  background:#d4d8bd;
  width:150px;
  w\idth:149px;
}
/* style the link hover */
* html .cssplay_fly a:hover {
  color:#efa;
  background:#aa7;
  text-decoration:none;
}

/* For accessibility of the top level menu when tabbing */
.cssplay_fly a:active, .cssplay_fly a:focus {
  color:#efa; 
  background:#aa7;
}

/* retain the hover and selected colors for each sublevel IE7 and Firefox etc */
.cssplay_fly :hover > a, .cssplay_fly li.selected > a {
  color:#efa;
  background:#aa7;
}
.cssplay_fly li.sub.selected > a {
  color:#efa;
  background:#aa7 url(../pnimages/cssplay_flyout/leftsub.gif) no-repeat right center;
}
 
/* hide the sub levels and give them a positon absolute so that they take up no room */
.cssplay_fly ul ul {
  visibility:hidden;
  position:absolute;
  top:0px;
  left:-150px;
}

/* make the N+1 level visible when hover on N level list OR link */
.cssplay_fly ul li:hover ul,
.cssplay_fly ul a:hover ul,
.cssplay_fly ul :hover ul :hover ul,
.cssplay_fly ul :hover ul :hover ul :hover ul {
  visibility:visible;
}
/* keep the N+2 level hidden when you hover on N level list OR link */
.cssplay_fly ul :hover ul ul,
.cssplay_fly ul :hover ul :hover ul ul{
  visibility:hidden;
}
