/*this is the css for the vertical version*/
.vertical ul{
	list-style-type: none;
	padding: 0;
	width: 193px;
	margin: 0;
	position: relative;
	z-index:5000;
}
.vertical li a {
	display: block;
	width: 183px;
	text-decoration: none;
	height: 22px;
	padding:10px 0 0 10px;
	background:url(../images/menu.jpg) no-repeat;
	font-size:11px;
	font-weight:700;
	color:#dddddf;
	z-index:5000;
}
.vertical li a:hover{
	background:url(../images/menu.jpg) no-repeat bottom left;
	color:#ff995c;
}
.vertical li a.vert_sp {
background:url(../images/menu.jpg) no-repeat;
}
.vertical li a.vert_sp:hover {
background:url(../images/menu.jpg) no-repeat bottom left;
}

.vertical li a.vert_bp {
background:url(../images/menu_bp.jpg) no-repeat;
}
.vertical li a.vert_bp:hover {
background:url(../images/menu_bp.jpg) no-repeat bottom left;
}

.vertical li{
	position: relative;
	border-bottom: 1px solid transparent;
	margin-bottom: -1px;
}
.vertical li ul {
	position:absolute;
	top: 0;
	left: 193px;
	z-index:20;
}
.vertical li ul {
	border:1px solid #6e7f90;
	background:#dee3eb;
	padding:6px 10px 10px 10px;
}
.vertical li ul li {
	float:left;
	border:none;
}
.vertical li ul li a{
	display: block;
	width:200px;
	background:none;
	font-size:12px;
	font-weight:normal;
	color:#414c62;
	padding:2px 0 2px 7px;;
	margin:0;
}
.vertical li ul li a:hover {
	background:none;
	color:#c60062;
	text-decoration:underline;
}
.vertical.left ul ul ul,.vertical .left ul{
	left: -193px;
}
/*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;
}
