/* CSS file for navigation menus */

.menu 
{
    font-size:              13px;
    font-weight:            bold;
    font-family:            Arial, Helvetica, sans-serif;
    position:               relative;
    z-index:                100;
    margin-left:            auto;
    margin-right:           auto;
    padding:                0;
    width:                  791px;
    background:             black;
}


/****************************************
*      Top Level & Global Settings      *
*****************************************/      

/* Get rid of the margin, padding and bullets in the unordered lists */
.menu ul 
{
    padding:                0; 
    margin:                 0; 
    list-style-type:        none;
}


/* Set up the link size, color and borders */
.menu a, 
.menu a:visited, 
.menu a:link, 
.menu div 
{
    display:                block;
    width:                  87px; 
    color:                  #cc6600; 
    min-height:             15px; 
    padding:                4px 0px 4px 0px; 
    line-height:            14px; 
    text-decoration:        none; 
    text-indent:            5px; 
    text-align:             center; 
    vertical-align:         middle;
}

/* get rid of the table */
.menu table 
{
    position:               absolute; 
    border-collapse:        collapse; 
    top:                    0; 
    left:                   0; 
    z-index:                100; 
    font-size:              1em;
}


/**************************************
*      Common Sub-Level Settings      *
***************************************/   

/* Set up the list items */
.menu li 
{
    background:             black; 
    float:                  left; 
    min-height:             10px; 
    width:                  87px;
    cursor:                 pointer;
}

/* For Non-IE browsers and IE7 */
.menu li:hover 
{
    position:               relative;
}


/* style the hover text colour */
.menu a:hover, 
.menu li:hover, 
.menu div:hover,
.menu ul ul a:hover 
{
    color:                  white;
}


/* Set up the sublevel lists with a position absolute for flyouts and overrun padding. The transparent gif is for IE to work */
.menu li ul 
{
    visibility:             hidden; 
    position:               absolute; 
    top:                    5px; 
    left:                   87px; 
    padding:                0px 0px 0px 15px; 
    background:             transparent url(../images/menu/transparent.gif);
}

/* For Non-IE and IE7 make the sublevels visible on list hover. This is all it needs */
.menu li:hover > ul 
{
    visibility:             visible;
}


/* Position the first sub level beneath the top level links */
.menu > ul > li:hover > ul 
{
    left:                   -10px; 
	top:					30px;
}

/* Set up the sub level borders */
.menu li.middle,
.menu li.top,
.menu li.bottom,
.menu li.single {
    border-right-style:     solid;
    border-right-color:     #666666;
    border-right-width:     1px; 
    border-left-style:      solid;
    border-left-color:      #666666;
    border-left-width:      1px; 
}

.menu li.bottom,
.menu li.single {
    border-bottom-style:    solid;
    border-bottom-color:    #666666;
    border-bottom-width:    1px; 
}

.menu li.top,
.menu li.single {
    border-top-style:       solid;
    border-top-color:       #666666;
    border-top-width:       1px; 
}


/* For IE5.5 and IE6 give the hovered links a position relative and a change of background and foreground color. This is needed to trigger IE to show the sub levels */
* html .menu li a:hover 
{
    position:               relative;
}

/* For accessibility of the top level menu when tabbing */
.menu li a:active, 
.menu li a:focus 
{
    color:                  #cc0000;
}

/* hack for IE5.5 */
* html .menu a, 
* html .menu a:visited 
{
    width:                  170px; 
    w\idth:                 169px;
}

/* Set up the pointers for the sub level indication */
.menu li.fly 
{
    background-image:       url(../images/menu/fly.jpg);
    background-repeat:      no-repeat;
    background-position:    right center;
}

.menu li.fly:hover
{
    background-image:       url(../images/menu/fly-selected.jpg);
    background-repeat:      no-repeat;
    background-position:    right center;
}

/*
.menu li.drop 
{
    background-image:       url(../images/buttons/drop.jpg);
    background-repeat:      no-repeat;
    background-position:    right center;
}
*/


/* This following is for IE5.5 and IE6 ONLY and is necessary to make the sublevels work */

/**********************
*      2nd Level      *
**********************/   

/* make the second level visible when hover on first level link and position it */
.menu ul li:hover ul,
.menu ul a:hover ul
{
    visibility:             visible; 
    left:                   -15px; 
    top:                    30px; 
    lef\t:                  -15px; 
    to\p:                   29px;
}


/**********************
*      3rd Level      *
**********************/   

/* keep the third level+ hidden when you hover on first level link */
.menu ul li:hover ul ul,            
.menu ul a:hover ul ul            
{
    visibility:             hidden;
}

/* make the third level visible when you hover over second level link and position it and all further levels */
.menu ul li:hover ul li:hover ul,  
.menu ul li:hover ul a:hover ul,    
.menu ul a:hover ul li:hover ul,  
.menu ul a:hover ul a:hover ul     
{ 
    visibility:             visible; 
    top:                    13px; 
    left:                   73px;
}


/**********************
*      4th Level      *
**********************/   

/* keep the fourth level+ hidden when you hover on second level link */
.menu ul li:hover ul ul ul,           
.menu ul a:hover ul ul ul,             
.menu ul li:hover ul li:hover ul ul,   
.menu ul li:hover ul a:hover ul ul,   
.menu ul a:hover ul li:hover ul ul,   
.menu ul a:hover ul a:hover ul ul     
{
    visibility:             hidden;
}

/* make the fourth level visible when you hover over third level link */
.menu ul li:hover ul li:hover ul li:hover ul, 
.menu ul li:hover ul li:hover ul a:hover ul,   
.menu ul li:hover ul a:hover ul li:hover ul,  
.menu ul li:hover ul a:hover ul a:hover ul,    
.menu ul a:hover ul li:hover ul li:hover ul,   
.menu ul a:hover ul li:hover ul a:hover ul,   
.menu ul a:hover ul a:hover ul li:hover ul,   
.menu ul a:hover ul a:hover ul a:hover ul      
{ 
    visibility:             visible;
}

