/*
## menu.css - Contains style for menu
*/

/* common style for <ul> elements */
.nav,
.nav ul {
  list-style-type: none;
  padding: 0;
}

/* Top menu style */
#navMain {
margin: 5px 0;
overflow: hidden;
}

#navMain li {
  float: left;
  margin-right: 5px;
}

#navMain li a {
  font-weight: bold;
  display: block;
  padding:0 10px;
  color: #6e6b6b;
  text-transform: uppercase;
  border-right:1px dotted #6e6b6b;
/*border-bottom:5px solid #6e6b6b;*/
}

#navMain li a:hover {
   color: #00aeef;
  /*border-bottom:4px solid #00aeef;*/
  text-decoration: none;
}

#navMain li a:active {
  color: #464646;
}

#navMain li a.current {
  color: #00aeef;
}

/*TODO: refactor code, get rid of inline-block element */

#navSub {
  overflow:hidden;
  margin: 0 0 5px 0;
}

#navSub ul {
  margin-top: 5px;
  background: url(../GFX/navsub.jpg);
  repeat: x-repeat;
  height: 20px;
}

#navSub li {
  float: left;
}

#navSub li a {
  display: block;
  color: #fff;
  font-weight: bold;
  font-size: 11px;
  padding: 3px 10px;
}

#navSub li a:hover {
  color: #000;
  text-decoration: none;
}

#navSub li a.current {
  color: #000;
}
