﻿/* menu container */
.AspNet-Menu-Horizontal 
{
    display: inline-block;
    width: 100%;
}

/* 1st lvl menu */
.AspNet-Menu-Horizontal ul.AspNet-Menu{
    margin: 0px;
    padding: 0px;
    float: right;
}

/* 1st lvl items */
li.AspNet-Menu-Leaf, li.AspNet-Menu-WithChildren{
    list-style-type: none;
    position: relative;
}

/* 1st lvl links */
li.AspNet-Menu-Leaf a, li.AspNet-Menu-WithChildren a{
    display: block;
    padding: 0.25em 0.5em 0.25em 0.5em;
    font-weight: bold;
    text-decoration: none;
    color: #444;
}
/* 1st lvl links: hover */
li.AspNet-Menu-Leaf a:hover, li.AspNet-Menu-WithChildren a:hover{
    color: #9cf;
    background: #369;
}
/* 2nd/3rd lvl menus */
li.AspNet-Menu-WithChildren ul{
    position: absolute;
    right: 0px;
    padding: 0px;
    background: #ddd;
    border: 1px solid #ccc;
    z-index: 1;
}
/* 2nd lvl items */
li.AspNet-Menu-WithChildren ul li{
    position: relative;
    white-space: nowrap;
    width: auto;
    float: none !important;
}
/* 2nd lvl links */
li.AspNet-Menu-WithChildren ul li a{
    display: block;
}
/* 3rd lvl menu style */
li.AspNet-Menu-WithChildren li.AspNet-Menu-WithChildren ul
{
    right: 100%;
    top: 0px;
    background: #ccc;
}
