@charset "utf-8";
/* CSS Document */

#contain{
  background-color: #9c8cbd;
  width: 300px;
  height: 200px;
}

#menu {
  padding: 25px 0px 0px 0px;
  float: right;
  width: 280px; /* set width of menu */
  height: 406px; /* set height of menu */
} 

#menu ul { /* remove bullets and list indents */
  list-style: none;
  margin: 0;
  padding: 0;
}

/* style, color and size links and headings to suit */
#menu a, #menu h2, #menu h3 {
  text-align: right;
  font: bold 11px/16px arial, helvetica, sans-serif;
  display: block;
  margin: 0;
  padding: 2px 10px 2px 20px;
}

#menu h2 {
  color: #fff;
  background: #000;
  text-transform: uppercase;
}

#menu a {
  color: #000;
  background-color: #9c8cbd;
  border: 1px solid #9c8cbd;
  text-decoration: none;
}

#menu a.level2 {
  background-color: #6e67aa;
  border: 1px solid #9c8cbd;
	text-align: left;
}

#menu a.level3 {
  background-color: #6e67aa;
  border: 1px solid #9c8cbd;
	text-align: left;
}

#menu a:hover {
  background: #38197A;
  border: 1px solid white;

}

#menu a.level2:hover {
  background: #38197A;
  border: 1px solid black;

}

#menu a.level3:hover {
  background: #38197A;
  border: 1px solid black;

}

#menu li {
/* make the list elements a containing block for the nested lists */
  position: relative;
} 

#menu ul ul ul {
  position: absolute;
  top: 0;
  left: 100%; /* to position them to the right of their containing block */
  width: 100%; /* width is based on the containing block */
}

div#menu ul ul ul,
div#menu ul ul li:hover ul ul
{display: none;}

div#menu ul ul li:hover ul,
div#menu ul ul ul li:hover ul
{display: block;}

<!--[if IE]>
<style type="text/css" media="screen">
body {
  behavior: url(csshover.htc); /* call hover behavior file */
  font-size: 100%; /* enable IE to resize em fonts */
} 
#menu ul li {
  float: left; /* cure IE5.x "whitespace in lists" problem */
  width: 100%;
}
#menu ul li a {
  height: 1%; /* make links honor display: block; properly */
} 

#menu a, #menu h2 {
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 13px;
  color: white;
/* if required use em's for IE as it won't resize pixels */
} 
</style>
<![endif]-->


