
/* START MENU */
#nav {
	position: relative;
	top: -3px;
	height: 60px;
	background: url(../images/trav-menu-back.jpg) top left repeat-x;
	margin-top: 0;
	margin-bottom: -3px;
	padding-left: 10px;
}

#nav li {
	margin: 0;
	float: left;
	display: block;
}

#nav li.off ul , #nav li.on ul {
	display: none;
}

#nav li a {
	float: left;
	color: #f1f1f1;
	font-size: 12px;
	font-weight: bold;
	display: block;
	height: 16px;
	padding: 7px 15px;
	background: url(../images/trav-menu-separator.jpg) top right no-repeat;
	text-decoration: none;
}

#nav li.off ul, #nav li.on ul {
  /*put the subnavs below and hide them all*/
	display: none;
	position: absolute;
	top: 30px;
	left: 0px;
	right: 0px;
	padding: 0 10px;
	background: url(../images/trav-submen-back.jpg) top left repeat-x;
	overflow: hidden;
}

#nav li.on a{
	
}

#nav li.on ul a, #nav li.off ul a {
  /*  cancel inherit of border
      on subnav of active topic */
	border: 0;
	padding: 7px 10px;
}

#nav li.on ul a, #nav li.off ul a {
  float: left;
  /*ie doesn't inherit the float*/
  border: 0;
  color: #171717;
  font-size: 10px;
  width: auto;
  background: url(../images/trav-submen-separator.jpg) top right no-repeat;
}

#nav li.on ul {
  /*display the current topic*/
  display: block;
}

#nav li.off:hover ul, #nav li.over ul { 
  /* display the active subnav list */
  display: block;
  z-index: 6000;
}

#nav li.off a:hover,
#nav li:hover a,
#nav li.over a {
  z-index: 6000;
  overflow: hidden;
}

#nav li.off a:hover, #nav li.off:hover a {
}

#nav li#country { position: absolute; right: 25px; }
#nav select {
	margin: 6px 0 0 15px;
	background-color: #171717;
	color: #fff;
	font-family: Helvetica, Arial, sans-serif;
	font-size: 110%;
	font-weight: bold;
}
/* END MENU */