/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
 /*  Main Menu Box*/
.menu {
    background: linear-gradient( #C69264,#AE6B31,#C69264);
    font-family: Verdana, Geneva, sans-serif;
    font-size:10pt;
    width: 700px;
    position: absolute;
    left:0px;
    height: 30px;
    padding: 0 0 0 10px;
    border: solid;
    border-width: 3px;
    border-radius: 10px;
    border-color: #cccccc;



 }
/* Top-level menu */
.menu a {
    display: block;
    padding: 5px 25px 5px 25px;   /*spacing between menu items*/
    color: #fff;
    text-decoration: none;
    font-weight: normal;
    white-space: nowrap;
 }
 .menu a:hover {
   color: #111111;
}
.menu-level-1 {
    display: flex;
    list-style: none;
}
.menu-level-1 > li {
    position: relative;
}
.menu-level-1 > li:hover > .menu-level-2 {
    display: block;
}
/* First dropdown */
.menu-level-2 {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 100%;
    background-color:#AE6B31;
    list-style: none;
    display: none;
    border: solid;
    border-color: #cccccc;
    border-width: 0 2px 2px 2px;
    border-radius: 0 0 10px 10px;    /* t,r,b,l*/
}
 /* First Drop down buttons*/
.menu-level-2 > li {
    border: solid;
    border-width: 0px;
    border-color: #966234;
    position: relative;
    text-align: left;
}

 /* Hover styles */
 .menu-level-2 a
{
    color: #ffffff;
    padding: 4px 10px 4px 10px;
 }

  .menu-level-2 a:hover {
   color: #111111;
    border-width: 0px;
    border-radius: 0px 0px 0px 0px;
}
 .menu-level-2 li:first-child a:hover {
            border-radius: 0 0 0px 0px;
}
.menu-level-2 li:last-child a:hover{
            border-radius: 0px 0px 10px 10px;
}

/*allow fly out block */
.menu-level-2 > li:hover > .menu-level-3 {
    display: block;
}
/* Second-level flyout */
.menu-level-3 {
    position: absolute;
    top: 0;
    left: 100%;
    min-width: 120px;
    background-color:#AE6B31;
    list-style: none;
    display: none;

    border: solid;
    border-color: #aaaaaa;
    border-width: 2px 2px 2px 2px;
    border-radius: 10px 10px 10px 10px;


}
/* Second Drop down buttons*/
.menu-level-2 > li {
    border: solid;
    border-width: 0px;
    border-color: #AE6B31; ;
    position: relative;
    color: #111111;
}
 /* Hover styles */
.menu-level-3 a
{
    color: #111111;
    border-width: 0 3px 3px 3px;
    border-radius: 0 0 0px 0px;
}
.menu-level-3 a:hover {
    background: #966234;
    color: #ffffff;
}
.menu-level-3 li:first-child a:hover {
            border-radius: 0 0 0px 0px;
}
.menu-level-3 li:last-child a:hover{
            border-radius: 0px 0px 10px 10px;
}
/*allow fly out block */
.menu-level-3 > li:hover > .menu-level-4 {
    display: block;
}
/* Second-level flyout */
.menu-level-4 {
    position: absolute;
    top: 0;
    left: 100%;
    min-width: 180px;
    background: #f0f;
    list-style: none;
    display: none;
    border: solid;
    border-width: 3px;
    border-color: #00f;
    border-radius: 0 0 10px 10px;
}
/* Second Drop down buttons*/
.menu-level-4 > li {
    border: solid;
    border-width: 3px;
    border-color: #f00;
    border-radius: 0 0 20px 20px;    /* t,r,b,l*/
}
 /* Hover styles */
.menu-level-4 a:hover {
    background: #0f0;
    color: #f00;
}


