/* The div enclosing the menu */
.MyMenu {
   font-family: Verdana, Geneva, sans-serif;
   float: left;
   font-weight: bold;
   margin-right: 20px;
}

/* Normal items */
.MyMenu li.WebYepMenuItem {
   font-weight: normal;
}

/* The tree titles */
.MyMenu li.WebYepMenuTitle {
   margin-bottom: 5px;
}

/* All items */
.MyMenu li {
   list-style-position: inside;
   list-style-type: none;
   font-size: 12px;
   font-weight: bold;
   margin: 0 0 5px 0;
   padding: 0;
}

/* All trees */
.MyMenu ul {
   padding: 0;
   margin: 0 0 5px 0;
   font-size: 10px;
}

/* Second level trees */
.MyMenu ul ul {
   padding: 0 0 0 10px;
   font-size: 10px;
}

/* Trees of third level and below */
.MyMenu ul ul ul {
   font-size: 10px;
}

/* The first item in each submenu */
.MyMenu li li.WebYepMenuFirstItem {
   margin-top: 0;
   padding-top: 8px;
}

/* The actual links */
.MyMenu a:link, .MyMenu a:visited, .MyMenu a:active {
	text-decoration: none;
	color: #000066;
}

/* The actual links when hovering */
.MyMenu a:hover {
	color: #000066;
}

/* The actual link of the currently selected item */
.MyMenu .WebYepMenuCurrentItem a:link, .MyMenu .WebYepMenuCurrentItem a:visited, .MyMenu .WebYepMenuCurrentItem a:active {
	text-decoration: none;
	color: #000066;
}

/* The actual link of the currently selected item when hovering */
.MyMenu .WebYepMenuCurrentItem a:hover {
	color: #000066;
   font-weight: underline;
}

