
/* 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;
  margin-bottom: 3px;
  width: 100%;
  z-index: 99;
}

.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;
  position: absolute;
  /* If you add a border, change the top position to minus the width of the border */
  top: -1px;
  /* Change left to right if you want the menu pop out to the left */
  left: 100%;
  z-index: 99;
}

.default_12 li:hover ul, .default_12 li ul li:hover ul {
  display: block;
}

/* The above css is require, anything below can be changed. */

.default_12 {
  padding-left: 1px;
}

.menulvl_0 a {

  background:  #ffffff url('/template/images/normal.png')  left repeat-y;

  color: #000;
  text-align: left; 
  font:Verdana, Arial, Helvetica, sans-serif; color:rgb(255,255,255);
  text-decoration: bold;
  font-weight:bold;
  padding: 0px 0 8px 38px;
}

.menulvl_0 a:hover {
  background: #c0ddfd url('/template/images/hover.png') center left repeat-y; color:rgb(231,252,35);
}

.menulvl_0 ul {
	border: 1px solid #000;
	background: #ffffff;
}

.menulvl_1 a {
  background: #fff url('/template/images/graph.jpg') left ; color:rgb(255,255,255);
  color: #000;
  padding: 3px;
  font-weight:bold;
    }

.menulvl_1 a:hover {
  background: #2e60cd; color:rgb(255,255,255);
}



