/* this is the main UL element*/
.dropdown{
	visibility:hidden;
	margin:0;
	padding:0;
	list-style:none;
}

/* these are the inner menus*/
.dropdown ul{
	margin:0;
	padding:0; 
	list-style:none;
}

/* these are all the LIs in the menu*/
.dropdown li{
	margin:0;
	width:128px;
	height: 47px;
	background: transparent;
	cursor:pointer;
}

/* these are anchor in the menu, if you want to style them differently from the rest of you website*/
.dropdown a{
	font-family: Tahoma;
	font-size: 12px;
	text-decoration:none;
	text-transform: uppercase;
	color:#ffffff;
	width:100%;
	height: 14px;
	padding: 17px 0 16px;
	text-align: center;
	vertical-align: middle;
	background: url('../_img/menuSpacer.jpg') no-repeat top left;
}

.dropdown a:hover{
	text-decoration:none;
	background: url('../_img/doprdownTopLevelBg.jpg') repeat-x;
}

/* these are the LIs that only belong to submenu*/
.dropdown ul li{
	margin-top: 2px;
	width: 210px;
	border-top:0;
	height: auto;
}
.dropdown ul li a {
	height: auto;
	padding: 4px;
	background: #da251d;
	text-align: left;
	font-size: 10px;
	font-weight: bold;
}
.dropdown ul li a:hover {
	background: #000000;
}
/* these are the LIs that contains a submenu
.dropdown li.submenu{
	background-image:url('expand_down.gif');
	background-position:center left;
	background-repeat:no-repeat;
	padding-left:20px;
	width:105px;
}*/

/* these are the LIs that contains a submenu and which are in a sub-menu themselve
.dropdown ul li.submenu{
	background-image:url('expand_right.gif');
	background-position:center right;
	padding:5px;
	width:120px;
}*/


