/**
 * @file
 * Menu and navigational styles.
 */
/**
 * @file
 * Styles for a hierarchical menu as generated by theme_menu_tree().
 */
/*  --------------------------------------------------
  :: TYPE
  -------------------------------------------------- */
/*  --------------------------------------------------
  :: TYPE
  -------------------------------------------------- */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.menu {
  border: none;
  list-style: none;
  text-align: left;
  /* LTR */
  /* Menu Item Hierarchy Modifiers */ }
  .menu .expanded {
    list-style-image: url("../../../images/misc/menu-expanded.png?1379458577");
    list-style-type: circle; }
  .menu .collapsed {
    list-style-image: url("../../../images/misc/menu-collapsed.png?1379458577");
    /* LTR */
    list-style-type: disc; }
  .menu .leaf {
    list-style-image: url("../../../images/misc/menu-leaf.png?1379458577");
    list-style-type: square; }

/* Menu State Modifiers */
.active {
  color: #000; }

.menu-disabled {
  background: #ccc; }

/**
 * @file
 * Inline links as generated by theme_links().
 */
.links--inline {
  *zoom: 1;
  list-style-type: none;
  margin: 0;
  padding: 0; }
  .links--inline::after {
    content: "";
    display: table;
    clear: both; }
  .links--inline li {
    float: left;
    /* LTR */
    margin-right: 0.5em;
    /* LTR */ }
    .links--inline li > a {
      display: block; }

/**
 * @file
 * Theme styles for markup generated by theme_menu_local_tasks().
 */
/* Tabs */
.tabs a {
  background-color: #e6e6e6;
  text-decoration: none;
  font-size: 0.6em;
  line-height: 0.8;
  margin-right: 0.1em;
  text-transform: uppercase; }
  .tabs a.active {
    background-color: #BBB; }
  .tabs a:hover, .tabs a:focus {
    background-color: #bbb; }

/* Primary Tabs */
.tabs--primary {
  font-size: 1.5rem;
  transition: background-color 500ms ease-in-out;
  margin-bottom: 1em;
  border-bottom: 1px solid #bbb; }
  .tabs--primary a {
    padding: 0.5em 0.3em 0.15em 0.3em; }

/* Secondary Tabs */
.tabs--secondary a {
  padding: 0.1em 0.2em;
  margin: 0.4em 0; }

/*# sourceMappingURL=system.menus.theme.css.map */