.enyo-alpha-jumper {
  text-transform: uppercase;
  font-size: 11px;
  xborder-radius: 12px;
  position: absolute;
  xbackground: white;
  text-align: center;
  right: 10px;
  z-index: 1;
  color: #333;
  padding: 0 14px;
}
.enyo-alpha-jumper > *:first-child {
  padding-top: 4px;
  border-radius: 12px 12px 0 0;
  border-top: 1px solid #333;
}
.enyo-alpha-jumper > *:last-child {
  padding-bottom: 4px;
  border-radius: 0 0 12px 12px;
  border-bottom: 1px solid #333;
}
.enyo-alpha-jumper > * {
  background: #eee;
  padding: 1px 4px;
  border-right: 1px solid #333;
  border-left: 1px solid #333;
}
.enyo-alpha-jumper > .active {
  background: #333;
  color: white;
}

.enyo-arranger {
  position: relative;
  overflow: hidden;
}
.enyo-arranger.enyo-fit {
  position: absolute;
}
.enyo-arranger > * {
  position: absolute;
  left: 0;
  top: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.enyo-arranger-fit > * {
  /* override any width/height set on panels */
  width: 100% !important;
  height: 100% !important;
  min-width: 0 !important;
  min-height: 0 !important;
}

/* ContextualLayout.css - popup positioning and border radius adjustments */
/*for popups above activator*/
.vertical.above {
  top: auto;
  margin-top: -10px;
  bottom: 100%;
  margin-bottom: 10px;
}
/*for popups below activator*/
.vertical.below {
  margin-top: 10px;
}
/*for popups on the left of the activator*/
.right.horizontal {
  margin-left: -11px;
}
/*for popups on the right of the activator*/
.left.horizontal {
  margin-left: 10px;
}
/*corners*/
/*vertical top corners*/
/*for popups on the left of the activator*/
.vertical.right.corner {
  margin-left: 0px;
}
/*for popups on the right of the activator*/
.vertical.left.corner {
  margin-left: 0px;
}
.vertical.below.left.corner {
  border-top-right-radius: 0px;
}
.vertical.below.right.corner {
  border-top-left-radius: 0px;
}
/*vertical bottom corners*/
.left.above.corner {
  border-bottom-right-radius: 0px;
}
.right.above.corner {
  border-bottom-left-radius: 0px;
}
/*horizontal bottom corners*/
.left.low.corner {
  border-bottom-left-radius: 0px;
}
.right.low.corner {
  border-bottom-right-radius: 0px;
}
/*horizontal top corners*/
.left.high.corner {
  border-top-left-radius: 0px;
}
.right.high.corner {
  border-top-right-radius: 0px;
}

.enyo-fittable-rows-layout {
  position: relative;
}
.enyo-fittable-rows-layout > * {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  /* float when not stretched */
  float: left;
  clear: both;
}
/* non-floating when stretched */
.enyo-fittable-rows-layout.enyo-stretch > * {
  float: none;
  clear: none;
}
/* setting to enforce margin collapsing */
/* NOTE: rows cannot have margin left/right */
.enyo-fittable-rows-layout.enyo-stretch.enyo-margin-expand > * {
  float: left;
  clear: both;
  width: 100%;
  /* note: harsh resets */
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.enyo-fittable-columns-layout {
  position: relative;
  text-align: left;
  white-space: nowrap;
}
.enyo-locale-right-to-left .enyo-fittable-columns-layout {
  text-align: right;
}
.enyo-fittable-columns-layout.enyo-center,
.enyo-locale-right-to-left .enyo-fittable-columns-layout.enyo-center {
  text-align: center;
}
.enyo-fittable-columns-layout > * {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  vertical-align: top;
  display: inline-block;
  white-space: normal;
}
.enyo-fittable-columns-layout > table {
  display: inline-table;
}
.enyo-fittable-columns-layout.enyo-tool-decorator > * {
  vertical-align: middle;
}
/* repair clobbered white-space setting for pre, code */
.enyo-fittable-columns-layout > pre,
.enyo-fittable-columns-layout > code {
  white-space: pre;
}
.enyo-fittable-columns-layout > .enyo-fittable-columns-layout,
.enyo-fittable-columns-layout > .onyx-toolbar-inline {
  white-space: nowrap;
}
/* NOTE: columns cannot have margin top/bottom */
.enyo-fittable-columns-layout.enyo-stretch > * {
  height: 100%;
  /* note: harsh resets */
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.enyo-locale-right-to-left .enyo-fittable-columns-layout {
  direction: rtl;
  text-align: right;
}
.enyo-locale-right-to-left .enyo-fittable-columns-layout.force-left-to-right {
  direction: ltr;
  text-align: left;
}
.enyo-flex-container {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.enyo-flex-container.enyo-center {
  justify-content: center;
}
.enyo-flex-container.columns {
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}
.enyo-flex-container.rows {
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.enyo-flex-item {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.enyo-flex-item.flex {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
.enyo-flex-container.nostretch > .enyo-flex-item {
  -webkit-align-self: flex-start;
  -ms-flex-item-align: flex-start;
  align-self: flex-start;
}

/*
	Put anything you reference with url in ../assets/
	This way, you can minify your application, and just remove the "source" folder for production
*/
.enyo-gridlist-imageitem {
  width: 100%;
  height: 100%;
  color: #fff;
  box-sizing: border-box;
}
.enyo-gridlist-imageitem img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 100%;
}
/* The intended effect is for the image in a GridListImageItem context to have 100% width and height */
.enyo-gridlist-imageitem > .image {
  width: 100%;
  height: 100%;
}
.enyo-gridlist-imageitem > .caption,
.enyo-gridlist-imageitem > .sub-caption {
  font-size: 10pt;
  z-index: 10;
  padding-top: 10px;
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  color: #fff;
}
.enyo-gridlist-imageitem.centered > .caption,
.enyo-gridlist-imageitem.centered > .sub-caption {
  text-align: center;
}
.enyo-gridlist-imageitem.disabled {
  opacity: 0.4;
  filter: alpha(opacity=40);
}
.enyo-gridlist-imageitem.sized-image.use-caption.use-subcaption {
  padding-bottom: 50px;
}
.enyo-gridlist-imageitem.sized-image.use-caption,
.enyo-gridlist-imageitem.sized-image.use-subcaption {
  padding-bottom: 25px;
}
.enyo-gridlist-imageitem.sized-image.use-caption.use-subcaption > .caption {
  position: absolute;
  bottom: 22px;
}
.enyo-gridlist-imageitem.sized-image > .caption {
  position: absolute;
  bottom: 0;
}
.enyo-gridlist-imageitem.sized-image > .sub-caption {
  position: absolute;
  bottom: 0;
}

.pinDebug {
  background: yellow;
  border: 1px solid yellow;
}

.enyo-node {
  cursor: default;
  padding: 4px;
}
.enyo-node img {
  vertical-align: middle;
  padding-right: 6px;
}
.enyo-node-box {
  overflow: hidden;
}
.enyo-node-client {
  position: relative;
}
.enyo-animate .enyo-node-box,
.enyo-animate .enyo-node-client {
  -ms-transition-property: height, top;
  -ms-transition-duration: 0.2s, 0.2s;
  -moz-transition-property: height, top;
  -moz-transition-duration: 0.2s, 0.2s;
  -o-transition-property: height, top;
  -o-transition-duration: 0.2s, 0.2s;
  -webkit-transition-property: height, top;
  -webkit-transition-duration: 0.2s, 0.2s;
  transition-property: height, top;
  transition-duration: 0.2s, 0.2s;
}

.enyo-list {
  position: relative;
}
.enyo-list-port {
  overflow: hidden;
  position: relative;
}
.enyo-list-holdingarea {
  position: absolute;
  left: 0;
  right: 0;
}
.enyo-list-port.horizontal {
  white-space: nowrap;
  width: 1000000px;
  height: 1000000px;
}
.enyo-list-port.vertical {
  height: 1000000px;
}
.enyo-list-page {
  position: absolute;
  left: 0;
}
.enyo-locale-right-to-left .enyo-list-page {
  left: auto;
  right: 0;
}
.enyo-list-page.vertical {
  left: 0;
  right: 0;
}
.enyo-list-holdingarea {
  top: -10000px;
}
.enyo-pinned-list-placeholder {
  border: 1px solid red;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
  background: transparent;
  overflow: hidden;
}
.enyo-pinned-list-placeholder button {
  width: 100px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}
.enyo-list-reorder-container {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
  background: transparent;
  overflow: hidden;
}
.enyo-animatedTopAndLeft {
  -webkit-transition: top 0.1s linear, left 0.1s linear;
  -moz-transition: top 0.1s linear, left 0.1s linear;
  -o-transition: top 0.1s linear, left 0.1s linear;
  transition: top 0.1s linear, left 0.1s linear;
}

.enyo-list-pulldown {
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
}
.enyo-puller {
  position: relative;
  height: 50px;
  font-size: 22px;
  color: #444;
  padding: 20px 0 0px 34px;
}
.enyo-puller-text {
  position: absolute;
  left: 80px;
  top: 22px;
}
.enyo-puller-arrow {
  position: relative;
  background: #444;
  width: 7px;
  height: 28px;
  transition: transform 0.3s;
  -webkit-transition: -webkit-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  -o-transition: -o-transform 0.3s;
  -ms-transition: -ms-transform 0.3s;
}
.enyo-puller-arrow:after {
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  border: 10px solid transparent;
  border-bottom-color: #444;
  bottom: 100%;
  left: 50%;
  margin-left: -10px;
}
.enyo-puller-arrow-up {
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
}
.enyo-puller-arrow-down {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
}

@media all and (max-width: 800px) {
  .enyo-panels-fit-narrow > * {
    min-width: 100%;
    max-width: 100%;
  }
}
.enyo-panels-force-narrow > * {
  min-width: 100%;
  max-width: 100%;
}

