/* Mochi default parameters defined here */
/* Fonts */
/* ---------------------------------------*/
/* Text Colors */
/* ---------------------------------------*/
/* Background Colors */
/* ---------------------------------------*/
/* Disabled Opacity */
/* ---------------------------------------*/
/* Spinner */
/* ---------------------------------------*/
/* Mochi rules defined here */
/* mochi-classes.less - combined CSS (less) files for all released mochi controls
   into single mochi.less file to avoid IE bug that allows
   a maximum of 31 style sheets to be loaded before silently failing */
/* Import font styles */
/* due to licensing, we have the open-source Lato as a fallback when Prelude is
   not available. However,  */
@font-face {
  font-family: "Mochi Light";
  src: local("☺"), url("../fonts/lato-light.woff") format("woff"), url("../fonts/lato-light.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Mochi Medium";
  src: local("☺"), url("../fonts/lato-regular.woff") format("woff"), url("../fonts/lato-regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Mochi Medium";
  src: local("☺"), url("../fonts/lato-italic.woff") format("woff"), url("../fonts/lato-italic.ttf") format("truetype");
  font-style: italic;
}
@font-face {
  font-family: "Mochi Bold Italic";
  src: local("☺"), url("../fonts/lato-bolditalic.woff") format("woff"), url("../fonts/lato-bolditalic.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Mochi Condensed Med";
  src: local("☺"), url("../fonts/lato-regular.woff") format("woff"), url("../fonts/lato-regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Mochi Med Oblique";
  src: local("☺"), url("../fonts/lato-italic.woff") format("woff"), url("../fonts/lato-italic.ttf") format("truetype");
  font-weight: normal;
  font-style: oblique;
}
@font-face {
  font-family: "Mochi Bold";
  src: local("☺"), url("../fonts/lato-bold.woff") format("woff"), url("../fonts/lato-bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Mochi Bold Oblique";
  src: local("☺"), url("../fonts/lato-bolditalic.woff") format("woff"), url("../fonts/lato-bolditalic.ttf") format("truetype");
  font-weight: bold;
  font-style: oblique;
}
/* Text Colors */
/* ---------------------------------------*/
/* Background Colors */
/* ---------------------------------------*/
/* Disabled Opacity */
/* ---------------------------------------*/
/* Spinner */
/* ---------------------------------------*/
/* Prevent browser's default focus treatment (at least in Chrome) */
:focus {
  outline: none;
}
.mochi {
  color: #333333;
  font-family: "Mochi Bold Oblique";
  font-size: 20px;
  cursor: default;
  background-color: #F5F5F5;
  box-shadow: inset 0 0 169px rgba(0, 0, 0, 0.3);
  /* remove automatic tap highlight color */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
/* prevent IE from inheriting line-height for these elements */
.mochi button,
.mochi label,
.mochi input {
  line-height: normal;
}
.mochi-selected {
  background-color: #C4E3FE;
}
/* style that removes transition effects from elements */
.mochi-no-animate {
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  transition: none;
}
.mochi-item {
  font-family: "Mochi Med Oblique";
  font-size: 14px;
  color: #323232;
  font-style: oblique;
}
.mochi-toolbar-inline > * {
  display: inline-block;
  vertical-align: middle;
  margin: 4px 6px 5px;
  box-sizing: border-box;
}
/* LESS pre-calculations */
/* Individual Widget CSS */
/* Badge.css */
.mochi-badge {
  padding: 8px 0 8px 0;
  min-width: 40px;
  width: auto;
  text-align: center;
  vertical-align: middle;
}
.mochi-badge-inner {
  font-family: "Mochi Bold Italic";
  font-size: 12pt;
  height: 24px;
  line-height: 24px;
  min-width: 24px;
  width: auto;
  text-align: center;
  vertical-align: middle;
}
.mochi-badge-inner.oval {
  -webkit-border-radius: 12px;
  /* Safari, Chrome */
  -moz-border-radius: 12px;
  /* Firefox */
  border-radius: 12px;
  /* CSS3 */
  padding-left: 8px;
  padding-right: 8px;
}
.mochi-badge-inner.round {
  -webkit-border-radius: 12px;
  /* Safari, Chrome */
  -moz-border-radius: 12px;
  /* Firefox */
  border-radius: 12px;
  /* CSS3 */
  padding: 0px;
}
/* Button.css */
.mochi-button {
  position: relative;
  border-width: 0px;
  margin: 0px;
  padding: 0px;
  background-color: transparent;
  white-space: nowrap;
  font-size: 1.5rem;
  line-height: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.mochi-button:focus {
  outline: none;
}
.mochi-button::-moz-focus-inner {
  border: 0px;
}
.mochi-button-bar {
  position: absolute;
  top: 35px;
  left: 0px;
  height: 1px;
  width: 0px;
  background-color: #69cdff;
}
.mochi-button > .mochi-button-bar {
  background-color: transparent;
  -webkit-transition: background-color 0.2s linear;
  -moz-transition: background-color 0.2s linear;
  -o-transition: background-color 0.2s linear;
  -ms-transition: background-color 0.2s linear;
  transition: background-color 0.2s linear;
}
.mochi-button:active:hover:not([disabled]) > .mochi-button-bar {
  background-color: #69cdff;
}
.mochi-button.active > .mochi-button-bar {
  background-color: #69cdff;
}
.mochi-button.disabled {
  opacity: 0.4;
}
.mochi-button-warning > .mochi-button-base {
  color: #ff4a4a;
  user-select: none !important;
}
.mochi-button:active:hover:not([disabled]).mochi-button-warning > .mochi-button-bar {
  background-color: #ff4a4a;
}
.mochi-button.active.mochi-button-warning > .mochi-button-bar {
  background-color: #ff4a4a;
}
.mochi-button > .mochi-button-base {
  margin: 3px;
  margin-right: 5px;
  padding: 0px;
  line-height: inherit;
  font-size: 70%;
  user-select: none !important;
}
.mochi-view-select-button > .mochi-button-base {
  height: 34px;
  line-height: 34px;
  vertical-align: middle;
  font-size: inherit;
  user-select: none !important;
}
.mochi-button-base {
  display: inline-block;
  font-family: "Mochi Bold Oblique";
  font-size: inherit;
  color: #323232;
  font-style: oblique;
  font-weight: bold;
  border-width: 0px;
  background-color: transparent;
  letter-spacing: normal;
  margin: 2px;
  padding: 1px 0px;
  white-space: nowrap;
  height: initial;
  text-transform: none;
  text-align: center;
  user-select: none !important;
  -webkit-transition: letter-spacing 0.1s ease-in-out;
  -moz-transition: letter-spacing 0.1s ease-in-out;
  -o-transition: letter-spacing 0.1s ease-in-out;
  -ms-transition: letter-spacing 0.1s ease-in-out;
  transition: letter-spacing 0.1s ease-in-out;
}
.mochi-button-base.wrap {
  white-space: normal !important;
  text-align: center;
  user-select: none !important;
}
/* ButtonColors.css */
.mochi-button-affirmative > .mochi-button-base,
.mochi-button-affirmative > .mochi-button-decorator {
  color: #00dd11;
}
.mochi-button:active:hover:not([disabled]).mochi-button-affirmative > .mochi-button-bar {
  color: #00dd11;
}
.mochi-button.active.mochi-button-affirmative > .mochi-button-bar {
  color: #00dd11;
}
.mochi-button-blue > .mochi-button-base,
.mochi-button-blue > .mochi-button-decorator {
  color: #35A8EE;
}
.mochi-button:active:hover:not([disabled]).mochi-button-blue > .mochi-button-bar {
  color: #35A8EE;
}
.mochi-button.active.mochi-button-blue > .mochi-button-bar {
  color: #35A8EE;
}
/* ButtonDecorator.css */
.mochi-button-decorator {
  font-family: "Mochi Bold";
  font-size: inherit;
  color: #4b4b4b;
  font-weight: bold;
  display: inline-block;
  font-style: normal;
}
.mochi-button-decorator-bookened {
  vertical-align: top;
  margin: 0px;
  padding: 0px;
  font-size: inherit;
}
.mochi-button > .mochi-button-decorator-left {
  padding: 0px;
  font-size: inherit;
  /* Iffy method - prevents flickering in Chrome */
  /*
	-webkit-transition: padding 0.1s ease-in-out;
	-moz-transition: padding 0.1s ease-in-out;
	-o-transition: padding 0.1s ease-in-out;
	-ms-transition: padding 0.1s ease-in-out;
	transition: padding 0.1s ease-in-out;
	*/
  /* Preferred method */
  -webkit-transition: -webkit-transform 0.1s ease-in-out;
  -moz-transition: -moz-transform 0.1s ease-in-out;
  -o-transition: -o-transform 0.1s ease-in-out;
  -ms-transition: -ms-transform 0.1s ease-in-out;
  transition: transform 0.1s ease-in-out;
}
.mochi-button:active:hover:not([disabled]) > .mochi-button-decorator-left {
  -webkit-transform: translateX(-4px);
  -moz-transform: translateX(-4px);
  -o-transform: translateX(-4px);
  -ms-transform: translateX(-4px);
  transform: translateX(-4px);
}
.mochi-button > .mochi-button-decorator-right {
  padding: 0px;
  font-size: inherit;
  /* Iffy method - prevents flickering in Chrome */
  /*
	-webkit-transition: padding 0.1s ease-in-out;
	-moz-transition: padding 0.1s ease-in-out;
	-o-transition: padding 0.1s ease-in-out;
	-ms-transition: padding 0.1s ease-in-out;
	transition: padding 0.1s ease-in-out;
	*/
  /* Preferred method */
  -webkit-transition: -webkit-transform 0.1s ease-in-out;
  -moz-transition: -moz-transform 0.1s ease-in-out;
  -o-transition: -o-transform 0.1s ease-in-out;
  -ms-transition: -ms-transform 0.1s ease-in-out;
  transition: transform 0.1s ease-in-out;
}
.mochi-button:active:hover:not([disabled]) > .mochi-button-decorator-right {
  -webkit-transform: translateX(4px);
  -moz-transform: translateX(4px);
  -o-transform: translateX(4px);
  -ms-transform: translateX(4px);
  transform: translateX(4px);
}
/* Icon.css & IconButton.css */
.mochi-icon {
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-position: 0 0px;
}
.mochi-icon-button-item {
  display: inline-block;
  margin: 2px;
  padding: 1px 0px;
  width: 34px;
  height: 34px;
  border-width: 0px;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center center;
}
.mochi-icon-button-item:active:hover:not([disabled]) > .mochi-icon {
  background-position: 0 -24px;
}
.mochi-icon-button-item.disabled {
  opacity: 0.4;
}
.mochi-icon-button {
  position: relative;
  border-width: 0px;
  margin: 0px;
  padding: 0px;
  height: 40px;
  width: 40px;
  background-color: transparent;
}
.mochi-icon-button > .mochi-button-bar {
  background-color: transparent;
  -webkit-transition: background-color 0.2s linear;
  -moz-transition: background-color 0.2s linear;
  -o-transition: background-color 0.2s linear;
  -ms-transition: background-color 0.2s linear;
  transition: background-color 0.2s linear;
}
.mochi-icon-button:active:hover:not([disabled]) > .mochi-button-bar {
  background-color: #69cdff;
}
.mochi-icon-button.active > .mochi-button-bar {
  background-color: #69cdff;
}
.mochi-icon-button.disabled {
  opacity: 0.4;
}
.mochi-icon-button-bar {
  top: 38px;
}
/* ViewSelector */
.mochi-view-select-button {
  position: relative;
  margin: 0px;
  padding: 0px;
}
.mochi-view-select-button > .mochi-button-base:active:hover:not([disabled]) {
  letter-spacing: 2px;
}
.mochi-view-select-button > .mochi-button-base[disabled] {
  opacity: 0.4;
}
/* RadioButton.css */
.mochi-radio-button {
  cursor: pointer;
  height: 22px;
  width: 22px;
  margin: 0px;
  display: inline-block;
  vertical-align: middle;
  border-radius: 13px;
  border: 2px solid #646464;
}
.mochi-radio-button-animate {
  -webkit-transition: background-color 0.1s linear;
  -moz-transition: background-color 0.1s linear;
  -o-transition: background-color 0.1s linear;
  transition: background-color 0.1s linear;
}
.mochi-radio-button.disabled {
  border-color: #a2a2a2;
}
/* Checkbox.css */
.mochi-checkbox {
  cursor: pointer;
  height: 22px;
  width: 22px;
  margin: 0px;
  display: inline-block;
  vertical-align: middle;
  border-radius: 13px;
  border: 2px solid #646464;
}
.mochi-checkbox[checked] {
  background: url(../img/checkbox.png) no-repeat;
  padding: 2px;
  border-width: 0px;
}
.mochi-checkbox-animate {
  -webkit-transition: background-color 0.1s linear;
  -moz-transition: background-color 0.1s linear;
  -o-transition: background-color 0.1s linear;
  transition: background-color 0.1s linear;
}
.mochi-checkbox.disabled {
  opacity: 0.4;
}
/* Input.css */
.mochi-input-decorator > input {
  /* reset */
  margin: 0px;
  padding: 0px;
  border: none;
  outline: none;
  cursor: pointer;
  background-color: transparent;
  box-shadow: none;
  /* FIXME: hack for styling reset on Android */
  /* -webkit-appearance: caret;*/
  font-size: 14px;
  font-family: "Mochi Medium";
  color: #4b4b4b;
  font-style: italic;
}
.mochi-input-decorator.mochi-focused > input {
  cursor: text;
}
.mochi-input-decorator.mochi-disabled > input {
  cursor: default;
}
.mochi-input-decorator > input::-webkit-input-placeholder {
  color: #7d7d7d;
}
.mochi-input-decorator > input:-moz-placeholder {
  color: #7d7d7d;
}
/* IE10 */
.mochi-input-decorator > input:-ms-input-placeholder {
  color: #7d7d7d;
}
.mochi-input-animate {
  -webkit-transition: border-color 0.1s linear;
  -moz-transition: border-color 0.1s linear;
  -o-transition: border-color 0.1s linear;
  transition: border-color 0.1s linear;
}
/* InputDecorator.css */
.mochi-input-decorator {
  padding: 1px 8px 5px 8px;
  border-radius: 16px;
  border: 1px solid;
  border-color: #a2a2a2;
  background-color: white;
  margin: 0;
  height: inherit;
}
.mochi-input-decorator.mochi-focused {
  border-color: #69cdff;
}
.mochi-input-decorator.mochi-disabled {
  /* FIXME: needed to color a disabled input placeholder. */
  /*-webkit-text-fill-color: #888;*/
  opacity: 0.4;
}
/* RichText.css */
.mochi-input-decorator > .mochi-richtext {
  margin: 0px;
  padding: 0px;
  border: none;
  outline: none;
  cursor: pointer;
  background-color: transparent;
  box-shadow: none;
  /* FIXME: hack for styling reset on Android */
  /* -webkit-appearance: caret;*/
  font-size: 14px;
  font-family: "Mochi Medium";
  color: #4b4b4b;
  font-style: italic;
}
.mochi-input-decorator.mochi-focused > .mochi-richtext {
  cursor: text;
}
.mochi-input-decorator.mochi-disabled > .mochi-richtext {
  cursor: default;
}
/* Pasting rich text adds <p> tag with a margin-top value of 16px */
.mochi-richtext > p {
  margin-top: 0px;
}
/* ProgressBar.css */
.mochi-progress-bar {
  height: 1px;
  min-width: 128px;
  background-color: #a2a2a2;
}
.mochi-progress-bar-bar {
  height: 100%;
  background-color: #69cdff;
}
/* ProgressText.css */
.mochi-progress-text {
  margin: 24px 16px 0px;
  font-size: 12px;
  color: #a2a2a2;
  font-family: "Mochi Med Oblique";
  font-style: oblique;
}
.mochi-progress-text-box {
  position: relative;
  height: 24px;
  overflow: hidden;
}
.mochi-progress-text-underwear {
  position: absolute;
  display: inline-block;
  color: #a2a2a2;
  line-height: 12px;
}
.mochi-progress-text-outerwear {
  position: absolute;
  display: inline-block;
  color: #69cdff;
  line-height: 12px;
  overflow: hidden;
  white-space: nowrap;
}
/* Slider.css */
.mochi-slider {
  position: relative;
  margin: 10px 20px;
}
.mochi-slider-taparea {
  position: absolute;
  top: -16px;
  height: 32px;
  width: 100%;
}
.mochi-slider-knob {
  position: relative;
  height: 16px;
  width: 16px;
  border-radius: 8px;
  margin: -8px -9px;
  background-color: #69cdff;
}
.mochi-slider-knob.active,
.mochi-slider-knob:active:hover {
  height: 36px;
  width: 36px;
  border-radius: 18px;
  margin: -18px -20px;
}
.mochi-slider-popup {
  position: absolute;
  display: block;
  z-index: 20;
  left: 0px;
  top: 0px;
  width: 62px;
  height: 37px;
  padding-left: 4px;
}
.mochi-slider-popup-label {
  position: absolute;
  top: 1px;
  width: 60px;
  height: 32px;
  white-space: nowrap;
  font-family: "Mochi Medium";
  color: #fff;
  text-align: center;
  line-height: 32px;
  vertical-align: middle;
  font-size: 14px;
}
.mochi-slider-popup.above {
  top: -56px;
}
/* below is commented out pending HI approval */
/*
.mochi-slider-popup.below {
	top: 25px;
}
*/
/* Spinner.css */
.mochi-spinner {
  width: 52px;
  height: 52px;
  display: inline-block;
  background-image: url(../img/spinner-dark.gif);
  background-repeat: no-repeat;
  background-position: 0 0;
}
.mochi-spinner.mochi-light {
  background-image: url(../img/spinner-light.gif);
}
.mochi-spinner.mochi-large {
  width: 100%;
  background-image: url(../img/spinner-large-dark.gif);
}
.mochi-spinner.mochi-large.mochi-light {
  width: 100%;
  background-image: url(../img/spinner-large-light.gif);
}
.mochi-spinner.mochi-spinner-center {
  background-position: center 0;
}
/* TextArea.css */
.mochi-input-decorator > textarea {
  margin: 10px 0px 6px;
  padding: 0;
  border: none;
  outline: none;
  cursor: pointer;
  background-color: transparent;
  box-shadow: none;
  /* Remove scrollbars and resize handle */
  resize: none;
  overflow: auto;
  /* FIXME: hack for styling reset on Android */
  /* -webkit-appearance: caret;*/
  font-size: 14px;
  font-family: "Mochi Medium";
  color: #4b4b4b;
  font-style: italic;
}
.mochi-input-decorator.mochi-focused > textarea {
  cursor: text;
}
.mochi-input-decorator.mochi-disabled > textarea {
  cursor: default;
}
.mochi-textarea {
  /* need >=50px for scrollbar to be usable on mac */
  min-height: 50px;
}
textarea::-webkit-scrollbar {
  width: 4px;
}
textarea::-webkit-scrollbar-track-piece {
  margin-top: 4px;
  margin-bottom: 0px;
  background-color: #fff;
  -webkit-border-radius: 10px;
}
textarea::-webkit-scrollbar-thumb:vertical {
  height: 10px;
  background-color: #7d7d7d;
  -webkit-border-radius: 10px;
}
/* ToggleButton.css */
.mochi-toggle-button {
  display: inline-block;
  height: 24px;
  line-height: 24px;
  min-width: 48px;
  vertical-align: middle;
  border-radius: 12px;
  background-size: auto 100%;
  color: white;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
}
.mochi-toggle-button-knob {
  position: relative;
  width: 20px;
  height: 20px;
  margin: 2px;
  border-radius: 10px;
  background-color: white;
  left: 0px;
  overflow: hidden;
}
.mochi-toggle-button.disabled {
  opacity: 0.4;
  filter: alpha(opacity=40);
}
.mochi-toggle-animate {
  -webkit-transition: background-color 0.1s linear;
  -moz-transition: background-color 0.1s linear;
  -o-transition: background-color 0.1s linear;
  transition: background-color 0.1s linear;
}
/* Header.css */
.mochi-header {
  height: 64px;
  white-space: nowrap;
  padding: 0 5px;
}
.mochi-header-content {
  font-family: "Mochi Light";
  font-size: 36px;
  line-height: 32px;
  color: #4b4b4b;
  padding-top: 10px;
  text-overflow: ellipsis;
  text-transform: uppercase;
  overflow: hidden;
  white-space: nowrap;
  display: inline-block;
  vertical-align: text-bottom;
}
.mochi-header-controls {
  display: inline-block;
  vertical-align: bottom;
  padding-top: 2px;
}
.mochi-header-controls-first {
  padding-left: 56px;
}
.mochi-header-controls > * {
  display: inline-block;
  white-space: nowrap;
}
/* Subheader.css */
.mochi-subheader {
  height: 56px;
  padding: 0px 32px;
  white-space: nowrap;
}
.mochi-subheader-content {
  font-family: "Mochi Medium";
  font-size: 18px;
  font-style: italic;
  color: #323232;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  /* 56px height */
  line-height: 26px;
  padding-top: 30px;
}
/* Collapsable.css */
.mochi-collapsable-header {
  font-family: "Mochi Medium";
  font-size: 18px;
  font-weight: bold;
  font-style: italic;
  color: #323232;
  padding: 0 32px 0 32px;
}
.mochi-collapsable-item {
  font-family: "Mochi Medium";
  font-size: 14px;
  font-weight: bold;
  font-style: italic;
  color: #4b4b4b;
  padding: 0 0 48px 32px;
}
.mochi-collapsable-footer {
  height: 16px;
  border-top: 0px transparent;
  border-bottom: 1px solid #CCCCCC;
  border-radius: 32px;
  background-color: #F5F5F5;
}
.mochi-contextual-container {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 100;
  display: none;
}
.mochi-contextual-popup-title {
  font-weight: bold;
  padding: 24px 32px 0px;
}
.mochi-contextual-popup-scroller {
  padding: 24px 32px;
}
.mochi-contextual-popup-action-buttons {
  display: inline-block;
  width: 100%;
  text-align: center;
}
.mochi-contextual-popup {
  font-size: 14px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.44);
  border: 2px solid #646464;
  border-radius: 24px;
  padding: 6px;
  color: #4b4b4b;
  background-color: #ffffff;
  min-width: 300px;
  margin-top: 2px;
  min-height: 150px;
  height: 150px;
  position: relative;
}
.mochi-contextual-popup .mochi-contextual-popup-content {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.mochi-contextual-popup .mochi-contextual-popup-content .mochi-contextual-popup-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: auto;
  padding: 10px;
  left: 0;
  top: 0;
}
.mochi-contextual-popup .mochi-contextual-popup-content .mochi-contextual-popup-wrapper::-webkit-scrollbar {
  width: 5px;
}
.mochi-contextual-popup .mochi-contextual-popup-content .mochi-contextual-popup-wrapper::-webkit-scrollbar-thumb {
  background: #eeeeee;
  border-radius: 5px;
}
.mochi-contextual-popup .mochi-contextual-popup-content .mochi-contextual-popup-wrapper::-moz-scrollbar {
  width: 5px;
}
.mochi-contextual-popup .mochi-contextual-popup-content .mochi-contextual-popup-wrapper::-moz-scrollbar-thumb {
  background: #eeeeee;
  border-radius: 5px;
}
.mochi-contextual-popup .mochi-contextual-popup-content .mochi-contextual-popup-item {
  margin: 0;
  padding: 5px;
  cursor: pointer;
  transition: all 0.2s;
  border-radius: 5px;
}
.mochi-contextual-popup .mochi-contextual-popup-content .mochi-contextual-popup-item:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
/*setup the nub*/
.mochi-contextual-popup::after {
  content: '';
  position: absolute;
}
/*for popups above activator*/
.mochi-contextual-popup.vertical.above {
  top: auto;
  margin-top: -10px;
  bottom: 100%;
  margin-bottom: 10px;
}
/*for popups below activator*/
/*for popups on the left of the activator*/
.mochi-contextual-popup.right.horizontal {
  margin-left: -11px;
}
/*for popups on the right of the activator*/
.mochi-contextual-popup.left.horizontal {
  margin-left: 10px;
}
/****nub positioning for vertical popups****/
/*horizontally centered nub*/
.mochi-contextual-popup.vertical::after {
  content: '';
  position: absolute;
  top: -20px;
  left: 34%;
  width: 71px;
  height: 20px;
  background: transparent url('../img/contextual-popup-nubs/up.png') no-repeat;
}
/*nub near horizontal left*/
.mochi-contextual-popup.vertical.right::after {
  left: 0%;
  margin-left: 20px;
}
/*nub near horizontal right*/
.mochi-contextual-popup.vertical.left::after {
  left: 100%;
  margin-left: -90px;
}
/*downward facing nub*/
.mochi-contextual-popup.vertical.above::after {
  top: 100%;
  width: 71px;
  height: 20px;
  background: transparent url('../img/contextual-popup-nubs/down.png') no-repeat;
}
.mochi-contextual-popup.vertical.below.right::after {
  top: 0%;
  margin-top: -20px;
  width: 71px;
  height: 20px;
  background: transparent url('../img/contextual-popup-nubs/up.png') no-repeat;
}
.mochi-contextual-popup.vertical.below.left::after {
  top: 0%;
  margin-top: -20px;
  width: 71px;
  height: 20px;
  background: transparent url('../img/contextual-popup-nubs/up.png') no-repeat;
}
/****nub positioning for left/right popups****/
/*vertically centered nub for popups on left of activator*/
.mochi-contextual-popup.right::after {
  left: 100%;
  top: 35%;
  width: 20px;
  height: 71px;
  background: transparent url('../img/contextual-popup-nubs/right.png') no-repeat;
}
/*nub near vertical top for popups on left of activator*/
.mochi-contextual-popup.right.high::after {
  top: 25px;
}
/*nub near vertical bottom for popups on left of activator*/
.mochi-contextual-popup.right.low::after {
  top: 100%;
  margin-top: -100px;
}
/*vertically centered nub for popups on right of activator*/
.mochi-contextual-popup.left::after {
  left: 0%;
  width: 20px;
  height: 71px;
  margin-left: -20px;
  top: 35%;
  background: transparent url('../img/contextual-popup-nubs/left.png') no-repeat;
}
/*nub near vertical top for popups on right of activator*/
.mochi-contextual-popup.left.high::after {
  top: 25px;
}
/*nub near vertical bottom for popups on right of activator*/
.mochi-contextual-popup.left.low::after {
  top: 100%;
  margin-top: -100px;
}
/*********************corners********************/
/*vertical top corners*/
/*for popups on the left of the activator*/
.mochi-contextual-popup.vertical.right.corner {
  margin-left: 0px;
}
/*for popups on the right of the activator*/
.mochi-contextual-popup.vertical.left.corner {
  margin-left: 0px;
}
.mochi-contextual-popup.vertical.below.left.corner {
  border-top-right-radius: 0px;
}
.mochi-contextual-popup.vertical.below.right.corner {
  border-top-left-radius: 0px;
}
.mochi-contextual-popup.vertical.below.left.corner::after {
  top: 0%;
  left: 100%;
  margin-top: -14px;
  margin-left: -30px;
  width: 71px;
  height: 20px;
  background: transparent url('../img/contextual-popup-nubs/top-right-corner-up.png') no-repeat;
}
.mochi-contextual-popup.vertical.below.right.corner::after {
  top: 0%;
  left: 0%;
  width: 71px;
  height: 20px;
  margin-left: -2px;
  margin-top: -14px;
  background: transparent url('../img/contextual-popup-nubs/top-left-corner-up.png') no-repeat;
}
/*vertical bottom corners*/
.mochi-contextual-popup.left.above.corner {
  border-bottom-right-radius: 0px;
}
.mochi-contextual-popup.right.above.corner {
  border-bottom-left-radius: 0px;
}
.mochi-contextual-popup.vertical.left.above.corner::after {
  top: 100%;
  margin-left: -30px;
  width: 71px;
  height: 20px;
  background: transparent url('../img/contextual-popup-nubs/bottom-right-corner-down.png') no-repeat;
}
.mochi-contextual-popup.vertical.right.above.corner::after {
  top: 100%;
  left: 0%;
  margin-left: -2px;
  background: transparent url('../img/contextual-popup-nubs/bottom-left-corner-down.png') no-repeat;
}
/*horizontal bottom corners*/
.mochi-contextual-popup.left.low.corner {
  border-bottom-left-radius: 0px;
}
.mochi-contextual-popup.right.low.corner {
  border-bottom-right-radius: 0px;
}
.mochi-contextual-popup.left.low.corner::after {
  top: 100%;
  left: 0%;
  margin-top: -30px;
  margin-left: -14px;
  background: transparent url('../img/contextual-popup-nubs/bottom-left-corner-left.png') no-repeat;
}
.mochi-contextual-popup.right.low.corner::after {
  top: 100%;
  left: 100%;
  margin-top: -30px;
  background: transparent url('../img/contextual-popup-nubs/bottom-right-corner-right.png') no-repeat;
}
/*horizontal top corners*/
.mochi-contextual-popup.left.high.corner {
  border-top-left-radius: 0px;
}
.mochi-contextual-popup.right.high.corner {
  border-top-right-radius: 0px;
}
.mochi-contextual-popup.left.high.corner::after {
  top: 0%;
  left: 0%;
  margin-top: -2px;
  margin-left: -14px;
  background: transparent url('../img/contextual-popup-nubs/top-left-corner-left.png') no-repeat;
}
.mochi-contextual-popup.right.high.corner::after {
  top: 0%;
  left: 100%;
  margin-top: -2px;
  background: transparent url('../img/contextual-popup-nubs/top-right-corner-right.png') no-repeat;
}
/* ContextualPopupDecorator.css */
.mochi-contextual-popup-decorator {
  position: relative;
}
/* List.css */
.mochi-list-scroll-fade {
  position: absolute;
  text-align: center;
  display: inline-block;
  height: 4px;
  width: 100%;
}
.mochi-list-scroll-fade.top {
  top: 0;
}
.mochi-list-scroll-fade.bottom {
  bottom: 0;
}
.mochi-list-scroll-fade-row {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  height: 1px;
}
.mochi-list-scroll-fade-row.row-1 {
  background-image: -webkit-gradient(linear, 0 0, 100% 100%, from(rgba(255, 255, 255, 0)), color-stop(0.5, #c5c5c5), to(rgba(255, 255, 255, 0)));
  background-image: -webkit-linear-gradient(left, rgba(255, 255, 255, 0), #c5c5c5, rgba(255, 255, 255, 0));
  background-image: -moz-linear-gradient(left, rgba(255, 255, 255, 0), #c5c5c5, rgba(255, 255, 255, 0));
  background-image: -ms-linear-gradient(left, rgba(255, 255, 255, 0), #c5c5c5, rgba(255, 255, 255, 0));
  background-image: -o-linear-gradient(left, rgba(255, 255, 255, 0), #c5c5c5, rgba(255, 255, 255, 0));
  background-image: linear-gradient(left, rgba(255, 255, 255, 0), #c5c5c5, rgba(255, 255, 255, 0));
  width: 100%;
}
.mochi-list-scroll-fade-row.row-2 {
  background-image: -webkit-gradient(linear, 0 0, 100% 100%, from(rgba(255, 255, 255, 0)), color-stop(0.5, #d5d5d5), to(rgba(255, 255, 255, 0)));
  background-image: -webkit-linear-gradient(left, rgba(255, 255, 255, 0), #d5d5d5, rgba(255, 255, 255, 0));
  background-image: -moz-linear-gradient(left, rgba(255, 255, 255, 0), #d5d5d5, rgba(255, 255, 255, 0));
  background-image: -ms-linear-gradient(left, rgba(255, 255, 255, 0), #d5d5d5, rgba(255, 255, 255, 0));
  background-image: -o-linear-gradient(left, rgba(255, 255, 255, 0), #d5d5d5, rgba(255, 255, 255, 0));
  background-image: linear-gradient(left, rgba(255, 255, 255, 0), #d5d5d5, rgba(255, 255, 255, 0));
  width: 95%;
}
.mochi-list-scroll-fade-row.row-3 {
  background-image: -webkit-gradient(linear, 0 0, 100% 100%, from(rgba(255, 255, 255, 0)), color-stop(0.5, #e5e5e5), to(rgba(255, 255, 255, 0)));
  background-image: -webkit-linear-gradient(left, rgba(255, 255, 255, 0), #e5e5e5, rgba(255, 255, 255, 0));
  background-image: -moz-linear-gradient(left, rgba(255, 255, 255, 0), #e5e5e5, rgba(255, 255, 255, 0));
  background-image: -ms-linear-gradient(left, rgba(255, 255, 255, 0), #e5e5e5, rgba(255, 255, 255, 0));
  background-image: -o-linear-gradient(left, rgba(255, 255, 255, 0), #e5e5e5, rgba(255, 255, 255, 0));
  background-image: linear-gradient(left, rgba(255, 255, 255, 0), #e5e5e5, rgba(255, 255, 255, 0));
  width: 85%;
}
.mochi-list-scroll-fade-row.row-4 {
  background-image: -webkit-gradient(linear, 0 0, 100% 100%, from(rgba(255, 255, 255, 0)), color-stop(0.5, #f5f5f5), to(rgba(255, 255, 255, 0)));
  background-image: -webkit-linear-gradient(left, rgba(255, 255, 255, 0), #f5f5f5, rgba(255, 255, 255, 0));
  background-image: -moz-linear-gradient(left, rgba(255, 255, 255, 0), #f5f5f5, rgba(255, 255, 255, 0));
  background-image: -ms-linear-gradient(left, rgba(255, 255, 255, 0), #f5f5f5, rgba(255, 255, 255, 0));
  background-image: -o-linear-gradient(left, rgba(255, 255, 255, 0), #f5f5f5, rgba(255, 255, 255, 0));
  background-image: linear-gradient(left, rgba(255, 255, 255, 0), #f5f5f5, rgba(255, 255, 255, 0));
  width: 65%;
}
/* ListHeader.css */
.mochi-list-header {
  font-family: "Mochi Medium";
  font-size: 18pt;
  font-weight: bold;
  font-style: italic;
  color: #323232;
  padding: 0 32px 0 32px;
}
/* ListHeader.css */
.mochi-list-header {
  font-family: "Mochi Medium";
  font-size: 18px;
  font-weight: bold;
  font-style: italic;
  color: #323232;
  padding: 0 32px 0 32px;
}
/* ListItem.css */
.mochi-list-item {
  font-family: "Mochi Medium";
  font-size: 14px;
  font-weight: bold;
  font-style: italic;
  color: #4b4b4b;
  padding: 0 0 48px 32px;
}
.mochi-highlight {
  background-image: -webkit-gradient(linear, 0 0, 100% 100%, from(rgba(255, 255, 255, 0)), color-stop(0.5, #f5f5f5), to(rgba(255, 255, 255, 0)));
  background-image: -webkit-linear-gradient(left, rgba(255, 255, 255, 0), #f5f5f5, rgba(255, 255, 255, 0));
  background-image: -moz-linear-gradient(left, rgba(255, 255, 255, 0), #f5f5f5, rgba(255, 255, 255, 0));
  background-image: -ms-linear-gradient(left, rgba(255, 255, 255, 0), #f5f5f5, rgba(255, 255, 255, 0));
  background-image: -o-linear-gradient(left, rgba(255, 255, 255, 0), #f5f5f5, rgba(255, 255, 255, 0));
  background-image: linear-gradient(left, rgba(255, 255, 255, 0), #f5f5f5, rgba(255, 255, 255, 0));
}
.mochi-highlight-border {
  position: absolute;
  height: 4px;
  margin: 0 112px;
  line-height: 4px;
}
.mochi-highlight-border:before,
.mochi-highlight-border:after {
  content: ' ';
  width: 112px;
  height: 4px;
  position: absolute;
  background-repeat: no-repeat;
}
.mochi-highlight-border.top {
  background: url(../img/list/SmallSelectedItem/SmallSelectedListItem_TopMiddle.png) repeat-x;
}
.mochi-highlight-border.top:before {
  left: -112px;
  background-image: url(../img/list/SmallSelectedItem/SmallSelectedListItem_TopLeftFade.png);
}
.mochi-highlight-border.top:after {
  right: -112px;
  background-image: url(../img/list/SmallSelectedItem/SmallSelectedListItem_TopRightFade.png);
}
.mochi-highlight-border.bottom {
  background: url(../img/list/SmallSelectedItem/SmallSelectedListItem_BottomMiddle.png) repeat-x;
}
.mochi-highlight-border.bottom:before {
  left: -112px;
  background-image: url(../img/list/SmallSelectedItem/SmallSelectedListItem_BottomLeftFade.png);
}
.mochi-highlight-border.bottom:after {
  right: -112px;
  background-image: url(../img/list/SmallSelectedItem/SmallSelectedListItem_BottomRightFade.png);
}
/* wide lists, ie width >= 640px */
.mochi-highlight-border.large {
  position: absolute;
  height: 4px;
  margin: 0 320px;
  line-height: 4px;
}
.mochi-highlight-border.large:before,
.mochi-highlight-border.large:after {
  content: ' ';
  width: 320px;
  height: 4px;
  position: absolute;
  background-repeat: no-repeat;
}
.mochi-highlight-border.large.top {
  background: url(../img/list/LargeSelectedItem/LargeSelectedListItem_TopMiddle.png) repeat-x;
}
.mochi-highlight-border.top.large:before {
  left: -320px;
  background-image: url(../img/list/LargeSelectedItem/LargeSelectedListItem_TopLeftFade.png);
}
.mochi-highlight-border.top.large:after {
  right: -320px;
  background-image: url(../img/list/LargeSelectedItem/LargeSelectedListItem_TopRightFade.png);
}
.mochi-highlight-border.bottom.large {
  background: url(../img/list/LargeSelectedItem/LargeSelectedListItem_BottomMiddle.png) repeat-x;
}
.mochi-highlight-border.bottom.large:before {
  left: -320px;
  background-image: url(../img/list/LargeSelectedItem/LargeSelectedListItem_BottomLeftFade.png);
}
.mochi-highlight-border.bottom.large:after {
  right: -320px;
  background-image: url(../img/list/LargeSelectedItem/LargeSelectedListItem_BottomRightFade.png);
}
/* Panels.css */
.mochi-panels > * {
  /* 320px width, plus the 45px overlap */
  /* May need to modify this */
  width: 365px;
  padding-right: 45px;
  background-color: #f5f5f5;
  /* box-shadow: inset 0 0 169px rgba(0, 0, 0, 0.3); */
  border-left: 1px solid #ccc;
  border-top-left-radius: 45px;
}
.mochi-base-panel > *:first-child {
  border-top-left-radius: 0px;
  padding-right: 0px;
}
/*
	Put anything you reference with "url()" in ../assets/
	This way, you can minify your application, and just remove the "source" folder for production
*/
.mochi-gridlist {
  background: #ccc;
  font-family: "Mochi Light";
}
.mochi-gridlist-imageitem {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.mochi-gridlist-imageitem.selected {
  background: orange;
  padding: 3px;
  /*Offset the right and bottom padding by adding negative top and left margin*/
  margin-left: -3px;
  margin-top: -3px;
}
.mochi-gridlist-imageitem img {
  width: 100%;
  height: 100%;
}
.mochi-gridlist-imageitem .caption {
  font-family: "Mochi Light";
  font-weight: bold;
  text-align: center;
  font-size: 10pt;
  text-transform: uppercase;
  z-index: 10;
  padding-top: 10px;
  color: #555;
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  height: 30px;
  overflow: hidden;
  bottom: 30px;
  position: relative;
  color: #fff;
}
