/*
## menu.css - Contains style for menu
*/

/* common style for <ul> elements */
.nav,
.nav ul {
  list-style-type: none;
  padding: 0;
}

/* Sub Menu at top menu style */


ul.subMenu {
  list-style-type: none;
  padding: 15px;
  text-align: right;
}

.subMenu li {
  float: right;
  margin-left: 10px;
}

.subMenu li a {
  display: block;
  padding: 5px 10px;
  background-color: #fcd8c2;
  color: #727272;
  font-weight: bold;
  text-decoration: none;
}

.subMenu li a:hover {
  background-color: #f26122;
  color: #fff;
}


/* Top menu style */


#navMain {
  margin-top: 0;
  padding: 0 15px;
}

#navMain li {
  float:left;
  height: 32px;
  margin-left: 4px;
  display: inline;
 
}

#navMain li .tabStart {
  background: url(tabLeft.gif) top left no-repeat;
  width: 11px;
  float: left;
  height: 100%;
  display: inline;
}

#navMain li .tabEnd {
  background: url(tabRight.gif) top left no-repeat;
  width: 11px;
  float: left;
  height: 100%;
  display: inline;
}

#navMain li .tabLink {
  display: inline;
  padding: 10px 7px 0;
  background: url(tabCentred.gif) top left repeat-x;
  height: 22px;
  float: left;
  line-height: 100%;
}

#navMain li.current .tabStart {
  background: url(tabLeftSelected.gif) top left no-repeat;
  width: 11px;
  line-height: 100%;
}

#navMain li.current .tabEnd {
  background: url(tabRightSelected.gif) top left no-repeat;
  width: 11px;
}

#navMain li.current .tabLink {
  display: block;
  background: url(tabCentredSelected.gif) top left repeat-x;
}

#navMain li a {
  font-size: 100%;
  text-decoration: none;
  color: #727272;
  line-height: 16px;
  display: block;
}

#navMain li a:hover {
  color: #f26122;
}

/*TODO: refactor code, get rid of inline-block element */
/*Sub menu style */
#navSub a {
  font-size: 90%;
  color: #727272;
  margin-bottom: 3px;
  padding-left: 12px;
  display: block;
  display: inline-block;
  font-weight: normal;
  text-decoration: none;
}

#navSub a.current {
  color: #f26122;
}

#navSub li {
  background: url(submenuPointer.gif) 0px 4px no-repeat;
  display: inline;
  margin-left: 15px;
}

#navSub ul a {
  margin-left: 0;
}

#navSub ul li a {
  padding-left: 12px;
}

ul#navSub {
  margin-left: 5px;
  padding-top: 5px;
}