﻿div.PrettyMenu
{
}

div.PrettyMenu ul.AspNet-Menu li
{
	z-index:42;
	display:block;
	height:30px;
	width:120px;
	float:left;
	top:1px;
	padding-top:4px;
}

div.PrettyMenu ul.AspNet-Menu li:hover
{
}

div.PrettyMenu ul.AspNet-Menu ul
{
	top:29px;
	text-align:left;
	width:auto;
	border-style:solid;
	border-width:1px;
}

div.PrettyMenu ul.AspNet-Menu ul li
{
	padding: 3px;
}

div.PrettyMenu ul.AspNet-Menu ul li a,
div.PrettyMenu ul.AspNet-Menu ul li.AspNet-Menu-WithChildren ul li a,
div.PrettyMenu ul.AspNet-Menu ul li span,
div.PrettyMenu ul.AspNet-Menu ul li.AspNet-Menu-WithChildren ul li span
{
}

div.PrettyMenu ul.AspNet-Menu ul li:hover a,
div.PrettyMenu ul.AspNet-Menu ul li.AspNet-Menu-WithChildren ul li:hover a,
div.PrettyMenu ul.AspNet-Menu ul li:hover span,
div.PrettyMenu ul.AspNet-Menu ul li.AspNet-Menu-WithChildren ul li:hover span
{
}

div.PrettyMenu ul.AspNet-Menu ul li
{
	width:25em;
	height:auto;
}

div.PrettyMenu ul.AspNet-Menu ul li.AspNet-Menu-WithChildren
{
    background: transparent url(arrowRight.gif) right center no-repeat;
}

div.PrettyMenu ul.AspNet-Menu ul li:hover
{
}

div.PrettyMenu ul.AspNet-Menu ul li.AspNet-Menu-WithChildren:hover
{
    background: transparent url(arrowRight.gif) right center no-repeat;
}

div.PrettyMenu ul.AspNet-Menu ul ul
{
	position:absolute;
	left:25em;
	top:0;
}























/* 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. */

div.PrettyMenu
{
    font-family: AvantGarde Bk BT, Arial, Tahoma;
    margin-left:10px;
    margin-right:0px;
}

div.AspNet-Menu-Horizontal
{
	margin-left:0;
	margin-right:0;
	position:relative;
}

ul.AspNet-Menu 
{
/*
	margin-left:auto;
	margin-right:auto;
    position: relative;
*/
}


ul.AspNet-Menu, 
ul.AspNet-Menu ul
{
    margin: 0;
    padding: 0;
    display: block;
/*
*/
}

ul.AspNet-Menu li
{
	display:inline;
    list-style: none;
    position: relative;
/*
*/
}

ul.AspNet-Menu li a,
ul.AspNet-Menu li span
{
    text-decoration: none;
}

ul.AspNet-Menu ul
{
    display: none;    
    position: absolute;
/*
*/
}

/* Add more rules here if your menus have more than three (3) tiers */
ul.AspNet-Menu li:hover ul ul,
ul.AspNet-Menu li:hover ul ul ul,
ul.AspNet-Menu li.AspNet-Menu-Hover ul ul,
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 */
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;
/*
*/
}


/* -------------------------------------------------------------------------- */
/* 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;
*/
}

