/* this is the main UL element*/
.dropdown{
	margin:0;
	padding:0;
	padding-bottom:5px;
	list-style:none;
	background:url('bg-menu.jpg') repeat-x;
}

/* 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 5px;
	padding:8px;
	/*width:120px;*/
	/*background-color:#000;*/
	cursor:pointer;
	/*border-left:1px solid #e0e0e0;*/
	background-image:url('fl2.gif');
	background-position:center left;
	background-repeat:no-repeat;
	padding-left:20px;
}

/* these are anchor in the menu, if you want to style them differently from the rest of you website*/
.dropdown a{
	text-decoration:none;
	color:#133351;
	text-transform:uppercase;
	font-weight:bold;
	font-size:14px;
}

.dropdown a:hover{
	/*text-decoration:underline;*/
	color:#4194c0;
}

/* these are the LIs that only belong to submenu*/
.dropdown ul li{
	border:1px solid #e0e0e0;
	border-top:0;
	margin-left:-1px;
	background-color:#fff;
	width:300px;
	text-align:left;
	background-image:url('fl.gif');
	background-position:center left;
	background-repeat:no-repeat;
	padding-left:20px;
}

/* these are the LIs that contains a submenu*/
.dropdown li.submenu{
	background-image:url('fl2.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('fl2.gif');
	background-position:center right;
	padding:5px;
	width:120px;
}