#dropdown
{
	/* cancel the default list style */
	list-style: none;
	margin: 0;
	padding: 0;
	width: 180px;
	position: relative;
}

#dropdown:hover
{
	cursor:pointer;
}

#dropdown li
{
	width:190px;
}

#parent 
{
	background: transparent url(Images/parent.gif) no-repeat scroll right 50%;
	font-weight: 700;
	height: 20px;
	line-height: 20px;
	width: 190px;
	border:1px solid;
}

#parent label
{
	padding: 0 0 0 10px;
}

#parent.on
{
	background: url(Images/sprite.gif) no-repeat right 50%;
}

#dropdown ul
{
	/* cancel the default list style */
	margin: 0;
	padding: 0;
	list-style: none;
	display: none; /* make sure it has the highest z-index */
	position: absolute;
	left: 0;
	z-index: 500;
	background: #fff;
	width:190px;
	/*background: url(Images/child.gif) left bottom no-repeat;*/
	border-left:1px solid Black;
	border-right:1px solid Black;
	border-bottom:1px solid Black;
	margin-top:1px;
}

#dropdown ul li
{
	font-size: 11px;
	width:190px
}

.children
{
	width:190px
}

#dropdown ul li span
{
	display: block;
	font-weight: 700;
	padding: 0 0 0 10px;
	height: 20px;
	color: #4B4B4B;
	line-height: 20px;
	width:180px
}

#dropdown ul li span:hover
{
	color: #fff;
	background-color: #F2AF32;
	line-height: 20px;
	cursor:pointer;
}

