﻿.foo {} /* W3C CSS validator likes CSS files to start with a class rather than a comment. Soooooo.... */

/* This style sheet is intended to contain RARELY CHANGED rules used when the Menu control adapter is enabled. */
/* These rules correspond to the "pure CSS menu" technique that have been evolving over the past several years. */ 
/* See WhitePaper.aspx for details. */

.CFSMenuI ul.AspNet-Menu Horizontal
{
    position: relative;
    font-size: small;
}


.CFSMenuI ul.AspNet-Menu, 
.CFSMenuI ul.AspNet-Menu ul
{
    margin: 0 0 0 5px;
    padding: 0;
    display: block;
    color:Green;

}

.CFSMenuI ul.AspNet-Menu li
{
     /* unlinked headers*/
    position: relative;
    
    font:georgia, Times New Roman, serif;
    color:navy;
    padding:2px;
    margin: 0 auto;
    clear:both;
}

.CFSMenuI ul.AspNet-Menu li a
/*links with no children (home/resources)*/
{
    
    font:x-small;
      color:navy;
}
.CFSMenuI ul.AspNet-Menu li span
{
    /* unlinked headers*/
    display: block;
    text-decoration: none;
   
}

.CFSMenuI ul.AspNet-Menu ul
{
    position: relative;
    color:navy;
  
     
}

.CFSMenuI ul.AspNet-Menu li ul li
/*Second tier - link sections; eg Sleep,Energy Boosters - but not text*/
{
   margin: 2px 0 0 20px;
   list-style:square;
   font-size:x-small;
   width: 135px;
   color:#666666;
           
}

.CFSMenuI ul.AspNet-Menu li ul li:hover
{
 color:#ffffff;
 background-color:teal;
 font-style:italic;
}

.CFSMenuI ul.AspNet-Menu li ul li a
/*Second tier - link sections; eg Sleep,Energy Boosters - text*/
{
    color:#666666;
}

.CFSMenuI ul.AspNet-Menu li ul li a:hover
{
    background-color:teal;
    color:#ffffff; 
}


.CFSMenuI ul.AspNet-Menu li ul li ul
{
    display: none;
    
    
}


.CFSMenuI ul.AspNet-Menu li ul li ul li

{
    display: none;
    
}

/* Add more rules here if your menus have more than three (3) tiers */
.CFSMenuI ul.AspNet-Menu li:hover ul ul,
.CFSMenuI ul.AspNet-Menu li:hover ul ul ul,
.CFSMenuI ul.AspNet-Menu li.AspNet-Menu-Hover ul ul,
.CFSMenuI ul.AspNet-Menu li.AspNet-Menu-Hover ul ul ul
{
    display: none;
}

/* Add more rules here if your menus have more than three (3) tiers */
.CFSMenuI ul.AspNet-Menu li:hover ul,
.CFSMenuI ul.AspNet-Menu li li:hover ul,
.CFSMenuI ul.AspNet-Menu li li li:hover ul,
.CFSMenuI ul.AspNet-Menu li.AspNet-Menu-Hover ul,
.CFSMenuI ul.AspNet-Menu li li.AspNet-Menu-Hover ul,
.CFSMenuI ul.AspNet-Menu li li li.AspNet-Menu-Hover ul
{
    display: block;
}


/* -------------------------------------------------------------------------- */
/* When the Menu control's Orientation property is Horizontal the adapter wraps the menu with DIV */
/* whose class is AspNet-Menu-Horizontal. This allows us to force the top tier of the menu to layout */
/* horizontally, whereas all subsequent tiers of the menu lay out vertically. */

.CFSMenuI .AspNet-Menu-Horizontal ul.AspNet-Menu li
{
    float: left;
}

.CFSMenuI .AspNet-Menu-Horizontal ul.AspNet-Menu li li
{
    float: none;
}



