
/* CMS Topmenu */

.pagemenu ul{
  list-style-type:none;
  margin-left: 1px;
  margin-right: -1px;
  height: 30px;
  background: url(/images/add_block.jpg) no-repeat bottom left;
  border-bottom: 3px solid #79a0c8;
  font-family:Verdana;
}
/* make the top level links horizontal and position relative so that we can position the sub level */
.pagemenu li{
  float:right;
  position:relative;
  z-index:100;
}

/* use the table to position the dropdown list */
.pagemenu table{
  position:absolute;
  border-collapse:collapse;
  z-index:80;
  left:-1px;
  top:25px;
}

/* style all the links */
.pagemenu a, .menu a:visited {
  display:block;
  font-size:12px;
  width:149px;
  padding:7px 0;
  color:#fff;
  background-color:#79a0c8;
  text-decoration:none;
  margin-right:1px;
  text-align:center;
}
/* style the links hover */
.pagemenu a:hover{
  color:#444;
  background:#79a0c8;
}

/* hide the sub level links */
.pagemenu ul ul {
  visibility:hidden;
  position:absolute;
  width:451px;
  padding-top: 1px;
}

* html .pagemenu ul ul {  /* IE behave */
  position:absolute;
  top: 3px;
}

.pagemenu ul ul a:hover {
  background-color: #fff;
  color: #79a0c8;
}

.pagemenu ul ul a {
  position: relative;
  top: 0;
  font-weight: bold;
  padding-left: 10px;
  line-height: 10px;
  left: -301px;
  width: 437px;
  text-align: left;
  color: #000;
  background-color: #fff;
  border-left: 2px solid #79a0c8;
  border-right: 2px solid #79a0c8;
  margin: 0;
}

* html .pagemenu ul ul {   /* compensate padding in ie6 */
  left: 0px;
}


/* make the sub level visible on hover list or link */
.pagemenu ul li:hover ul,
.pagemenu ul a:hover ul{
  visibility:visible;
  background: none; /* ie bug carrying on bg image to ul ul */
  border: none;
}

.last {
  border-bottom: 2px solid #79a0c8;
}