﻿/* 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. */
.signintitle
{
   float: right;
	position: relative;
	margin-right: -30px;
	margin-top: -8px; 
	clear: none;
}
.menubg
{
	background: url(../default/images/menu/center.gif) repeat-x 12px 0px;
	height: 27px;
	float: left;
	position: relative;
	margin-right: 20px;
	margin-top: -6px;
	clear: none;
	
}
.menuleft
{
	background: transparent url(     "../default/images/menu/left.gif" ) no-repeat left top;
	padding: 0;
	height: 27px;
	 margin-left: -10px;
	float: left;
	position: relative;
	}
.menuright
{
	background: transparent url(     "../default/images/menu/right.gif" ) no-repeat right top;
	float: left;
	position: relative;
	vertical-align: top;
	height: 27px;
	 margin-right: -10px;
	
	
	
	}

.menubgselected0
{
	
background: url(images/menu/selected/center.gif) repeat-x 12px 0px;
	height: 27px;
	float: left;
	position: relative;
	margin-right: 21px;
	margin-top: -6px;
	clear: none;
	clip: rect(auto 15px auto 15px);

	
	}
.menuleftselected0
{
	
background: transparent url(     "images/menu/selected/left.gif" ) no-repeat left top;
	padding: 0;
	height: 27px;
	 margin-left: -10px;
	float: left;
	position: relative;
	}
.menurightselected0
{
	
	background: transparent url(     "images/menu/selected/right.gif" ) no-repeat right top;
	float: left;
	position: relative;
	vertical-align: top;
	height: 27px;
	 margin-right: -10px;
	
	
	
	
	}
ul.AspNet-Menu 
{
    position: relative;
}


ul.AspNet-Menu, 
ul.AspNet-Menu ul
{
    margin: 0;
    padding: 0;
    display: block;

}

ul.AspNet-Menu li
{
    position: relative;
    list-style: none;
}

ul.AspNet-Menu li a,
ul.AspNet-Menu li span
{
    display: block;
    text-decoration: none;
}

ul.AspNet-Menu ul
{
    position: absolute;
    display: none;    
}

/* 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;
}

