/* this is the main UL element*/
.dropdown{
	visibility:hidden;
	margin:0;
	padding:0;
	list-style:none;
/*	border-bottom:1px solid #444; */
	direction: rtl;
}

/* these are the inner menus*/
.dropdown ul{
	margin:0;
	padding:0;
	border-top:1px solid #444;
	list-style:none;
}

/* these are all the LIs in the menu*/
.dropdown li{
	margin:0;
	padding-right:5px; 
	padding-left:5px;
	width:72px;
	background-color:#FFF;
	cursor:pointer;
	background-color:#fce6c9;
	margin-right:3px;

}

/* 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:#006666;
/*	width:100%; */
	font-size:12px;
	font-weight:bold; 
}

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

/* these are the LIs that only belong to submenu*/
.dropdown ul li{
	border:1px solid #444;
	border-top:0;
	margin-right:-1px;
	background-color:#fce6c9;
	padding:5px;
	width:145px;
	list-style-image:none;

}

/* these are the LIs that contains a submenu*/
.dropdown li.submenu{
	background-image:url('expand_down.gif');
	background-position:center right;
	background-repeat:no-repeat;
	padding-right:20px;
	width:65px;
}

/* 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 left;
	padding:5px;
	width:240px;
	font-size:12px;
}

a.main_page{ font-size:14px;}