/* ================================================================ 
This copyright notice must be untouched at all times.

The original version of this stylesheet and the associated (x)html
is available at http://www.cssplay.co.uk/menus/final_drop.html
Copyright (c) 2005-2008 Stu Nicholls. All rights reserved.
This stylesheet and the associated (x)html may be modified in any 
way to fit your requirements.
=================================================================== */

.menu {
    position: relative;
    z-index: 50;
}

/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu li {
    float: left;
    position: relative;
}

/* style the links for the top level */
.menu a {
    display: block;
    font-weight: bold;
}

.menu a.parent {
    background: url('img/menu-arrow-down.gif') no-repeat center 30px;
}

/* SECOND LEVEL */

.menu ul ul {
    visibility: hidden;
    position: absolute;
    z-index: auto;
    background: #000;
    opacity: 0.85;
    width: 170px;
}

.menu ul ul li {
    padding: 0;
    margin: 0;
    line-height: 1em;
    position: relative;
}

.menu ul ul a,
.menu ul ul a:visited {
    display: block;
    width: 150px;
    padding: 10px;
    text-transform: none;
    font-size: 10pt;
    font-weight: normal;
}

.menu ul ul a.parent {
    background: url('img/menu-arrow-right.gif') no-repeat 163px center;
}

.menu ul ul li:hover {
}

.menu ul ul a:hover {
}

/* THIRD LEVEL */
.menu ul ul ul {
    left: 170px;
    top: 0;
    z-index: 53;
}

.menu ul ul ul a,
.menu ul ul ul a:visited {
}

.menu ul ul ul a:hover {
}

/* FOURTH LEVEL */
.menu ul ul ul ul {
    z-index: 54;
}


.menu ul li:hover ul,
.menu ul a:hover ul {
    visibility: visible;
}

.menu ul :hover ul ul,
.menu ul :hover ul ul ul {
    visibility: hidden;
}

.menu ul :hover ul :hover ul {
    visibility: visible;
}

.menu ul :hover ul :hover ul ul {
    visibility: hidden;
}

.menu ul :hover ul :hover ul :hover ul {
    visibility: visible;
}



/* ================================================================ 
   This CSS is further CSS I have created specifically for Wordpress
   so that the current page is highlighted in two levels.
   If you want it in three levels let me know.

   Author: Isaac Rowntree
   Website: www.zackdesign.biz
=================================================================== */


.menu ul ul .current_page_item a {
}

.menu .current_page a,
.menu a.current_parent {
    color: #c81013;
}

.menu ul .current_page_item ul a {
}

.menu ul .current_page_item ul a:hover {
}

.menu .current_page_item a:hover {
}

