		html { overflow-x:hidden; }
		/*this is the css for the vertical version*/
		.vertical ul{
			list-style-type: none;
			padding: 0;
			margin: 0;
			position: absolute;
			margin:130px 0 0 0;
			font-weight:bold;
		}
		.vertical ul li ul li ul, .vertical ul li ul li ul li, .vertical ul li ul li ul a {
			display:none;
		}
		.vertical li a{
			display: block;
			width: 140px;
			text-decoration: none;
			height: 25px;
			background:url(../images/menu_link.jpg) no-repeat;
			color:#fff;
			padding:5px 5px 0 45px;
		}
		.vertical li a:hover {
			background:url(../images/menu_hover.jpg) no-repeat;
		}
		.vertical li{
			position: relative;
			border-bottom: 1px solid transparent;
			margin-bottom: -1px;
		} 
		.vertical li ul{
			position: absolute;
			top: 0;
			left: 197px;
			margin:0;
		}
		
		.vertical li ul li {
		background:url(../images/ul_li_drop.gif) no-repeat 10px 10px #eb1c24;
		}
		.vertical li ul li a {
			padding:5px 10px 5px 20px;
			width:140px;
			height:auto;
			background:none;
		}
		.vertical li ul li a:hover {
			background:#eb1c24;
			text-decoration:underline;
			background:none;
		}
		.vertical.left ul ul ul,.vertical .left ul{
			left: -197px;
		}
		/*here we use a little CSS to make a basic/backup dropdown menu in modern browsers *cough* not IE6 or less *cough* if javascript is disabled.Flickering never happens in these browsers*/
		.mlmenu li ul{
			display: none;
		}
		.mlmenu li:hover>ul{
			display: block;
		}
		/*This section makes the menu not work in non-javascript enabled browsers by not showing the menu by default-This can be worked around by making top level links point to a sitemap*/
		.accessible li ul{
			display: block;
		}
		/*Code to show an element has a child*/
		.mlmenu.plus li a:first-child:not(:last-child):after{
			content: '+';
		}
		.plus a span{
			padding-left: .5em;
		}
		.noshow{
			visibility: hidden;
		}