
/* 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;
  /*width: 793px;*/
  height: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
  float: left;
  z-index:90;
}

.default_12 li {
  position: relative;
  display: block;
  float:left;
  margin: 5px 5px;
  min-width: 10px;
  z-index:91;
}

* html .default_12 li {
  width: 10px;
  white-space:nowrap;
}

.default_12 li ul li {
	float: none;
	position: relative;
	 z-index:92;
	display: block;
	width: 150px;
	margin: 0 0 0 -5px;
}

.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. */

.menulvl_0 a:link, .menulvl_0 a:visited{
  color: #FFF;
  font-weight:bold;
  text-align: center;
  text-decoration: none;
  padding: 3px 10px 3px 0;
  background:url('/template/images/divider.gif') right 5px no-repeat;
}

.menulvl_0 a:hover {
  color: #CCCCCC;
}

.default_12 ul.menulvl_1 {
	list-style: none;
	margin: 0;
	padding: 0;
	top: 20px;
	left: 0px;
}

.menulvl_1 a:link, .menulvl_1 a:visited{
  background: #00a0b0;
  color: #fff;
  text-align:left;
  padding-left:8px;
}

.menulvl_1 a:hover{
  color: #CCCCCC;
}