﻿/** 
 * Title: mlc.menu.css
 * Author: Marcus Le Count
 * Company: Anthem Software
 * 
 * Creation Date: 25 July 2011
 * VERSION: 1.0.1
 *
 * NOTES:
 * This menu is used in conjunction with mlc-menu.js
 *
 */
#mlcmenu
{
    color: #FFF;
    padding: 0px;
    width: 100%;
    position: relative;
    cursor: default;
    height: 27px;
    width: 100%;
    z-index: 2000;
    background-repeat: repeat-x;
}

/* hide all elements ul inside the ul with id=master*/
ul#master
{
    height: 30px;
    margin: 0;
    padding: 0;
    position: absolute;
    right: 0;
    top: 0;

}

/* style links within the #master container */
ul#master a
{
    cursor: pointer;
    text-decoration: none;
    display: block;
    color: #FFF;
}

ul#master span
{
    cursor: pointer;
    display: block;
    color: #FFF;
}
ul#master span:hover
{
    background-repeat: no-repeat;
}

ul#master ul
{
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
            background-color: #707070;
}

/* style the top level menu elements */
ul#master li.dir
{
    background-position: center top;
    background-repeat: repeat-x;
    border-color: Black #27292B Black #4D4F51;
    border-style: solid;
    border-width: 0 1px 0;
    cursor: pointer;
    display: inline-block;
    float: left;
    font-size: 100%;
    height: 27px;
    line-height: 27px;
    padding: 0 13px;
    position: relative;
    text-align: center;
    text-transform: uppercase;
    z-index: 2000;
}
ul#master li.dir:hover
{
    background-position: center bottom;
    background-color: #707070;
}

ul#master li.dir > span    
{
    /*background-image: url("../images/backgrounds/main-navigation-ul-li-selected-a-span.png");
    background-position: left 100px;
    background-repeat: no-repeat;*/
}
ul#master li.dir > span:hover{    background-position: center bottom;}
ul#master li.dir > span > span
{
    background-position: right 100px;
    background-repeat: no-repeat;
    border-color: -moz-use-text-color;
    border-style: none;
    border-width: 0;
    height: 27px;
    line-height: 27px;
    margin-top: 1px;
    padding: 0 10px;
    text-decoration: none;
}

ul#master li.dir > span > span:hover
{
    background-position: left center;
}

/* style the branch menus */
ul#master li.dir > ul
{
    text-align: left;
    width: 200px;
    margin-top: -1px;
    font-size: 1.0em;
    position: absolute;
    left: 0;
}

ul#master li.dir > ul > li
{
    background-color: #707070;
    border-bottom: 1px solid #FF6600;
    border-left: 1px solid #FF6600;
    border-right: 1px solid #FF6600;
    color: #FFFFFF !important;
    padding-left: 13px;
    position: relative;
}

ul#master li.dir > ul > li > a
{
    display: block;
}

ul#master li.dir > ul > li:hover
{
    background-color: #8f8f8f;
}

/* style the leaf menus */
#master li.dir > ul > li > ul
{
    text-align: left;
    width: 250px;
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 2598;
    width: 100%;
}

/* style the leaf menus */
#master li.dir > ul > li > ul > li
{
    background-color: #707070;
    border-bottom: solid 1px #C6C4C4;
    border-left: solid 1px #C6C4C4;
    border-right: solid 1px #C6C4C4;
    padding-left: 13px;
}
#master li.dir > ul > li > ul > li:hover
{
    background-color: #8f8f8f;
}

.viewAllLink
{
    color: #CCC!important;
    height: 0;
    display: none!important;
}
