ul.makeMenu {
  width: 180px;                 /* sets the size of the menu blocks */
  border: 0px solid #000;      /* puts a black border around the menu blocks */
  background-color: #EBF1FC;      /* makes the menu blocks mint green - a bg-color MUST be included for IE to work properly! */
  padding-left: 0px;           /* stops the usual indent from ul */
  cursor: default;             /* gives an arrow cursor */
  margin-left: 0px;            /* Opera 7 final's margin and margin-box model cause problems */
  text-decoration:none;
  color:#2d4894;
  z-index:999;
}
ul.makeMenu ul{
  width: 120px;                  /*sets the size of the menu blocks */
  border: 0px solid #000;      /* puts a black border around the menu blocks */
  background-color: #E6E6E6;      /* makes the menu blocks mint green - a bg-color MUST be included for IE to work properly! */
  	font:12px Arial, Verdana, san-serif;
	color: #940be1;
	list-style-type: none;
	text-decoration:none;
	z-index:9999;
}
ul.makeMenu ul li{
color:#000;
}
ul.makeMenu li {
  border: 1px solid #d3d9f5;
  border-style: none none solid;
  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: #fff;*/                 /* sets the default font colour to white */
}
ul.makeMenu 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 lower than the parent menu item */
  left: 180px;  
                 
}
ul.makeMenu li:hover, ul.makeMenu li.CSStoHighlight {
  background-color: #E6E6E6; 
  /*margin-left:-50px;*/     
}
ul.makeMenu 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 */
}
ul.makeMenu 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 */
}
/* and some link styles */
/*ul.makeMenu li a {color: #fff; display: block; width: 100%; text-decoration: underline; }*/
ul.makeMenu li a:hover, ul.makeMenu li a.CSStoHighLink { /*color: #000;*/ }
ul.makeMenu li:hover > a { /*color: #000; */} /* supports links in branch headings - should not be display: block; */
#space{
padding:0 5px 5px 10px; 
margin:0px;
}
#space1{
padding:0 5px 5px 10px; 
margin:0px;
width:180px;
}
#space2{
padding:0 5px 5px 10px; 
margin:0px;
width:230px;
}
.ratingText{
color:#2D4894;
font-weight:600;
font:12px Arial, Verdana, san-serif;
padding-right:1px;
}