
/* 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_12 ul {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
  z-index: 99;
  width: 158px;
}

.default_12 li {
  position: relative;
  display: block;
}
* html .default_12 li {
  float: left;
  width: 100%;
}
* + html .default_12 li {
  float: left;
  width: 100%;
}

.default_12 a {display: block;}
* html .default_12 a {height: 1%;}
* + html .default_12 a {height: 1%;}


.default_12 li ul, .default_12 li:hover ul li ul {
  display: none;
}

.default_12 li:hover ul, .default_12 li ul li:hover ul {
  display: block;
}

.default_12 li ul ul, .default_12 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: 99;
}


/* The above css is require, anything below can be changed. */

.default_12 {
  width: 158px;
  padding: 20px 5px 0 9px;
  float: left;
}

.menulvl_0 a {
  color: #fff;
  font-size: 110%;
  text-align: center;
  border-bottom: 1px solid #fff;
  text-decoration: none;
  padding: 5px 0 5px 0;
}

.menulvl_0 a:hover {
  background-image: url('/template/images/hover_arrow.png');
  background-position: 5px center;
  background-repeat: no-repeat;
  color: #fff;
}

* html .menulvl_0 a:hover {background-image: url('/template/images/hover_arrow.gif');}

.menulvl_0 a:visited {color: #fff;}

.menulvl_1 a {
  background: #c73939;
  color: #fff;
  border-bottom: 1px solid #e68788;
}



