/* $Id: cssplay_flyout_ltr.css 243 2008-08-11 15:51:04Z 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/flyout_4level.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:100;
}

/* remove all the bullets, borders and padding from the default list styling */
.cssplay_fly ul {
  position:relative;
  z-index:200;
  width:150px;
  padding:0;
  margin:0;
  list-style-type:none;
}
/* style the list items */
.cssplay_fly li {
  background:#b9d3fb; /* #d4d8bd url(../pnimages/cssplay_flyout/shade.gif); */
  height:18px;
  margin:0;
  /* for IE7 */
  float:left;
}
.cssplay_fly li.sub {
  background:#b9d3fb url(../pnimages/cssplay_flyout/sub.gif) no-repeat right center;
}

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

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

.cssplay_fly li:hover {
  position:relative;
}

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

/* retain the hover and selected colors for each sublevel IE7 and Firefox etc */
.cssplay_fly li:hover > a, .cssplay_fly li.selected > a {
  color:#efa;
  background:#3a93d2;
}
.cssplay_fly li.sub.selected > a {
  color:#efa;
  background:#3a93d2 url(../pnimages/cssplay_flyout/sub.gif) no-repeat right center;
}
 
/* hide the sub levels and give them a positon absolute so that they take up no room */
.cssplay_fly li ul {
  visibility:hidden;
  position:absolute;
  top:-30px;
  /* set up the overlap (minus the overrun) */
  left:100px;
  /* set up the overrun area */
  padding:30px;
  /* this is for IE to make it interpret the overrrun padding */
  background:transparent url(../pnimages/cssplay_flyout/transparent.gif);
}

/* for browsers that understand this is all you need for the flyouts */
.cssplay_fly li:hover > ul {
  visibility:visible;
}

/* for IE5.5 and IE6 you need to style each level hover */
/* keep the N+2 level+ hidden when you hover on N level link */
.cssplay_fly ul a:hover ul ul,
.cssplay_fly ul a:hover ul a:hover ul ul,
.cssplay_fly ul a:hover ul a:hover ul a:hover ul ul{
  visibility:hidden;
}
/* make the N+1 level visible when hover on N level link */
.cssplay_fly ul a:hover ul ,
.cssplay_fly ul a:hover ul a:hover ul,
.cssplay_fly ul a:hover ul a:hover ul a:hover ul ,
.cssplay_fly ul a:hover ul a:hover ul a:hover ul a:hover ul {
  visibility:visible;
}

li.vertsubseparator {
  border-top:1px solid #bbb;
  border-bottom:1px solid white;
  height:0;
}

a.vertsubseparator {
  visibility:hidden;
}

