/*
## 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 {
 position: relative;
 top: 25px;
}

#navMain {
  xheight: 45px;
}

#navMain li {
  float: left;
}

#navMain li a {
  display: block;
  font-size: 1.17em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  margin:25px 0 3px;
  padding:0 20px;
  background:url(./navmainBorder.jpg) no-repeat scroll 0 -5px transparent;
  height: 30px;
}

#navMain li.last a {border:0;}

#navMain li:hover,
#navMain li.current {
 background: url('./point.png') 50% 5px no-repeat;
}

#navMain li a:hover,
#navMain li a.current {
  color: #be8e8c;
}

/*TODO: refactor code, get rid of inline-block element */
/*Sub menu style */

#navSub {
  margin-top: 20px;
  margin-left: 0px;
}

#navSub a {
  padding-left: 25px;
  font-size: 1.17em;
  margin: 7px 0px;
  display: block;
  display: inline-block;
}

#navSub a:hover {
  xcolor: #8a0c0c;
  xtext-decoration: none;
}

#navSub a.current {
  color: #8a0c0c;
}

#navSub a.active,
#navSub a:hover {
  background: transparent url('./menu_active.gif?size=15x15') no-repeat 5px 1px;
}

#navSub ul {
  padding-left: 0px;
}

#navSub li {
  background: url('./submenu_bottom.gif') bottom left no-repeat;
}

#navSub ul li {
  background: none;
  margin-left: 15px;
}

#navSub ul a {
  font-weight: normal;
  margin-left: 0;
}

#navSub ul li a {
  padding-left: 25px;
  font-size: 1.0em;
}
