﻿.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. */

.CFSMenuT ul.AspNet-Menu Horizontal
{
    position: relative;
    font-size: small;
}

.CFSMenuT ul.AspNet-Menu, 
.CFSMenuT ul.AspNet-Menu ul /*entire block*/
{
    margin: 0 0;
    padding: 0;
    display: block;
}

.CFSMenuT ul.AspNet-Menu li
{
     /* unlinked headers, does background of entire block*/
    position: relative;
    
    font:georgia, Times New Roman, serif;
    padding:4px;
    clear:both;
    background-color: #87783F;
}

.CFSMenuT ul.AspNet-Menu li a
/*styles main headings*/
{  
    font:x-small;
    color: #4AF046;
}

.CFSMenuT ul.AspNet-Menu li a:hover
/*styles main headings  when hovered*/
 
{ background-color:#DDCBAA; padding: 3px; color: #FFFFFF;

}
.CFSMenuT ul.AspNet-Menu li span
{
    /* unlinked headers*/
    display: block;
    text-decoration: none;
    color:#4AF046;
    font-weight: bold;   
}

.CFSMenuT ul.AspNet-Menu ul
{
    position: relative;
     
}

.CFSMenuT ul.AspNet-Menu li ul li
/*Second tier - link sections; eg Sleep,Energy Boosters - but not text, colors list-type images*/
{
   margin: 2px 0 0 20px;
   list-style:square;
   color: #4AF046;
}

.CFSMenuT ul.AspNet-Menu li ul li:hover
{
 color:#ffffff;
 background-color: #B4B06B;
 padding: 2px 4px;
 width: 100px;
}

.CFSMenuT ul.AspNet-Menu li ul li a
/*Second tier - link sections; eg Sleep,Energy Boosters - text*/
{
    color:#FFFFFF;
    font-size: 13px;
}

.CFSMenuT ul.AspNet-Menu li ul li a:hover
{
 color:#ffffff;
background-color: #B4B06B;
 font-style:italic;
 padding: 2px 4px;
  
}

.CFSMenuT ul.AspNet-Menu li ul li ul
{
    display: none;  
 }

.CFSMenuT ul.AspNet-Menu li ul li ul li

{
    display: none;   
}

/* Add more rules here if your menus have more than three (3) tiers */
.CFSMenuT ul.AspNet-Menu li:hover ul ul,
.CFSMenuT ul.AspNet-Menu li:hover ul ul ul,
.CFSMenuT ul.AspNet-Menu li.AspNet-Menu-Hover ul ul,
.CFSMenuT 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 */
.CFSMenuT ul.AspNet-Menu li:hover ul,
.CFSMenuT ul.AspNet-Menu li li:hover ul,
.CFSMenuT ul.AspNet-Menu li li li:hover ul,
.CFSMenuT ul.AspNet-Menu li.AspNet-Menu-Hover ul,
.CFSMenuT ul.AspNet-Menu li li.AspNet-Menu-Hover ul,
.CFSMenuT 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. */

.CFSMenuT .AspNet-Menu-Horizontal ul.AspNet-Menu li
{
    float: left;
}

.CFSMenuT .AspNet-Menu-Horizontal ul.AspNet-Menu li li
{
    float: none;
}



