
/* This navigation popout to left or right, currently set to a maximum of 3 levels*/


/* Set some default values, like remove unwanted padding and margin 
Also change the with of the menu here*/

.default_10 ul {
  width: 125px;
  list-style: none;
  margin: 0;
  padding: 0;
  background: #FFCC00;
}

.default_10 li {
  position: relative;
  display: block;
  z-index: 90;
}
* html .default_10 li {
  float: left; 
  width: 100%;
}
* + html .default_10 li {
  float: left; 
  width: 100%;
}

.default_10 a {display: block; }
* html .default_10 a {height: 10%;}
* + html .default_10 a {height: 1%;}
 

.default_10 li ul, .default_10 li:hover ul li ul {
  display: none;  
  position: absolute;
  /* If you add a border, change the top position to minus the width of the border */
  top: 0px;
  /* Change left to right if you want the menu pop out to the left */
  left: 100%;
  z-index: 90;
 
}

.default_10 li:hover ul, .default_10 li ul li:hover ul {
  display: block;
}

/* The above css is require, anything below can be changed. */

.default_10 {
  background: #FFCC00;
  padding-bottom:20px;
}

.default_10 li a.sel {
background: #FFF;
}

.thismenulvl_0 a {
  background: #FFCC00;
  color: #000;
  text-align: center;
  border-bottom: 1px solid #ff0000;
  text-decoration: none;
  padding: 5px 0 5px 0;
  width: 125px;
  margin:auto;
}

.thismenulvl_0 a:hover {
  background: #FFF;
}

.thismenulvl_1 a {
  background: #ffe47a;
  color: #000;
}



