/*

  browser_generic.css - since browsers have different methods for interpreting
  											some 'standard' code, we're having to put this in to 
  											use separate code for each browser (where required)


*/
.nav li {
  float: left;
  margin: 0;
  padding: 0;
  position: relative;  
  
}

.nav li a, .nav li a:link, .nav li a:active, .nav li a:visited {
  font: 12px TrebuchetMS,Tahoma,Verdana,sans;
  background: #ddd3ba;
  color: #444;
  display: block;
  /*padding: 0 9px;*/
  /*text-transform: lowercase;*/
  text-decoration: none;  
}
.nav ul {
  background: #ddd3ba;
  border: 1px solid #fff;
  list-style: none;
  margin: 0;
  /*width: 100px;*/
  
  position: absolute;
  top: -999em;
  left: -1px;

}
.nav ul a {
  border: 1px solid #fff;
  border-bottom: 0;
  padding-right: 20px;
  padding-top: 5px;
  padding-bottom: 5px;
  margin-bottom:0;
  /*width: 80px;*/
  width: auto;
  white-space: nowrap;
}
.nav li a:hover {
  background:#fefdfc;
  color: #000;	

}
