
/**
 * @file
 * Styles for menus and navigation markup.
 */

/**
 * Markup generated by theme_menu_tree().
 */
ul.menu {
  border: none;
  list-style: none;
  text-align: left;
}
ul.menu li {
  margin: 0 0 0 0.5em; /* LTR */
}
ul li.expanded {
  list-style-image: url(img/menu-expanded.png);
  list-style-type: circle;
}
ul li.collapsed {
  list-style-image: url(img/menu-collapsed.png); /* LTR */
  list-style-type: disc;
}
ul li.leaf {
  list-style-image: url(img/menu-leaf.png);
  list-style-type: square;
}
li.expanded,
li.collapsed,
li.leaf {
  padding: 0.2em 0.5em 0 0; /* LTR */
  margin: 0;
}
li a.active {
  color: #000;
}
td.menu-disabled {
  background: #ccc;
}

/**
 * Markup generated by theme_links().
 */
ul.inline,
ul.links.inline {
  display: inline;
  margin: 0;
  padding-left: 0;
}
ul.inline li {
  display: inline;
  list-style-type: none;
  padding: 0 0.5em 0 0;
}



/**
 * Markup generated by theme_breadcrumb().
 */
.breadcrumb {
  margin: 30px 0;
  padding-bottom: 0;
  list-style: none;
  font-size: 13px;
  color: #666;
  text-shadow: 0 1px 0 white;
  background: none; border: 1px solid #DDD;
  -webkit-border-radius: 4px;
     -moz-border-radius: 4px;
          border-radius: 4px;
}
.breadcrumb li {
  float: left;
  margin: 0;
  padding: 0 0 0 1em;
  background: none;
}
.breadcrumb li a {
  float: left;
  margin-left: 0px;
  padding: 0.5em 1.75em 0.5em 0;
  color: #999;
  text-decoration: none;
  background: url(img/separator.png) no-repeat 100% 50%;
}
.breadcrumb li a:hover {
  color: #777;
}

