﻿
/*  The main div and containing element for primary navigation / megamenu */
#PrimaryNavigationBar
{
    height: 23px;
    width: 960px;    
    
    /*  By setting the main containing element to use relative positioning,
        we enable the sub-menu to use absolute positioning relative to the
        container (as opposed to the browser window).  */
    position: relative;    
    
    /*  We use font-size 0 to hide/fix bullet padding in the browser */
    font-size: 0px;
    
    /*  We set a high z-index so that menu elements appear over page content */
    z-index: 175;
    border-bottom: 1px solid #d6d8d6;
}

#PrimaryNavigationBar:after
{
    clear: both;
}

/*  Container for left-aligned menu tabs */
#PrimaryLeftNavigation
{
    padding-left: 0px;
    z-index: 175;
}

/*  Container for right-aligned Event tab */
#PrimaryRightNavigation
{
    height: 23px;
    
    /*  Container is position: relative, so #PrimaryRightNavigation will 
        be absolutely positioned *within* #PrimaryNavigationBar */
    position: absolute;    
    right: 0px;
    top: 0px;
}

/*  The Home tab acts differently from the other tabs, behaving as a link
    instead of a trigger for a fly-out menu. */
#HomeTab
{
    width: 20px;
    line-height: 22px;
    font-size: 10pt;
    margin: 0px 4px 1px 0px;
    
    display: inline-block;
    float: left;
    vertical-align: middle;    
        
    border-top: solid 1px #d6d8d6;
    border-right: solid 1px #d6d8d6;
    border-left: solid 1px #d6d8d6;
    background-color: #f9f9f9;
    
    background-image: url(/Images/PrimeNav_arrow-Home.png) !important;
    background-repeat: no-repeat;
    background-position: right;
}

#HomeTab A
{
    display: block;
}

/* Menu tabs act as triggers for associated flyout menus */
#PrimaryNavigationBar li.tab
{
    height: 22px;
    line-height: 22px;
    font-size: 9pt;
    
    margin: 0px 4px 1px 0px;
    padding: 0px 0px 0px 8px;
    
    display: inline-block;
    float: left;
    vertical-align: middle;
    
    border-top: solid 1px #d6d8d6;
    border-right: solid 1px #d6d8d6;
    border-left: solid 1px #d6d8d6;
    
    cursor: pointer;
        
    background-color: #f9f9f9;
    /*
    background-image: url(/Images/PrimeNav_arrowDown_Red.png);
    background-repeat: no-repeat;
    background-position: right;
*/
    z-index: 175;
}

#PrimaryNavigationBar img.menuTrigger
{
    vertical-align: top;
    margin-left: 4px;
}

#PrimaryNavigationBar a.tab
{
    display: inline-block;
}

#PrimaryNavigationBar a.tabHover
{
    color: #B5121B;
}

#PrimaryNavigationBar li.tabHover
{
    background-color: #FFFFFF;
    border-bottom: 1px solid #FFFFFF;
    margin-bottom: 0px;    
}

/*  Flyout menus position below the Primary Navigation bar and 
    take up the full width of the content area. */
#PrimaryLeftNavigation .subMenu
{
    width: 958px;
    height: 310px;
    color: Black;
        
    /*  "top" offset accounts for PrimaryNavigationBar height */
    position: absolute;
    top: 23px; 
    left: 0px;
    z-index: -1;
    
    margin: 0;
    padding: 0;    
    
    background-color: White;
    border: 1px solid #C6C6C6;    
    font-size: 0px;
        
    /* subMenus are rendered as ul elements, so disable the list-style */
    list-style: none; 
    cursor: default;
    display: none;    
    
    box-shadow: -2px 2px 6px #C6C6C6; 
    -moz-box-shadow: -2px 2px 6px #C6C6C6; 
    -webkit-box-shadow: -2px 2px 6px #C6C6C6; 
}

.subMenu li
{
    font-size: 9pt;          
}

.subMenu img
{
    border: none;
}

.subMenu-list-item
{
    cursor: pointer;
}

.listItemHover
{
    background-color: #EDEDED;    
}

.column-layout .column-left
{
    position: absolute;
    top: 44px;
    left: 16px;
    
    width: 200px;    
    padding-top: 4px;
    padding-right: 80px;    
    line-height: 18px;
    
    border-top: 1px dotted #C6C6C6;
}

.column-layout .column-right
{
    position: absolute;
    top: 10px;
    left: 310px;
}

.column-right .header
{
    font-size: 8pt; 
    font-weight: bold; 
    color: #B5121B;       
    
    position: relative;
    top: 12px;
}

.megamenu-section-header
{
    color: #B5121B;
    font-size: 8pt;
    font-weight: bold;
}

.megamenu-entity-title
{
    color: #666;
    font-size: 9pt;
    font-weight: bold;
    display: block;
    line-height: 14px;
}

.megamenu-entity
{
    color: #666;
    font-size: 8pt;
    font-weight: normal;
    line-height: 14px;
}

.megamenu-entity-divider
{
    height: 0px;
    border-top: 1px dotted #999;
    display: block;
    margin-top: 12px;
    margin-bottom: 8px;
}

.megamenu-morelink
{
    color: #B5121B !important;
}

.megamenu-blurb
{
    color: #B5121B;
    font-size: 9pt;
    font-weight: bold;    
}

/* FIREFOX ONLY */
/* This rule fixes a rendering problem in Mozilla Firefox where list tables */
/* would render several pixels "north" of the intended location. This is    */
/* a hack and the underlying issue should be researched and fixed (later).  */
/* This rule is ignored by non Gecko (firefox) browsers. */
@-moz-document url-prefix() {                        
    .megamenu-list-table
    {
        top: 11px;
    }                   
}

.megamenu-list-table
{    
    table-layout: fixed;
    position: relative;
}

.megamenu-list-table dt
{
    border-top: 1px solid #B5121B;
    margin-right: 16px;
        
    white-space: nowrap;
    overflow: hidden;
}

.megamenu-list-table dt:last-child
{
    border-bottom: 1px solid #B5121B;
}

.megamenu-section-link
{
    display: inline-block;
    position: absolute;
    top: 250px;
    text-align: right;
    
    font-size: 9pt;
    font-weight: bold;    
    color: #B5121B !important; 
    width: 625px;      
}

td.industryGroup
{
    width: 320px;
    vertical-align: top;
}

#PracticeList
{
    margin: 30px 0px 0px 0px;
    padding: 0;
    list-style: none;
    font-size: 8pt;
}

#PracticeList > li
{
    width: 148px;
    display: inline-block;
    float: left;
    margin-left: 10px;
    /*border-top: 1px solid #B5121B;*/
}
#PracticeList ul
{
    margin: 0;
    padding: 0;
    list-style: none;
}
#PracticeList > li > ul > li
{
    border-bottom: 1px solid #B5121B;
    line-height: 1.5em;
}
#PracticeList > li > ul > li a
{
    font-size: 8pt;
    display: block;
    margin: 1px 0px 1px 0px;
}
#PracticeList > li > ul > li a:hover
{
    background-color: #EDEDED;
}
#PracticeSectionLink
{    
    position: absolute;
    bottom: 10px;
    right: 10px;
    color: #B5121B !important;
    font-weight: bold;
    font-size: 9pt;
}

.PracticeSectionLink img
{
    border: none;
}

#PracticesMenu
{
    height: 330px !important;
}

/* These are temporary placeholders for content zones in the KL megamenu */

.kl-megamenu-detail-left
{    
    position: absolute;
    left: 315px;
    top: 12px;
    width: 155px;
    padding-bottom: 10px;
    border-bottom: 1px dotted #999;    
}

.kl-megamenu-detail-right
{
    position: absolute;
    left: 480px;
    top: 12px;
    width: 155px;
    height: 200px;
}

.gd-megamenu-detail
{
    width: 280px;
    height: 200px;    
    position: absolute;
    left: 350px;
    top: 33px;    
}

.ju-megamenu-detail
{
    width: 320px;
    height: 200px;    
    position: absolute;
    left: 304px;
    top: 33px;
}

#PrimaryNavigationBar li.tabCurrent
{
    background-color: #FFFFFF;
    border-bottom: 1px solid #FFFFFF;
    margin-bottom: 0px;    
}
#PrimaryNavigationBar li.tabCurrent>a.tab, #PrimaryNavigationBar li.tabCurrent>a.tab:link, #PrimaryNavigationBar li.tabCurrent>a.tab:visited
{
    color: #B5121B;
}