#menu { clear : left; padding-left : 200px; padding-top : 20px;}
#menuwrapper { 
   background-color: transparent;
   width: 100%;
	padding : 0 0 0 40px;
	z-index:10;
}

#primary-nav { }
#primary-nav li {
  padding: 5px 10px; 
   text-decoration: none; 
	color : white;
	font-weight : bold;

}
/* Set the width of the menu elements at second level. Leaving first level flexible. */
#primary-nav li li {   width: 150px; }

/* Unless you know what you do, do not touch this */ 
#primary-nav, #primary-nav ul { 
   list-style: none; 
   margin: 0px; 
   padding: 0px; 
 }

#primary-nav ul { 
   position: absolute; 
   top: auto; 
   display: none; 
   }

#primary-nav ul ul { 
   margin-top: -1px;
   margin-left: 0px;/**Changed from -1px to stop the bg of a child ul overwriting the border of the 1st li.  Care is > 0 : the cursor may "fall down the crack"  */
   left: 100%; 
   top: 0px; 
}

#primary-nav li { 
  margin-left: 1px; 
  margin-right : 1px;
  background-color:transparent;
  float: left; 
}

#primary-nav li li { 
   margin-left: 0px;
   margin-top: -1px; 
   float: none; 
   position: relative; 
}



/* Styling the basic apperance of the menu elements */

/* This applies to all links */
#primary-nav a { 
   display: block; 
   margin: 0px; 
   padding: 5px 10px; 
   text-decoration: none; 
	color : white;
	font-weight : bold;
}

#primary-nav a:hover { text-decoration:underline; }

/*Applies to top-level links */
#primary-nav li a { 
   background-color: transparent;
   }

/*Applies to links below top level */
#primary-nav li li a {
	background-color : #36acf6; 
	padding : 0.3em 1em 0.3em 1em;
	margin : 0 2px 0 2px;
	text-decoration : none;
	color : white;
	text-align : left;
	line-height: 110%;
}	

#primary-nav li li a:hover {text-decoration:underline;}

/*Aplies to all li */
#primary-nav li, #primary-nav li.menuparent { }

#primary-nav li li {
	background-color:#36acf6;
	border : 0;
	margin : 0;
	border-bottom: 1px solid white;
}	

/*The bg color is needed for IE7.  Without it moving if there is a margin between <li> then when the 
mouse moves into the space between them it "falls off" the menu*/
#primary-nav li ul {
   background-color:#36acf6;
   border : 1px solid #F6DA39;
   }

/* Styling the basic apperance of the active page elements (shows what page in the menu is being displayed) */

#primary-nav li.menuactive {
/*	 background-color: #FFF; 
	 border-top : 1px solid #cfe2f0;
	 border-left : 1px solid #cfe2f0;
	 border-right : 1px solid #cfe2f0;	 	 */
	 color : black;
	 }
/*Overwrites the border-bottom of div#menu*/
#primary-nav li a.menuactive { 
/*border-bottom: 6px solid #fff; */
}
/*Stop the menuactive stlye changing the appearance of menus items on level 2 & below*/
#primary-nav li li.menuactive {
	 background-color: #36acf6; 
	 border : 0;
	 }

#primary-nav li li a.menuactive {border-bottom:0; } 

#primary-nav li li a.menuactive:hover { }


#primary-nav a.menuparent { 
/*   background-image: url(images/arrow-down.gif); 
   background-position: center right; 
   background-repeat: no-repeat; */
   }

#primary-nav ul a.menuparent { 
/*   background-image: url(images/arrow-right.gif); 
   background-position: center right; 
   background-repeat: no-repeat;*/
   }
	
/*CSS to hide & unhide elements */
#primary-nav ul , 
#primary-nav li:hover ul ul, 
#primary-nav li:hover ul ul ul
{  display: none; }

#primary-nav li:hover ul, 
#primary-nav ul li:hover ul, 
#primary-nav ul ul li:hover ul, 
#primary-nav ul ul ul li:hover ul
{  display: block; }

/*CSS to hide & unhide elements for ie6, which needs js to add a onmouseover / onmouseout function to all li elements in the menu*/
#primary-nav li.iehover ul, 
#primary-nav li.iehover ul ul, 
#primary-nav li.iehover ul ul ul 
{  display: none; }

#primary-nav li.iehover ul, 
#primary-nav ul li.iehover ul, 
#primary-nav ul ul li.iehover ul, 
#primary-nav ul ul ul li.iehover ul
{  display: block; }

/* IE Hacks */
#primary-nav li li { 
   float: left; 
   clear: both; 
}

#primary-nav li li a { height: 1%; }

#primary-nav dfn { display:none; height:0; width : 0;}
div.clearb {clear : both;}