﻿.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. */

.MenuBase
{
    background-color: #003300;
    font-size: small;
    color: White;
    text-align: left;
}

.MenuBase a
{
    font-size: small;
    color: White;
}

.MenuHoverStyle
{
	background-color: #009900;
    font-size: small;
    color: White;
}

.MenuSelectedStyle
{
	background-color: #6A85B5;
    font-size: small;
    color: White;
}

.SubMenuBase
{
	background-color: #339933;
	font-size: small;
	color: White;
	text-align: left;
}

.SubMenuBase a
{
    font-size: small;
    color: White;
}

