﻿/*
---------------------------------------------------------------------------------------------------------
    ASP.NET MENU CSS
---------------------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------
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 li a
{
	text-decoration:none;
}

ul.AspNet-Menu, 
ul.AspNet-Menu ul
{
    margin: 0px;
    padding: 0px;    
}

ul.AspNet-Menu li
{
    /*position: relative;*/
    list-style: none;
}


/* 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
{
    display: block;
    color: #47330a;
}


/*
---------------------------------------------------------------------------------------------------------
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.
---------------------------------------------------------------------------------------------------------
*/

.AspNet-Menu-Horizontal ul.AspNet-Menu li    { float: left; }

.AspNet-Menu-Horizontal ul.AspNet-Menu li li { float: none; }


/******* Sub Menu Rules**********/
div#currentSection
{
	float:left;
	margin-right:5px;
	padding:5px;
	background-color:#333;
	
}
div#currentSection a
{
	text-decoration:none;
	font-weight:bold;
	color:#fff;
}
div#internalMenu
{
	float:left;
	width:715px;
}
div#internalMenu ul
{
	display:inline;
	padding:5px;
}
div#internalMenu li
{
	margin:0px 5px 0px 0px;
	padding:5px;	
}
div#internalMenu li.Selected
{
	display:block;
}

