﻿/*BONUS - CSS fly out menus - only works in Mozilla or fully CSS compliant
browsers, but not IE.  Must hide from IE/Mac. \*/
ul#leftNavigationList li.menu > ul
{ 

  display:                  none;
}
ul#leftNavigationList li.menu:hover > ul, ul#leftNavigationList li.menu > ul:hover
{
  display:                  block;
  position:                 absolute;
  top:                      0%;
  left:                     100.25%;
  border:                   thin solid #0d283d;
  background-color:         #fff;
}
/*Uncomment the following if JavaScript menu isn't used.
ul#leftNavigationList li.menu:hover > h4 > a:before
{      
  content:                    url("/images/arrow_right.gif");
  height:                     .85em;
  width:                      .85em;
  border:                     none;
  margin:                     .7em .4em 0em .4em;
}
ul#leftNavigationList li.menu:hover > h4 > a:after
{      
  content:                    url("/images/arrow_left.gif");
  height:                     .85em;
  width:                      .85em;
  border:                     none;
  margin:                     .7em .4em 0em .4em;
}

End hiding*/
