/* The div enclosing the menu */
.MyMenu {
	font-family: sans-serif;
	float: left;
	margin-right: 3em;
	width: 15em;
}

/* Every anchor tags in our menu */
.MyMenu a {
	display: block;
	border-bottom: 2px solid #C5B870;
	border-left: 2px solid #EDE9D3;
	border-right: 2px solid #EDE9D3;
	padding: 0.4em 0.4em 0.4em 1.8em;
	background-repeat: no-repeat;
	background-position: 0.3em 0.2em;
	font-weight: bold;
}

/* The anchor tags of each item that is first in its tree */
.MyMenu a.WebYepMenuFirstItem {
	border-top: 2px solid #EDE9D3;
}

/* Like above, but only for second menu level and below */
.MyMenu li li a.WebYepMenuFirstItem {
	border-top: none;
}

/* All menu item's anchor tags of second menu level */
.MyMenu li li a {
	padding-left: 3em;
	background-position: 1.6em 0.2em;
}

/* All menu item's anchor tags of third menu level */
.MyMenu li li li a {
	padding-left: 4.5em;
}

/* All menu item's anchor tags of fourth menu level and below */
.MyMenu li li li li a {
	padding-left: 6em;
}

/* All anchor tags that are menu tree titles */
.MyMenu a.WebYepMenuTitle {
	background-image: url(triangle.gif);
}

/* All anchor tags that are menu tree titles of currently expanded trees */
.MyMenu a.WebYepMenuTitleExpanded {
	background-image: url(triangle_x.gif);
}

/* The text colors and underlines must be set via the pseudo selectors a:link etc. */
.MyMenu a:link, .MyMenu a:visited, .MyMenu a:active {
	text-decoration: none;
	color: #841010;
	background-color: #E2DCBA;
}

/* The anchor tag of the currently selected menu item */
.MyMenu a.WebYepMenuCurrentItem {
	color:  #FF6600;
}

/* The anchor tag of the currently selected menu item, when hovering */
.MyMenu a:hover.WebYepMenuCurrentItem {
	color:  #FF9900;
}

/* All other anchor tags, when hovering */
.MyMenu a:hover {
	background-color: #E2DCBA;
	color: #FF6600;
}

/* All trees */
.MyMenu ul {
	list-style-type: none;
	margin:  0;
	padding: 0;
}

/* All items */
.MyMenu li {
	margin: 0;
	padding: 0;
	display: inline;
}
