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

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

/* these are all the LIs in the menu*/
.dropdown li{
	margin:10;
	width:65px;
	cursor:pointer;
	border-left:1px solid white;
}

/* 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:white;
	width:100%;
}

.dropdown a:hover{
	background-image:url(http://placeboworld.cz/images/anim.gif);
	color:red;
}

/* these are the LIs that only belong to submenu*/
.dropdown ul li{
	border-top:0;
}

/* these are the LIs that contains a submenu*/
.dropdown li.submenu-down{
	background:#000;
	width:65px;
}

/* these are the LIs that contains a submenu and which are in a sub-menu themselve*/
.dropdown li.submenu-left{
	background:#000;
	width:65px;
}

#menuM {
  width: 100%;
	height: 50px;
	/*background-color:black;*/
	background-image:url(menu.jpg);
  /*background-color: #365f93;*/
  /*padding-top:20px;*/
  font-size:14px;
  font-weight:bold;

}