.menu{
	margin:0px;
	padding:0px;
	list-style:none;
	background: #fff;
	font-size: 90%;
}

.menu li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
	background: #fff url(../images/sub.gif) no-repeat 5px center;
	list-style-type: none;
	display:block;
	width:100%;
	color:#555;
}

.menu .select{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
	background: #fff url(../images/sub.gif) no-repeat 5px center;
	list-style-type: none;
	display:block;
	width:100%;
	color:#555;
}

.menu li a{
	display:block;
	width:100%;
	color:#555;
}
.menu li.submenu{ /* Style for LI that contains sub lists (other ULs). */
	background: #f2f2f2 url(../images/plus.gif) no-repeat 5px center;
/*lks	cursor: hand !important; */
	cursor: pointer !important;
	display:block;
	width:100%;
	color:#555;
}
.menu li a span{
	display:block;
	padding:5px 20px;
	color:#555;
}

.menu li.submenu ul{ /*Style for ULs that are children of LIs (submenu) */
	display: none; /*Hide them by default. Don't delete. */
	width: 180px;
	margin-left: -15px;
	padding-left: 20px;
	text-decoration: none;
}

.menu .submenu ul li{ /*Style for LIs of ULs that are children of LIs (submenu) */
	cursor: default;
}

ul li ul{
	padding:0px 0px 0px 10px;
	margin:0px 0px 0px 10px;
}
