/* this is the main UL element*/
.langmenu{
	visibility: hidden;
	margin:0;
	padding:0;
	list-style:none;
}

/* these are the inner menus*/
.langmenu ul{
	margin:0;
	padding:0;
	list-style:none;
}

/* these are all the LIs in the menu*/
.langmenu li{
	margin:0;
	padding:5px;
	cursor:pointer;
	display: block;
}

/* these are anchor in the menu, if you want to style them differently from the rest of you website*/
.langmenu a{
	text-decoration:none;
}

.langmenu a:hover{
	text-decoration:underline;
}

/* these are the LIs that only belong to submenu*/
.langmenu ul li{
	border-top:0;
	margin-left:-1px;
	margin: 0 !important;
	padding-top: 2px !important;
}

.langmenu ul li a {
	border: none !important;
	background: none !important;
	color: #0073ab !important;
	padding-right: 5px !important;
	margin: 0 !important;
	display: inline !important;
	clear: both !important;
	width: 200px;
}


/* these are the LIs that contains a submenu */
.langmenu li.submenu{
	background-position:center left;
	background-repeat:no-repeat;
	padding-left:20px;
}