﻿/* Top Menu - Pure CSS */

.third-level-menu-top
{
    position: absolute;
    top: 0;
    right: -150px;
    width: 150px;
    list-style: none;
    padding: 0;
    margin: 0;
    display: none;
}

.third-level-menu-top > li
{
    height: 25px;
}

.third-level-menu-top a {
    width:125px; 
    text-decoration: none;	
	padding: 0;
	color: #FFF;   
    background: #886F68 repeat-x;
}
.third-level-menu-top a:hover {
    color: #333; background: #F5EDF0 repeat-x;
}

.second-level-menu-top
{
    position: absolute;
    top: 25px;
    left: 0;
    width: 150px;
    list-style: none;
    padding: 0;
    margin: 0;
    display: none;
}

.second-level-menu-top > li
{
    position: relative;
    height: 25px;
    border-right: 1px solid #CCC;
}
.second-level-menu-top > li:hover {  }

.second-level-menu-top a {
    width:125px; 
    text-decoration: none;	
	padding: 0;
	color: #FFF;   
    background: #886F68 repeat-x;
    border-top:1px solid #D4D4D4;
}
.second-level-menu-top a:hover {
    color: #333; background: #F5EDF0 repeat-x;
}

.top-level-menu-top
{
    list-style: none;
    padding: 0;
    margin: 0;
    z-index:1000;
}

.top-level-menu-top > li
{
    position: relative;
    float: left;
    height: 25px;
    border-right: 1px solid #CCC;
}

.top-level-menu-top li:hover > ul
{
    /* On hover, display the next level's menu */
    display: inline;
}


/* Menu Link Styles */

.top-level-menu-top a /* Apply to all links inside the multi-level menu */
{
    font: 13px 'Open Sans Condensed', sans-serif;
    color: #FFFFFF;
    text-decoration: none;
    padding: 0 15px;
    
    /* Make the link cover the entire list item-container */
    display: block;
    line-height: 25px;
}
.top-level-menu-top a:hover { color: #000000; background: #F5EDF0 repeat-x }


/* Mid Level Menu */

.third-level-menu-mid
{
    position: absolute;
    top: 0;
    right: -150px;
    width: 150px;
    list-style: none;
    padding: 0;
    margin: 0;
    display: none;
}

.third-level-menu-mid > li
{
    height: 30px;
}

.third-level-menu-mid a {
    width:125px; 
    text-decoration: none;	
	padding: 0;
	color: #FFF;   
    background: #886F68 repeat-x;
}
.third-level-menu-mid a:hover {
    color: #333; background: #F5EDF0 repeat-x;
}

.second-level-menu-mid
{
    position: absolute;
    top: 30px;
    left: 0;
    width: 150px;
    list-style: none;
    padding: 0;
    margin: 0;
    display: none;
}

.second-level-menu-mid > li
{
    position: relative;
    height: 30px;
    border-right: 1px solid #CCC;
}
.second-level-menu-mid > li:hover {  }

.second-level-menu-mid a {
    width:125px; 
    text-decoration: none;	
	padding: 0;
	color: #FFF;   
    background: #424C55 repeat-x;
    border-top:1px solid #D4D4D4;
}
.second-level-menu-mid a:hover {
    color: #333; background: #F5EDF0 repeat-x;
}

.top-level-menu-mid
{
    list-style: none;
    padding: 0;
    margin: 0;
    z-index:1200;
}

.top-level-menu-mid > li
{
    position: relative;
    float: left;
    height: 30px;
}

.top-level-menu-mid li:hover > ul
{
    /* On hover, display the next level's menu */
    display: inline;
}


/* Menu Link Styles */

.top-level-menu-mid a /* Apply to all links inside the multi-level menu */
{
    color: #FFFFFF;
    text-decoration: none;
    padding: 0 15px;
    
    /* Make the link cover the entire list item-container */
    display: block;
    line-height: 30px;
}
.top-level-menu-mid a:hover { color: #333; background: #F5EDF0 repeat-x }