/*  */

/* All ul tags */
ul.DMMenu, ul.DMMenu ul {
                /* sets the size of the menu blocks */
  border: none;     /* puts a black border around the menu blocks */
  cursor: default;             /* gives an arrow cursor */
  margin-left: 0px;            /* Opera 7 final's margin and margin-box model cause problems */
width:108px;
 background:#202923 url('../navImages/NavigationBG.jpg') repeat-y;
 padding:0;
 margin:0;
 padding-right:3px;
 z-index:10;
 
}

/* uls not at top level */
ul.DMMenu ul {
	border:1px solid black;
	border-bottom:none;
	padding:0px;
}

/* All li tags (at all levels) */
ul.DMMenu li {
  list-style-type: none;       /* removes the bullet points */
  margin: 0px;                 /* Opera 7 puts large spacings between li elements */
  position: relative;          /* makes the menu blocks be positioned relative to their parent menu item
                                  the lack of offset makes these appear normal, but it will make a difference
                                  to the absolutely positioned child blocks */
  color: #FFFFFF;                 /* sets the default font colour to white */
  padding:3px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  padding-top:6px;
  padding-bottom:6px;
  border:none;
}

/* li tags below the top level */
ul.DMMenu li li {
	padding:3px;
	margin:0px;
	font-size:13px;
	border:none;
	border-bottom:1px solid black;
}

/* not ie code...  */
ul.DMMenu li > ul {          /* using the > selector prevents many lesser browsers (and IE - see below) hiding child ULs */
  display: none;               /* hides child menu blocks - one of the most important declarations */
  position: absolute;          /* make child blocks hover without leaving space for them */
  top: 0px;                    /* position slightly above than the parent menu item */
  left:108px;                  /* this must not be more than the width of the parent block, or the mouse will
                                  have to move off the element to move between blocks, and the menu will close */

}

/* hover state on li tags (at all levels) - setting a class for ie (which won't do a li:hover */
ul.DMMenu li:hover, ul.DMMenu li.CSStoHighlight {
  background: #A13E35;      /* active menu item (hover-state) background color */
  color: #FFFFFF;                 /* makes the active menu item text black */ 
  background:url('../navImages/NavItemBG.gif') repeat-y;
  border-top:1px solid white;
  border-bottom:1px solid white;
  padding-top:5px;
  padding-bottom:5px;
}

/* hover state on li tags (below the top level) */
ul.DMMenu li li:hover, ul.DMMenu li li.CSStoHighlight {
	padding:3px;
	border:none;
	border-bottom:1px solid black;
}

/* to prevent the hover state on certain li tags*/
ul.DMMenu li.noHover {background-color:transparent;}


/* used by ie javascript to display submenus*/
ul.DMMenu ul.CSStoShow {     /* must not be combined with the next rule or IE gets confused */
  display: block;              /* specially to go with the className changes in the behaviour file */
}

/* non-ie, displays submenus */
ul.DMMenu li:hover > ul {    /* one of the most important declarations - the browser must detect hovering over arbitrary elements
                                  the > targets only the child ul, not any child uls of that child ul */
  display: block;              /* makes the child block visible - one of the most important declarations */
}

/* anchor-tag styles */
ul.DMMenu li a { color: #FFFFFF; display: block; width: 100%; text-decoration: none; font-size:14px; font-weight:normal;}
ul.DMMenu li li a { color: #FFFFFF; display: block; width: 100%; text-decoration: none; font-size:12px; font-weight:normal;}
ul.DMMenu li a:hover, ul.DMMenu li a.CSStoHighLink { color: #FFFFFF; }
ul.DMMenu li:hover > a { color: #FFFFFF; } /* supports links in branch headings - must not be display: block; */
