/*=============================================================
 * mucho MENU
 *-------------------------------------------------------------
 * This style sheet is divided into the following 3 sections:
 * 1 Fundamentals
 *		1.1 Reset
 *		1.2 Structure
 * 		1.3 Default styles
 * 2 User Overrides
 *		2.1 Widths, margins, and padding
 *		2.2 Vertical menu
 *		2.3 Horizontal slots
 * 3 Skins
 *=============================================================*/

/* @group Fundamentals */

/* Reset
 *------------------------------------------------------------*/
/* @group Reset */
/*
.muchomenu-menu,
.muchomenu-menu *,
.muchomenu-menu .muchomenu-parent,
.muchomenu-menu .muchomenu-parent-title,
.muchomenu-menu .muchomenu-bin,
.muchomenu-menu .muchomenu-slot,
.muchomenu-menu .muchomenu-slot-title,
.muchomenu-menu .muchomenu-items {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  font-weight: normal;
  vertical-align: baseline;
  background: transparent;
}
*/

ul.muchomenu-menu,
.muchomenu-menu ul.muchomenu-items, .muchomenu-menu li.muchomenu-parent {
  list-style: none;
  background: none;
}
/* @end */

/* Structure
 *------------------------------------------------------------*/
/* @group Structure */
.muchomenu-menu {
  overflow: visible; /* Contain floated elements */
}

.muchomenu-menu .muchomenu-parent {
  display: inline-block;
  position: relative;
  z-index: 1;
}

.muchomenu-menu .muchomenu-parent-title {
  display: inline;
}

.muchomenu-menu .muchomenu-bin {
  position: absolute;
  left: 0; /* Default horizontal orientation */
  top: -9000px; /* default hidden position */
  z-index: 10000;
  overflow: hidden;

}

/* Bin Alignment
 *--------------------------------------------------------*/
.muchomenu-menu .muchomenu-bin-right{
  left:auto;
  right:-500px;
}

/* @group Horizontal Links */
.muchomenu-menu .muchomenu-links-horizontal {
  overflow: hidden;
}

.muchomenu-menu .muchomenu-links-horizontal li,
.muchomenu-menu .muchomenu-links-horizontal li a {
  float: left;
}
/* @end Horizontal Links */

.muchomenu-menu-vertical .muchomenu-parent {
  display: block;
}

/* @end Structure */




/* Default styles
 *--------------------------------------------------------*/
/* @group Default styles */

.muchomenu-menu ul a {
  text-decoration: none;
}

.muchomenu-menu ul a:hover {
  text-decoration: underline;
}
/* @end */
/* @end Fundamentals */


/* User Overrides
 *
 * This part will have to be dynamically generated in the
 * customization admin screen.  The user can specify the
 * proper widths for structural elements according to the
 * ID of the mucho menu.
 *--------------------------------------------------------*/
/* @group Widths, Padding, & Margins */
.muchomenu-parent {
  margin: 0.1em 1em; /* Left margin affects fly-out value */
}

.muchomenu-menu .muchomenu-bin {
  padding: 0.5em;
}

.muchomenu-menu .muchomenu-slot {
  width: 200px; /* move this to skins or php */
  margin-bottom: 0.5em;
}

/* Vertical Orientation
 *--------------------------------------------------------*/
/* @group Vertical Menu */
.muchomenu-menu-vertical {
  width: 8em;
}
.muchomenu-menu-vertical .muchomenu-parent {
  margin-top: 1em;
}
.muchomenu-slots.flyright {
  left: 7em; /* [muchomenu-menu-vertical] (width) - [muchomenu-parent] (margin) */
  top: 0;
}

.muchomenu-slots.flyleft {
  left: -16.2em; /* Calculation of this value did not seem straightforward */
  top: 0;
}
/* @end */


/* Horizontal Orientation
 *--------------------------------------------------------*/
/* @group Horizontal Slots */
/* This value will have to be calculated to account for slot widths + margins */
/* 2009.1009.1437 EFD: this width conflicted with our layout. it made more sense for us to set width on the slots themselves. unsure how the interface should handle this. */
.muchomenu-menu .muchomenu-slots-columnar {
  overflow: hidden; /* contain floated slots */
}
.muchomenu-slots-columnar li.muchomenu-slot {
  float: left;
}
/* @end Horizontal Slots */
/* @end Widths*/

/* muchomenu-menu end */

/* section: muchomenu-skins */



.muchomenu-bin .panel-display {
  padding: 20px;
  background: #eee;
  border: 1px solid #ccc;
  border-radius: 10px;
  width: 450px;
}