/*
## menu.css - Contains style for menu
*/

/* common style for <ul> elements */
.nav,
.nav ul {
  list-style-type: none;
  padding: 0;
}

/* Top menu style */
ul#navMain {
  background: transparent url(../GFX/menyBgTop.gif) no-repeat bottom left;
  padding-left: 5px;
  width: 700px;
}

#navMain li {
  float: left;
  background: transparent url(../GFX/tabBg.gif) no-repeat scroll left bottom;
}

#navMain li a {
  display: block;
  padding: 9px 11px 5px 11px;
  color: #fff;
  background: transparent url(../GFX/tabBgRight.gif) no-repeat scroll right bottom;
  font-size: 110%;
  font-weight: bold;
}

#navMain li a:hover {
  text-decoration: none;
}

#navMain li.current {
  float: left;
  background: transparent url(../GFX/tabBgCurrent.gif) no-repeat scroll left bottom;
}

#navMain li a.current {
  display: block;
  padding: 9px 11px 5px 11px;
  color: #231f20;
  background: transparent url(../GFX/tabBgCurrentRight.gif) no-repeat scroll right bottom;
  font-size: 110%;
  font-weight: bold;
}

#navMain li a.current:hover {
  text-decoration: none;
}

/*TODO: refactor code, get rid of inline-block element */
/*Sub menu style */

ul#navSub {
  background: transparent url(../GFX/menyBgMiddle.gif) no-repeat bottom left;
  width: 699px;
  height: 34px;
  padding-left: 7px;
}

#navSub a {
  font-size: 100%;
  font-weight: bold;
  color: #447096;
  margin-left: 1px;
  display: block;
  padding: 7px 8px 9px;
  border-right: 1px solid #053d6d;
}

#navSub a.last {
  border: 0;
}

#navSub a.current {
  color: #444;
}

#navSub ul {
  padding-left: 10px;
}

#navSub li {
  float: left;
}

#navSub ul a {
  font-weight: normal;
  margin-left: 0;
}

#navSub ul li a {
  padding-left: 10px;
}


#navSubSub {
  margin-left: 3px;
}

#navSubSub li {}

#navSubSub li a {
  display: block;
  padding: 4px 0 4px 10px;
  border-bottom: 1px solid #e5ebf0;
  color: #447096;
}

#navSubSub li a.current, #navSubSub li a.active {
  color: #444;
  font-weight: bold;
}

#navSubSub li ul li a {
  font-size: 90%;
  color: #7c7c7c;
}

#navSubSub li ul li {
  padding-left: 12px;
}


/* Top menu style */
ul#navMainTop {
  margin-right: 7px;
}

#navMainTop li {
  float: right;
  background: transparent url(../GFX/tabRight.gif) no-repeat scroll left top;
  margin: 0 0 -2px 1px;
}

#navMainTop li a {
  display: block;
  padding: 0 4px;
  color: #fff;
  background: transparent url(../GFX/tabRightRight.gif) no-repeat scroll right top;
  font-size: 90%;
  font-weight: bold;
}

#navMainTop li.current {
  background: transparent url(../GFX/tabRightCurrent.gif) no-repeat scroll left top;
}

#navMainTop li a.current {
  color: #447096;
  background: transparent url(../GFX/tabRightRightCurrent.gif) no-repeat scroll right top;
}