
/* this is the main UL element*/
.dropdown{
	display:none;
  position:relative;
  clear:left;
  float:left;
  left:50%;
	margin:0;
	padding:0;
}

/* these are the inner menus*/
.dropdown ul{
	margin:0;
	padding:0;
	list-style:none;
  border-bottom: 1px solid white;
  width: 140px;
  margin-top: 2px;
  background: #963F21;
}

.dropdown ul ul{
  margin-top: -1px;
}

ul#dropdown-demo li {
  right: 50%;
  position: relative;
  border-right: 1px solid white;
}

ul#dropdown-demo li li{
  right: 0; /* 50% dla wysrodkowania tylko glownej listy */
}

/* these are all the LIs in the menu*/
.dropdown li{
	margin:0;
  font-weight: bold;
  border-left: 0;
  border-right: 0;
  text-align: left;
}

/* 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;
  background: #963F21;
  font-size: 11px;
  margin: 0;
  padding: 2px 1.5em;
}

.dropdown a.pierwszy {
  border-left: 1px solid white;
}

.dropdown ul a {
  padding: 0.5em;
  margin: 0;
  /*width: 100%;  dla IE6,7 zeby tlo bylo na caly element li */
}

.dropdown a:hover {
  background: maroon;
  text-decoration: none;
}

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

/* these are the LIs that contains a submenu*/
.dropdown li.submenu-down{

}

/* these are the LIs that contains a submenu and which are in a sub-menu themselve*/
.dropdown li.submenu-left{

}
