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

.topNav
{
	position: relative;
	z-index: 90;
}

.topNav ul
{
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
  z-index: 90;
}

.topNav li
{
  position: relative;
  display: block;
  float: left;
  padding-left:5px;
  width:149px;
  text-align:left;
}

.topNav li li
{
	width:auto;
	float: none;
}

.topNav a{
	display: block;
	/*padding-top:7px;*/
	padding-bottom:7px;
}

.topNav a:link,.topNav a:visited{
	color:#000;
	text-decoration:none;
}

.topNav a:hover{
	/*color:#DEDEDE;*/
}

.topNav li ul a{
	background:#C5B358;
	text-align:left;
	padding:5px;
	display:block;
	white-space: nowrap;
}

.topNav li ul a:link,.topNav li ul a:visited{
	color:#365a33;
}

.topNav li ul a:hover{
	color:#0c250b;
}

.topNav li ul, .topNav 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: 100%;
  /* Change left to right if you want the menu pop out to the left */
  left: 0px;
  z-index: 90;
}

.topNav li:hover ul, .topNav li ul li:hover ul
{
  display: block;
  z-index: 99;
}
 .topNav li ul li:hover ul {top: 0px;left: 100%;}