/*
## menu.css - Contains style for menu
*/

/* common style for <ul> elements */
.nav,
.nav ul {
  list-style-type: none;
  padding: 0;
}

/* Top menu style */

#navTop {
  background-color: #e90268;
}

#navTop ul {
  padding-left: 0;
  float: left;
}

#navTop li {
  float: left;
  list-style-type: none;
}

#navTop li a {
  display: block;
  padding: 4px 15px;
  color: #fff;
  text-transform: uppercase;
  font-size: 91%;
  font-weight: bold;
}

#navTop li a:hover {
  text-decoration: underline;
}

/*TODO: refactor code, get rid of inline-block element */
/*Sub menu style */

#navMain {
  padding-left: 0px;
}

#navMain ul {
  border: 1px solid #012c41;
  background-color: #fff;
}

#navMain li a {
  font-size: 91%;
  font-weight: bold;
  color: #ffffff;
  display: block;
  display: inline-block;
  padding: 4px 6px 4px 26px;
  background: url(../GFX/menuArrowBlueBlank.gif) top left no-repeat;
}

#navMain li a:hover {
  background: url(../GFX/menuArrowBlueHover.gif) top left no-repeat;
  text-decoration: none;
}

#navMain li a.current {
  background: url(../GFX/menuArrowBlueCurrent.gif) top left no-repeat;
}

#navMain ul a {
  font-weight: normal;
  margin-left: 0;
}

#navMain li {
  margin-bottom: 3px;
  list-style-type: none;
  background-color: #012c41;
}

#navMain li ul li {
  background-color: #fff;
  margin-bottom: 0px;
}

#navMain li ul li a {
  color: #012c41;
  margin-left: -25px;
  font-weight: normal;
  background: none;
}

#navMain li ul li a.current {
  color: #012c41;
  margin-left: -25px;
  font-weight: bold;
  background: none;
}

#navMain li ul li a:hover {
  background: none;
  text-decoration: underline;
}

#navMain li ul li ul li a {
  color: #012c41;
  margin-left: -25px;
  font-weight: normal;
  background: none;
}

#navMain li ul li ul {
  border: none;
}

#navMain li ul li ul li a.current {
  color: #012c41;
  margin-left: -25px;
  font-weight: bold;
  background: none;
}

#navMain li ul li ul li a:hover {
  background: none;
  text-decoration: underline;
}

/*Extranet menu style */

#extranetMenu {
  margin-top: 15px;
}

#navExtranet {
  padding-left: 0px;
}

#navExtranet ul {
  border: 1px solid #e90268;
  background-color: #fff;
}

#navExtranet li a {
  font-size: 91%;
  font-weight: bold;
  color: #ffffff;
  display: block;
  display: inline-block;
  padding: 4px 6px 4px 26px;
  background: url(../GFX/menuArrowPinkBlank.gif) top left no-repeat;
}

#navExtranet li a:hover {
  background: url(../GFX/menuArrowPinkHover.gif) top left no-repeat;
  text-decoration: none;
}

#navExtranet li a.current {
  background: url(../GFX/menuArrowPinkCurrent.gif) top left no-repeat;
}

#navExtranet ul a {
  font-weight: normal;
  margin-left: 0;
}

#navExtranet li {
  margin-bottom: 3px;
  list-style-type: none;
  background-color: #e90268;
}

#navExtranet li ul li {
  background-color: #fff;
  margin-bottom: 0px;
}

#navExtranet li ul li a {
  color: #012c41;
  margin-left: -25px;
  font-weight: normal;
  background: none;
}

#navExtranet li ul li a.current {
  color: #012c41;
  margin-left: -25px;
  font-weight: bold;
  background: none;
}

#navExtranet li ul li a:hover {
  background: none;
  text-decoration: underline;
}

#navExtranet li ul li a.current {
  background: none;
}

#navExtranet li ul li ul {
  border: none;
}

/*memberList menu style */

.memberList {
  margin-top: 10px;
}

.memberList li {
  list-style: none;
}

.memberList li a {
  padding-left: 15px;
}