﻿.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. */

ul.AspNet-Menu, 
ul.AspNet-Menu ul
{
    margin: 0;
    padding: 0 7px;
    display: block;
}

.AspNet-Menu-Vertical 
{  
    width: 200px;
    margin: 0; 
    padding: 0; 
    background: transparent url(/App_Themes/HCOM/images/side_bg.gif) repeat-y 100%; 
}

ul.AspNet-Menu 
{
    position: relative;  
}

ul.AspNet-Menu li
{
    width: 100%;
    font: normal normal bold 10px verdana;
    list-style-type: none;
    float: left;
}

ul.AspNet-Menu li a
{
    display: block;
    text-decoration: none;
}

ul.AspNet-Menu li a:link, ul.AspNet-Menu li a:visited
{
    font: normal normal bold 10px verdana;
    color: #666666;
}

ul.AspNet-Menu li a:active, ul.AspNet-Menu li a:hover
{
    font: normal normal bold 10px verdana;
    color: #FF6600;
}

ul.AspNet-Menu li span
{
    display: block;
    text-decoration: none;
    background: transparent url(/App_Themes/HCOM/images/side_title.gif) no-repeat; 
    width: 186px; 
    color: White;
    line-height: 35px;
    font: normal normal bold 13px 'trebuchet MS';
    text-transform: uppercase;
    text-align: center; 
    padding-top: 10px;
    padding-bottom: 7px;   
}

ul.AspNet-Menu ul
{
    visibility: visible;  
 
}

/* Add more rules here if your menus have more than three (3) tiers */
ul.AspNet-Menu li:hover ul ul,
ul.AspNet-Menu li.AspNet-Menu-Hover ul ul
{
    visibility: visible;
}

/* Add more rules here if your menus have more than three (3) tiers */
ul.AspNet-Menu li:hover ul,
ul.AspNet-Menu li li:hover ul,
ul.AspNet-Menu li li li:hover ul,
ul.AspNet-Menu li.AspNet-Menu-Hover ul,
ul.AspNet-Menu li li.AspNet-Menu-Hover ul,
ul.AspNet-Menu li li li.AspNet-Menu-Hover ul
{
    visibility: visible;
}

