.menu {
    float: right;
    width:745px;
    height: 34px;
    position:relative;
    z-index:100;
    margin: 5px -2px 0 0;
}

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

.menu ul ul {
    width:145px;
}

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

/* style the links for the top level */
.menu a, .menu a:visited {
    display:block;
    font-size:18px;
    text-align: center;
    font-family: 'Helvetica', 'Verdana', Arial, sans-serif;
    text-decoration:none;
    color:#fff;
    width:138px;
    height:30px;
    border-width:1px 0 1px 1px;
    padding-right: 5px;
	padding-top: 1px;
    margin-bottom: 1px;
    margin-right: -10px;
    line-height: 32px;
}

/* style the second level background */

/* style the second level hover */
.menu ul ul a.drop:hover {
    background:#c9ba65 no-repeat 130px center;
}
.menu ul ul :hover > a.drop {
    background:#c9ba65  no-repeat 130px center;
}


/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul {
    visibility:hidden;
    position:absolute;
    height:0;
    top:31px;
    left:0;
    width:145px;
}


/* style the second level links */
.menu ul ul a, .menu ul ul a:visited {
    background:#d4d8bd;
    height:auto;
    line-height:1em;
    padding:5px 10px;
    width:124px;
    border: 2px solid #C7C7C7;
    border-width: 2px 0px;
    margin: -1px;
}



/* style the top level hover */
.menu li a:hover, .menu ul ul a:hover {
    background:#b7d186;
}

.menu li :hover > a, .menu ul ul :hover > a {
    background:#b7d186;
}

/* make the second level visible when hover on first level list OR link */
.menu ul li:hover ul, .menu ul a:hover ul {
    visibility:visible;
}


