/*
## menu.css - Contains style for menu
*/

/* common style for <ul> elements */
.nav,
.nav ul,
#navUtils ul {
  list-style-type: none;
  padding: 0px;
  margin: 0px;
}

/* Top menu style */
#navMain {
  margin-bottom: -3px;
}

*html #navMain {
  position: relative;
}

#navMain li {
  float: left;
  margin-right: 5px;
}

#navMain li a {
  display: block;
  padding: 6px 10px;
  color: #fff;
  background: #345078;
  border-top: 3px solid #345078;
  text-decoration: none;
  font-size: 117%;
}

#navMain li.current a {
  background: #fff;
  color: #345078;
}

#navMain li a:hover {
  text-decoration: underline;
}

#navUtils ul {
  float: right;
}

#navUtils li {
  float: left;
  margin-right: 5px;
}

#navUtils li a {
  display: block;
  color: blue;
  padding: 5px;
}

#navUtils li.current a {
  display: block;
  /*color: #fff;
  background: #ea0000;*/
  padding: 5px;
  font-weight: bold;
  color: #000;
}

/*Sub menu style */

#navSub a {
  color: #000;
  padding: 5px 10px;
  display: block;
  border-bottom: 1px solid #e5e6e6;
  background: #f8f8f8;
  text-decoration: none;
}

#navSub a:hover {
  text-decoration: underline;
}

#navSub li.current a {
  font-weight: normal;
  background: #e0e5ed;
  border-bottom: 1px solid #fff;
}

#navSub a.last {
  border-bottom: 0px;
}

#navSub li a.current {
  color: #fff;
  background: #345078;
}

#navSub ul li a.current {
  color: #000;
  font-weight: bold;
  background: #e0e5ed;
}

#navSub ul li a {
  padding-left: 20px;
}

#navSub ul li ul li a {
  padding-left: 40px;
}

#navSub ul li ul li ul li a {
  padding-left: 60px;
}

#navSub ul li a.active {
  color: #000;
  font-weight: bold;
  background: #fff;
}

#navSub li a.active {
  font-weight: bold;
}

*html #navSub li {
  border-bottom: 1px solid #fff;
}