﻿.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. */

.CFSMenu ul.AspNet-Menu 
{
    position: relative;
    font-size: small;
}


.CFSMenu ul.AspNet-Menu, 
.CFSMenu ul.AspNet-Menu ul
{
    margin: 0;
    padding: 0;
    display: block;

}

.CFSMenu ul.AspNet-Menu li
{
    position: relative;
    list-style: none;
    background-color: #65BC74;
    font-family:arial, Verdana,  helvetica;
    color: #CCFFFF;
    padding:5px 5px;
    clear:both;
}

.CFSMenu ul.AspNet-Menu li a
/*links with no children (home/resources)*/
{
   color:#CCFFFF;
}
.CFSMenu ul.AspNet-Menu li span
{
    display: block;
    text-decoration: none;  
}

.CFSMenu ul.AspNet-Menu ul
{
    position: relative;    
}

.CFSMenu ul.AspNet-Menu li ul li
/*Second tier - link sections and list image; eg Sleep,Energy Boosters - but not text*/

{
    margin: 2px 0 0 15px;
    background-color:#65BC74;
    color: #CCFFFF;
    z-index: 100;
    width: 100px;    
    
}

.CFSMenu ul.AspNet-Menu li ul li a
/*Second tier - link sections; eg Sleep,Energy Boosters - text*/

{
    color: white;    
}

.CFSMenu ul.AspNet-Menu li ul li ul
{
    
}


.CFSMenu ul.AspNet-Menu li ul li ul li

{
    display: none;
    
}

/* Add more rules here if your menus have more than three (3) tiers */
.CFSMenu ul.AspNet-Menu li:hover ul ul,
.CFSMenu ul.AspNet-Menu li:hover ul ul ul,
.CFSMenu ul.AspNet-Menu li.AspNet-Menu-Hover ul ul,
.CFSMenu 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 */
.CFSMenu ul.AspNet-Menu li:hover ul,
.CFSMenu ul.AspNet-Menu li li:hover ul,
.CFSMenu ul.AspNet-Menu li li li:hover ul,
.CFSMenu ul.AspNet-Menu li.AspNet-Menu-Hover ul,
.CFSMenu ul.AspNet-Menu li li.AspNet-Menu-Hover ul,
.CFSMenu 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. */

.CFSMenu .AspNet-Menu-Horizontal ul.AspNet-Menu li
{
    float: left;
}

.CFSMenu .AspNet-Menu-Horizontal ul.AspNet-Menu li li
{
    float: none;
}

