.menu{
	margin:0px;
	padding:0px;
	list-style:none;
	font-size: 110%;
	background: #ffffff;
}


.menu li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
	display:block;
	width:100%;
	margin-bottom:1px; 
}
.menu li a{
	display:block;
	width:100%;
	font-weight: bold;
	border-bottom: 3px solid #f5f5f5;
}

.menu li.submenu{ /* Style for LI that contains sub lists (other ULs). */
    cursor: pointer !important;
	display:block;
	width:100%;
}
.menu li a span{
	display:block;
	padding:4px 10px;
	background: #ffffff;
}

.menu li.submenu ul{ /*Style for ULs that are children of LIs (submenu) */
	display: none; /*Hide them by default. Don't delete. */
}

.menu .submenu ul li { /*Style for LIs of ULs that are children of LIs (submenu) */
	cursor: pointer;
}

.menu .submenu ul li a { 
	cursor: pointer;
	font-weight: normal;
	color: #666;
	border-top: 1px solid #fff;
	margin-left: 10px;
}

.menu .submenu ul li a:hover { 
	color: #191919;
	text-decoration: underline;
}

.menu .submenu ul li a.selected { 
	color: #191919;
	font-weight: bold;
}

ul li ul{
	padding:0px;
	margin:0px;
	background: #ffffff;
}

.menu li a:hover  { 
    color: #191919; 
    text-decoration: underline; 
}

.menu li a.selected {
    color: #191919;
}




