/* this is the main UL element*/
.dropdown
{
	display:none;
	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:120px;*/
	cursor:pointer;
	height:35px;
	padding-top:25px;
	padding-bottom:0px;
	margin-top:2px;
}

/* these are anchor in the menu, if you want to style them differently from the rest of you website*/
.dropdown a
{
	text-decoration:none;
	width:100%;
	color:white;
}

.dropdown a:hover
{
	text-decoration:underline;
}

.dropdown ul
{
	width:160px;
	background-color:#002f6b;
}

/* these are the LIs that only belong to submenu*/
.dropdown ul li
{
	border-top:0;
	margin-left:-1px;
	padding:2px;
	height:auto;
	padding-top:0px;
}

/* these are the LIs that contains a submenu*/
.dropdown li.submenu-down
{
	/*padding-left:20px;*/
	/*width:105px;*/

}

/* these are the LIs that contains a submenu and which are in a sub-menu themselve*/
.dropdown li.submenu-down
{
	padding-right:20px;
	width:160px;

	/*background:url('../images/submenu_puce.png') right center no-repeat;*/
}

.dropdown li.submenu-down ul li.submenu-rtl
{
	padding-right:20px;
	padding-top:0;
	width:auto;
	height:auto;
	background:url('../images/submenu.png') right center no-repeat;
}

.dropdown li.subMenuEntete
{
	/*background:url('../images/menu_haut.png') right center no-repeat;*/
	height:24px;
	width:175px;
}

.dropdown li.subMenuPied
{
	/*background:url('../images/menu_bas.png') right center no-repeat;*/
	height:24px;
	width:175px;
}