/**
 * @file
 * Stylesheet for the contextual links.
 */
/**
 * Contextual links regions.
 */
.contextual-links-region {
  outline: none;
  position: relative;
}
.contextual-links-region-active {
  outline: #999 dashed 1px;
}
.contextual-links-region-active.panelizer-view-mode {
  box-shadow: 0 0 1em 0.5em #999;
  outline: #666 dashed 2px;
  position: relative;
}
.contextual-links-region-active.panelizer-view-mode:before {
  background-color: #DFDFDF;
  content: "edit page content/widgets";
  display: block;
  line-height: 2em;
  min-height: 2em;
  position: absolute;
  text-align: center;
  top: -2em;
  width: 100%;
}
/**
 * Contextual links.
 */
div.contextual-links-wrapper {
  display: none;
  font-size: 90%;
  position: absolute;
  right: 0.25em;
  /* LTR */
  top: 0.25em;
  z-index: 10;
}
.user-navigation > div.contextual-links-wrapper {
  right: -3em;
  padding-left: 2em;
}
.main-navigation > div.contextual-links-wrapper {
  right: 0;
  padding-left: 1em;
  top: 1em;
}
.panelizer-view-mode.contextual-links-region {
  padding-top: 2em;
}
.panelizer-view-mode.contextual-links-region > .contextual-links-wrapper > a.contextual-links-trigger {
  background-position: 2px -36px;
}
.panelizer-view-mode.contextual-links-region > .contextual-links-wrapper > a.contextual-links-trigger:hover {
  background-position: 2px -54px;
}
html.js div.contextual-links-wrapper {
  display: block;
}
a.contextual-links-trigger {
  background: #ffffff url(/sites/all/themes/eiti/images/gear-select.png) no-repeat 2px 0;
  border-radius: 4px;
  border: 1px solid transparent;
  display: none;
  height: 18px;
  margin: 0;
  outline: none;
  overflow: hidden;
  padding: 0 2px;
  text-indent: 34px;
  /* LTR */
  width: 28px;
}
a.contextual-links-trigger:hover,
div.contextual-links-active a.contextual-links-trigger {
  background-position: 2px -18px;
}
div.contextual-links-active a.contextual-links-trigger {
  background-color: #fff;
  border-color: #ccc;
  border-bottom: none;
  position: relative;
  z-index: 1;
  border-radius: 4px 4px 0 0;
}
div.contextual-links-wrapper ul.contextual-links {
  background-color: #fff;
  border: 1px solid #ccc;
  display: none;
  margin: 0;
  padding: 0.25em 0;
  position: absolute;
  right: 0;
  text-align: left;
  top: 18px;
  white-space: nowrap;
  border-radius: 4px 0 4px 4px;
  /* LTR */
}
a.contextual-links-trigger-active,
div.contextual-links-active a.contextual-links-trigger,
div.contextual-links-active ul.contextual-links {
  display: block;
}
ul.contextual-links li {
  line-height: 100%;
  list-style: none none;
  margin: 0;
  padding: 0;
}
div.contextual-links-wrapper a {
  text-decoration: none;
}
ul.contextual-links li a {
  color: #333 !important;
  display: block;
  margin: 0.25em 0;
  padding: 0.25em 1em 0.25em 0.5em;
}
ul.contextual-links li a:hover {
  background-color: #bfdcee;
}
/**
 * @file
 * Misc helpers and shortcuts
 */
/*
 * Border radius.
 *
 * @see: http://border-radius.com
 * @see: http://caniuse.com/#feat=border-radius
 * @see: http://www.w3.org/TR/css3-background/#corners
 */
/*
 * Box sizing.
 *
 * @see: http://caniuse.com/#feat=css3-boxsizing
 * @see: http://www.w3.org/TR/css3-ui/#box-sizing
 */
/*
 * User select.
 * @see: http://caniuse.com/#feat=user-select-none
 * @see: https://drafts.csswg.org/css-ui-4/#content-selection
 * @see: https://developer.mozilla.org/en-US/docs/Web/CSS/user-select
 *
 * NOTE: This feature is non-standard!
 */
/*
 * CSS Transitions.
 *
 * @see: http://caniuse.com/#feat=css-transitions
 * @see: https://drafts.csswg.org/css-transitions-1
 * @see: https://drafts.csswg.org/css-transitions-1/#animatable-css
 */
/*
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    contenteditable attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that are clearfixed.
 * 2. The use of 'table' rather than 'block' is only necessary if using
 *    ':before' to contain the top-margins of child elements.
 *
 * @see: http://www.paulirish.com/2008/conditional-stylesheets-vs-css-hacks-answer-neither
 * @see: http://nicolasgallagher.com/micro-clearfix-hack
 * @see: http://www.satzansatz.de/cssd/onhavinglayout.html
 * @see: http://quirksmode.org/css/css2/display.html
 */
/*
 * Generates text-removing properties for use in image replacement. Does not
 * specify the background image (or it's positioning) itself - this needs to be
 * specified manually (or use one of the sprite mixins, if appropriate):
 *
 * 1. Opera requires some special treatment (!important) in order for the color to be overridden.
 * 2. Webkit seems not to respect width:0 on submit buttons, but font:0 does the trick.
 *
 * @TODO: Needs work!!!
 *
 * @see: http://css-tricks.com/examples/ImageReplacement
 * @see: http://www.ampsoft.net/webdesign-l/image-button.html
 * @see: https://github.com/h5bp/html5-boilerplate/issues/1108
 * @see: https://github.com/h5bp/html5-boilerplate/blob/master/css/main.css
 */
/*
 * Hide elements visually, but keep them available for screen-readers.
 *
 * Used for information required for screen-reader users to understand and use
 * the site where visual display is undesirable. Information provided in this
 * manner should be kept concise, to avoid unnecessary burden on the user.
 *
 * @see: DRUPAL .element-invisible {}
 */
/*
 * Apply single color to anchor tags.
 */
