﻿.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. */

.CFSMenuN ul.AspNet-Menu Horizontal
{
    position: relative;
    font-size: small;
}


.CFSMenuN ul.AspNet-Menu, 
.CFSMenuN ul.AspNet-Menu ul
{
    margin: 0 0 0 5px;
    padding: 0;
    display: block;

}

.CFSMenuN ul.AspNet-Menu li
{
     /* unlinked headers*/
    position: relative;
    font: georgia, Times New Roman, serif;
    padding:2px;
    margin: 0 auto;
    clear:both;
}

.CFSMenuN ul.AspNet-Menu li a
/*links with no children (Basics)*/
{
    
    font:x-small;
    color: #7DECAC;
}
.CFSMenuN ul.AspNet-Menu li span
{
    /* unlinked headers*/
    display: block;
    text-decoration: none;
    color: #7DECAC; 
}

.CFSMenuN ul.AspNet-Menu li a:hover
{   
    background-color: #666666;
    font-style: normal;
}

.CFSMenuN ul.AspNet-Menu ul
{
    position: relative; 
}

.CFSMenuN ul.AspNet-Menu li ul li
/*Second tier - link sections and link image; eg Sleep,Energy Boosters - but not text*/
{
   margin: 2px 0 0 20px;
   list-style:square;
   font-size:x-small;
   width: 135px;
   color:#999999;
           
}

.CFSMenuN ul.AspNet-Menu li ul li:hover
{
 color:#333333;
 background-color: #66CCFF;
 font-style:italic;
 font-size: 12px;
 width: 100px;
 
}

.CFSMenuN ul.AspNet-Menu li ul li a
/*Second tier - link sections; eg Sleep,Energy Boosters - text*/
{
    color:#FFFFFF;
    font: normal 12px verdana, arial, helvetica, Sans-Serif;

}

.CFSMenuN ul.AspNet-Menu li ul li a:hover
{
    background-color: #66CCFF;
    color:#333333;
    width:100px;
}


.CFSMenuN ul.AspNet-Menu li ul li ul
{
    display: none;    
    
}

.CFSMenuN ul.AspNet-Menu li ul li ul li

{
    display: none;
    
}

/* Add more rules here if your menus have more than three (3) tiers */
.CFSMenuN ul.AspNet-Menu li:hover ul ul,
.CFSMenuN ul.AspNet-Menu li:hover ul ul ul,
.CFSMenuN ul.AspNet-Menu li.AspNet-Menu-Hover ul ul,
.CFSMenuN 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 */
.CFSMenuN ul.AspNet-Menu li:hover ul,
.CFSMenuN ul.AspNet-Menu li li:hover ul,
.CFSMenuN ul.AspNet-Menu li li li:hover ul,
.CFSMenuN ul.AspNet-Menu li.AspNet-Menu-Hover ul,
.CFSMenuN ul.AspNet-Menu li li.AspNet-Menu-Hover ul,
.CFSMenuN 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. */

.CFSMenuN .AspNet-Menu-Horizontal ul.AspNet-Menu li
{
    float: left;
}

.CFSMenuN .AspNet-Menu-Horizontal ul.AspNet-Menu li li
{
    float: none;
}



