/*	--- menu --- */

.menu {
	padding: 0;
	margin-left: 5px;
	width: 250px;
	list-style: none;
	margin-top: 13px;
}
.menu li {
	margin: 0px;
	padding: 0px;
	zoom: 1;
	margin-top: 0px;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #bbbdbd;
}
.menu li.first {
	border-top: 0px solid;
}	
.menu li.last {
	border-bottom: 0px solid;
}	
.menu li li{
	padding: 5px 0px 5px 7px;
	margin: 0px;
	background: #fff url(../images/submenu_back.gif) repeat-x 0px bottom;
	border: 0px solid;
	border-left: 3px solid #7ec1e5;
	margin-bottom: 0px;
}
.menu li a{
	font-weight: bold;
	text-decoration: none;
	display: block;
	padding-left: 19px;
	padding-top: 2px;
	padding-bottom: 4px;
	background-image: url(img/pearson12.gif);
	background-repeat: no-repeat;
	color: #2C5783;
	background-position: 0px 50%;
}



.menu 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 */
	list-style: none;
	z-index: 10; /* Safari fix */
}

.menu li li a{
	color: #7e7e7e;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-weight: normal;
	text-decoration: none;
	display: block;

	margin: 0px;
	padding-left: 19px;
	padding-top: 0px;
	padding-bottom: 0px;
	background: url(../images/arrow_blue.gif) no-repeat 0px 2px;
}
head:first-child+body div  .menu li li a:hover {
	color: #63acd3;
	background-position: 0px -498px;
}




.menu li ul {  /* copy of above declaration without the > selector */
	display: none;  
	position: absolute; 
	border: 4px solid #8eabbb;
	list-style: none;
	padding: 0;
	margin-top: -20px;
	margin-left: 170px;
	width: 178px;
	z-index: 10; /* Safari fix */
}
.menu li ul ul {
	margin-left: 155px;
}
.menu 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 */
}
.menu li 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 */
}

head:first-child+body div  .menu li a:hover, .menu li a.selected {
	background-position: 0px -1000px;
	text-decoration: none;
}

* html .menu li a:hover, .menu li a.selected {
/*	color:#f58220;*/
	text-decoration: none;
}

.menu li li a:hover{
	color: #63acd3;
}
