@charset "utf-8";
/* CSS Document */

/* - - - ADxMenu: BASIC styles - - - */

/* remove all list stylings */
.menu, .menu ul {
  margin: 0;
  padding: 0;
  border: 0;
  list-style-type: none;
  display: block;
  z-index: 20;
}

/* move all list items into one row, by floating them */
.menu li {
  padding: 0;
  margin-right:0px;
  border: 0;
  display: block;
  float: left;
  font-size:14px;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 24px;
}



/* define new starting point for the nested UL, thus making positioning it a piece of cake */
.menu li:hover {
  position: relative;
}

/* force the submenu items into separate rows, while still keeping float:left (which resolves IE6 white-gap problem) */
.menu li li {
  width: 100%;
  margin-right: 15px;
  margin-left: 0px;
}

/* fix the position for 2nd level submenus.
  first make sure no horizontal scrollbars are visible on initial page load by sliding them all into top-left corner  */
.menu li li div {
  top: 0;
  left: 0;
}

/* ...and then place the submenu where it should be when shown */
.menu li li:hover div {
  left: 100%;
}

/* initialy hide all sub menus */
.menu div {
  display: none;
  position: absolute;
  z-index: 100;
}

/* display them on hover */
.menu li:hover>div {
  display: block;
}

/* -- float.clear -- force containment of floated LIs inside of UL */
.menu:after, .menu ul:after {
  content: ".";
  height: 0;
  display: block;
  visibility: hidden;
  overflow: hidden;
  clear: both;
}
/* IE7 float clear: */
.menu, .menu ul {
  min-height: 0;
}
/* -- float.clear.END --  */

/* sticky submenu: it should not disappear when your mouse moves a bit outside the submenu
  YOU SHOULD NOT STYLE the background of the ".menu div" or this feature may not work properly!
  if you do it, make sure you 110% know what you do */
  
.menu div {
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: -37px;
  padding-top: 10px;
  padding-right: 30px;
  padding-bottom: 30px;
  padding-left: 30px;
  /*background: #f00;*/    /* uncomment this if you want to see the "safe" area. you can also use to adjust the safe area to your requirement */
}


/* - - - ADxMenu: DESIGN styles - - - */

.menu {
  color: #fff;
}

.menu ul {
  display:block;
  width: 125px;
  background-image: url(../images/fade.png);
  border:1px solid #ccc;
  z-index: 25;
}

.menu li li:hover>div {  /* inset 2nd+ submenus, to show off overlapping */
}
.menu ul a:hover {
}

.menu ul ul {
}

.menu li:hover>a {
  color: #B2843D;
}

.hover2 li:hover>a {
  color: #B2843D;
}

.menu a {
  float:none;
  display:block;
  color:#150867;
  text-decoration:none;
  font-weight: bold;
  background-repeat: no-repeat;
  background-position: right 0px;
  text-align: center;
  height: 15px;
  font-size: 14px;
}

.menu ul a {
  float:none;
  display:block;
  color:#150867;
  text-decoration:none;
  font-weight: bold;
  background-repeat: no-repeat;
  background-position: right 0px;
  text-align: left;
  font-size: 12px;
  padding: 7px;
}

.menu a:hover {
  color: #B2843D;
  text-decoration: none;
  font-weight:bold;
}

.active a {
  color: #B2843D;
  font-weight: bold;
  text-decoration: none;
}

/* Fix for IE5/Mac \*//*/
.menu a {
  float: left;
}
.menu {
  display: inline-block;
}
/* End Fix */

/*]]>*/

