.rootMenu{
	text-align:center;
	width:100%;
	margin-left: 0 auto;
	margin-right: 0 auto;
	margin-bottom:0px;
	margin-top:0px;
}
.rootMenu li
{
		list-style-type:none;
		margin-left:0px;
		padding-left:0px;
		display:block;				
		float:left;		
		display:inline;
		margin:0;
		padding:0;
		padding-right:5px;
		text-align: left;
}

ul.makeHorizontalMenu {
	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 */	  
	list-style-type:none  !important;	  	
}

ul.makeHorizontalMenu li {
	list-style-type: none  !important;      /* removes the bullet points */
	margin: 0px;                 /* Opera 7 puts large spacings between li elements */
	position: relative;          
  	font-family:Verdana,Arial,Helvetica,sans-serif;
	font-size:12px;
	float:left;
	clear:both;
	background:none;
	padding-bottom:4px;
}
ul.makeHorizontalMenu li > ul > li {
	list-style-type: none !important;
	float:left;	
	width:200px !important;
	margin-left:5px;	
	text-align:left;	
}


ul.makeHorizontalMenu li > ul > li:hover, ul.makeHorizontalMenu li > ul > li.CSStoHighlight {
	/*background-color:#656d95;*/
	width:200px;	   
	list-style-type: none !important;
}

ul.makeHorizontalMenu 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: 20px;                    /* position slightly lower than the parent menu item */
	left: -8px;                 
	border: 1px solid #70879f;
	background-color:#70879f;
	width:200px !important	;	
	list-style-type: none !important  ;
}

ul.makeHorizontalMenu li:hover, ul.makeHorizontalMenu li.CSStoHighlight {
	/*background-color:#656d95;		*/
	list-style-type:none;   !important	
	margin-left:0px;  
	padding-left:0px;
}

ul.makeHorizontalMenu 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.makeHorizontalMenu 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 */
  list-style-type:none; !important
  width:200px;
  padding-left:0px;  
  margin-left:0px;
}
/* and some link styles */
ul.makeHorizontalMenu li a { margin-left:0px; color:#fff; width:100%; text-decoration: none;  overflow:hidden; }
ul.makeHorizontalMenu li > ul > li a { margin:0px; padding-left:3px; width:100%; color:#fff;  text-decoration: none;  overflow:hidden; font-size:12px;}
ul.makeHorizontalMenu li a:hover, ul.makeHorizontalMenu li a.CSStoHighLink {  width:100%; margin-left:0px; color:#666666; }
ul.makeHorizontalMenu li:hover > a {  width:100%; margin-left:0px;  color:#666666; } /* supports links in branch headings - should not be display: block; */


/* VERTICAL MENU CSS */
ul.makeMenu  {
  width: 150px;                 /* sets the size of the menu blocks */  
  background-color: #ffffff;      /* 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 */
  color:#000;
  margin-top:0px;
  clear:both;

}

ul.makeMenu ul {
  width: 170px;                 /* sets the size of the menu blocks */  
  background-color: #ffffff;      /* 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 */
  color:#000;
}

ul.makeMenu 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 */
	font-family:Verdana,Arial,Helvetica,sans-serif;
	font-size:12px;
	color:#ffffff;
	/*height:20px;*/
	padding-top:2px;
	padding-bottom:2px;
	padding-left:10px;
}
ul.makeMenu li > ul > li {
	font-size:11px; !important
}


ul.makeMenu li > ul {          
  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;
  left: 150px;                  /* 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 */
	background-color:#70879f;
	color:#ffffff;	
}

ul.makeMenu li > ul > li > a{
	font-size:12px;
	color:#ffffff;
}

ul.makeMenu li:hover,  ul.makeMenu li.CSStoHighlight {
	background-color:#70879f;

}

ul.makeMenu li:hover a,  ul.makeMenu li.CSStoHighlight a{
	color:#ffffff;	
}

	
 
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 { width: 100%; text-decoration: none;  overflow:hidden; }
ul.makeMenu li > ul > li > a:hover, ul.makeMenu li > ul > li >a.CSStoHighLink { width: 100%; text-decoration:none; color:#666666;  }
ul.makeMenu li > ul > li:hover > a { width: 100%; text-decoration:none; color:#666666;  } /* supports links in branch headings - should not be display: block; */

ul.makeMenu li img { display:none; float:right; padding-top:2px; padding-right:2px;}
ul.makeMenu li img:hover, ul.makeMenu li img.CSStoHighLink {  display:block; float:right;  padding-top:2px;  padding-right:2px;}
ul.makeMenu li:hover > img {  display:block; float:right;padding-top:2px;   padding-right:2px;} /* supports links in branch headings - should not be display: block; */

