@charset "UTF-8";
/**
 * @file
 * Styles are organized using the SMACSS technique. @see http://smacss.com/book/
 *
 */
/* Import Sass mixins, variables, Compass modules, etc. */
/**
 * Color definitions
 */
/* line 177, ../../sass/src/_init.scss */
.clearfix:before, .clearfix:after {
  content: " ";
  display: table;
}
/* line 182, ../../sass/src/_init.scss */
.clearfix:after {
  clear: both;
}

/* apply a natural box layout model to all elements, but allowing components to change */
/* line 188, ../../sass/src/_init.scss */
html {
  box-sizing: border-box;
}

/* line 191, ../../sass/src/_init.scss */
*, *:before, *:after {
  box-sizing: inherit;
}

/**
 * Collection of media queries
 */
/* HTML element (SMACSS base) rules */
/**
 * @file
 * Normalize.css is intended to be used as an alternative to CSS resets.
 *
 * This file is a slight fork of these original sources:
 * - normalize.css v2.1.2 | MIT License | git.io/normalize
 * - normalize.scss v2.1.2 | MIT/GPLv2 License | bit.ly/normalize-with-compass
 *
 * It's suggested that you read the normalize.scss file and customise it to meet
 * your needs, rather then including the file in your project and overriding the
 * defaults later in your CSS.
 * @see http://nicolasgallagher.com/about-normalize-css/
 *
 * Also: @see http://meiert.com/en/blog/20080419/reset-style-sheets-are-bad/
 *       @see http://snook.ca/archives/html_and_css/no_css_reset/
 */
/**
 * HTML5 display definitions
 */
/* Correct `block` display not defined in IE 8/9. */
/* line 23, ../../sass/src/_normalize.scss */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section,
summary {
  display: block;
}

/* Correct `inline-block` display not defined in IE 8/9. */
/* line 38, ../../sass/src/_normalize.scss */
audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
/* line 52, ../../sass/src/_normalize.scss */
audio:not([controls]) {
  display: none;
  height: 0;
}

/* Address styling not present in IE 8/9. */
/* line 58, ../../sass/src/_normalize.scss */
[hidden] {
  display: none;
}

/**
 * Base
 *
 * Instead of relying on the fonts that are available on a user's computer, you
 * can use web fonts which, like images, are resources downloaded to the user's
 * browser. Because of the bandwidth and rendering resources required, web fonts
 * should be used with care.
 *
 * Numerous resources for web fonts can be found on Google. Here are a few
 * websites where you can find Open Source fonts to download:
 * - http://www.fontsquirrel.com/fontface
 * - http://www.theleagueofmoveabletype.com
 *
 * In order to use these fonts, you will need to convert them into formats
 * suitable for web fonts. We recommend the free-to-use Font Squirrel's
 * Font-Face Generator:
 *   http://www.fontsquirrel.com/fontface/generator
 *
 * The following is an example @font-face declaration. This font can then be
 * used in any ruleset using a property like this:  font-family: Example, serif;
 *
 * Since we're using Sass, you'll need to declare your font faces here, then you
 * can add them to the font variables in the _base.scss partial.
 */
/*
@font-face {
  font-family: 'Example';
  src: url('../fonts/example.eot');
  src: url('../fonts/example.eot?iefix') format('eot'),
    url('../fonts/example.woff') format('woff'),
    url('../fonts/example.ttf') format('truetype'),
    url('../fonts/example.svg#webfontOkOndcij') format('svg');
  font-weight: normal;
  font-style: normal;
}
*/
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 * 3. Correct text resizing oddly in IE 6/7 when body `font-size` is set using
 *    `em` units.
 */
/* line 106, ../../sass/src/_normalize.scss */
html {
  font-family: "open sans", sans-serif;
  /* 1 */
  font-size: 90%;
  /* 3 */
  -ms-text-size-adjust: 90%;
  /* 2 */
  -webkit-text-size-adjust: 90%;
  /* 2 */
  line-height: 1.5em;
  overflow-y: scroll;
}

/* Address `font-family` inconsistency between `textarea` and other form elements. */
/* line 118, ../../sass/src/_normalize.scss */
button,
input,
select,
textarea {
  font-family: "open sans", sans-serif;
}

/* Remove default margin. */
/* line 127, ../../sass/src/_normalize.scss */
body {
  padding: 103px 0 0 0;
  margin: 0;
  box-sizing: border-box;
  background-color: white;
  position: relative;
}
@media only screen and (min-width: 768px) {
  /* line 127, ../../sass/src/_normalize.scss */
  body {
    min-width: 768px;
  }
}

/**
 * Links
 *
 * The order of link states are based on Eric Meyer's article:
 * http://meyerweb.com/eric/thoughts/2007/06/11/who-ordered-the-link-states
 */
/* line 144, ../../sass/src/_normalize.scss */
a:link {
  color: darkblue;
  text-decoration: none;
}

/* line 150, ../../sass/src/_normalize.scss */
a:hover,
a:focus {
  color: blue;
  text-decoration: none;
}

/* Address `outline` inconsistency between Chrome and other browsers. */
/* line 159, ../../sass/src/_normalize.scss */
a:focus {
  outline: thin dotted;
}

/* Improve readability when focused and also mouse hovered in all browsers. */
/* line 164, ../../sass/src/_normalize.scss */
a:active,
a:hover {
  outline: 0;
}

/* line 169, ../../sass/src/_normalize.scss */
a img {
  border: none;
}

/**
 * Typography
 *
 * To achieve a pleasant vertical rhythm, we use Compass' Vertical Rhythm mixins
 * so that the line height of our base font becomes the basic unit of vertical
 * measurement. We use multiples of that unit to set the top and bottom margins
 * for our block level elements and to set the line heights of any fonts.
 * For more information, see http://24ways.org/2006/compose-to-a-vertical-rhythm
 */
/* Set 1 unit of vertical rhythm on the top and bottom margin. */
/* line 184, ../../sass/src/_normalize.scss */
p {
  margin: 0 0 1em 0;
}

/* line 188, ../../sass/src/_normalize.scss */
blockquote {
  /* Also indent the quote on both sides. */
  margin: 1.5em 30px;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari 5, and Chrome.
 */
/* line 197, ../../sass/src/_normalize.scss */
h1 {
  /* Set the font-size and line-height while keeping a proper vertical rhythm. */
  font-size: 2em;
  line-height: 1.5em;
  /* Set 1 unit of vertical rhythm on the top and bottom margins. */
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}

/* line 205, ../../sass/src/_normalize.scss */
h2 {
  font-size: 1.5em;
  line-height: 2em;
  margin-top: 1em;
  margin-bottom: 1em;
}

/* line 210, ../../sass/src/_normalize.scss */
h3 {
  font-size: 1.17em;
  line-height: 1.28205em;
  margin-top: 1.28205em;
  margin-bottom: 1.28205em;
  color: #2c6877;
  font-size: 110%;
}

/* line 218, ../../sass/src/_normalize.scss */
h4 {
  font-size: 1em;
  line-height: 1.5em;
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}

/* line 223, ../../sass/src/_normalize.scss */
h5 {
  font-size: 0.83em;
  line-height: 1.80723em;
  margin-top: 1.80723em;
  margin-bottom: 1.80723em;
}

/* line 228, ../../sass/src/_normalize.scss */
h6 {
  font-size: 0.67em;
  line-height: 2.23881em;
  margin-top: 2.23881em;
  margin-bottom: 2.23881em;
}

/* Address styling not present in IE 8/9, Safari 5, and Chrome. */
/* line 235, ../../sass/src/_normalize.scss */
abbr[title] {
  border-bottom: 1px dotted;
}

/* Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome. */
/* line 240, ../../sass/src/_normalize.scss */
b,
strong {
  font-weight: bold;
}

/* Address styling not present in Safari 5 and Chrome. */
/* line 246, ../../sass/src/_normalize.scss */
dfn {
  font-style: italic;
}

/* Address differences between Firefox and other browsers. */
/* line 251, ../../sass/src/_normalize.scss */
hr {
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
  padding-bottom: -1px;
  margin: 0.75em 0;
}

/* Address styling not present in IE 8/9. */
/* line 260, ../../sass/src/_normalize.scss */
mark {
  background: #ff0;
  color: #000;
}

/* Correct font family set oddly in Safari 5 and Chrome. */
/* line 266, ../../sass/src/_normalize.scss */
code,
kbd,
pre,
samp,
tt,
var {
  font-family: "Courier New", "DejaVu Sans Mono", monospace, sans-serif;
  _font-family: 'courier new', monospace;
  font-size: 1em;
  line-height: 1.5em;
}

/* Improve readability of pre-formatted text in all browsers. */
/* line 280, ../../sass/src/_normalize.scss */
pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

/* Set consistent quote types. */
/* line 292, ../../sass/src/_normalize.scss */
q {
  quotes: "\201C" "\201D" "\2018" "\2019";
}

/* Address inconsistent and variable font size in all browsers. */
/* line 297, ../../sass/src/_normalize.scss */
small {
  font-size: 80%;
}

/* Prevent `sub` and `sup` affecting `line-height` in all browsers. */
/* line 302, ../../sass/src/_normalize.scss */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

/* line 309, ../../sass/src/_normalize.scss */
sup {
  top: -0.5em;
}

/* line 312, ../../sass/src/_normalize.scss */
sub {
  bottom: -0.25em;
}

/**
 * Lists
 */
/* line 319, ../../sass/src/_normalize.scss */
dl,
menu,
ol,
ul {
  /* Address margins set differently in IE 6/7. */
  margin: 1.5em 0;
}

/* line 328, ../../sass/src/_normalize.scss */
ol ol,
ol ul,
ul ol,
ul ul {
  /* Turn off margins on nested lists. */
  margin: 0;
}

/* line 334, ../../sass/src/_normalize.scss */
dd {
  margin: 0 0 0 30px;
  /* LTR */
}

/* Address paddings set differently in IE 6/7. */
/* line 339, ../../sass/src/_normalize.scss */
menu,
ol,
ul {
  padding: 0 0 0 30px;
  /* LTR */
}

/* Correct list images handled incorrectly in IE 7. */
/* line 347, ../../sass/src/_normalize.scss */
nav ul,
nav ol {
  list-style: none;
  list-style-image: none;
}

/**
 * Embedded content and figures
 *
 * @todo Look into adding responsive embedded video.
 */
/* line 359, ../../sass/src/_normalize.scss */
img {
  /* Remove border when inside `a` element in IE 8/9. */
  border: 0;
  /* Improve image quality when scaled in IE 7. */
  -ms-interpolation-mode: bicubic;
  /* Suppress the space beneath the baseline */
  /* vertical-align: bottom; */
  /* Responsive images */
  max-width: 100%;
  height: auto;
  /* Correct IE 8 not scaling image height when resized. */
  width: auto;
}

/* Correct overflow displayed oddly in IE 9. */
/* line 380, ../../sass/src/_normalize.scss */
svg:not(:root) {
  overflow: hidden;
}

/* Address margin not present in IE 8/9 and Safari 5. */
/* line 385, ../../sass/src/_normalize.scss */
figure {
  margin: 0;
}

/**
 * Forms
 */
/* Correct margin displayed oddly in IE 6/7. */
/* line 395, ../../sass/src/_normalize.scss */
form {
  margin: 0;
}

/* Define consistent border, margin, and padding. */
/* line 401, ../../sass/src/_normalize.scss */
fieldset {
  /* Apply borders and padding that keep the vertical rhythm. */
  border-color: #c0c0c0;
  border-top-width: 0.0625em;
  border-top-style: solid;
  padding-top: 0.4625em;
  border-bottom-width: 0.0625em;
  border-bottom-style: solid;
  padding-bottom: 0.9125em;
  border-left-width: 0.0625em;
  border-left-style: solid;
  padding-left: 0.9125em;
  border-right-width: 0.0625em;
  border-right-style: solid;
  padding-right: 0.9125em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 * 3. Correct alignment displayed oddly in IE 6/7.
 */
/* line 416, ../../sass/src/_normalize.scss */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
  *margin-left: -7px;
  /* 3 */
  /* LTR */
}

/**
 * 1. Correct font family not being inherited in all browsers.
 * 2. Correct font size not being inherited in all browsers.
 * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
 * 4. Improve appearance and consistency with IE 6/7.
 * 5. Keep form elements constrained in their containers.
 */
/* line 431, ../../sass/src/_normalize.scss */
button,
input,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 2 */
  margin: 0;
  /* 3 */
  vertical-align: baseline;
  /* 4 */
  *vertical-align: middle;
  /* 4 */
  max-width: 100%;
  /* 5 */
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* 5 */
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
/* line 450, ../../sass/src/_normalize.scss */
button,
input {
  line-height: normal;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
/* line 461, ../../sass/src/_normalize.scss */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 * 4. Remove inner spacing in IE 7 without affecting normal text inputs.
 *    Known issue: inner spacing remains in IE 6.
 */
/* line 475, ../../sass/src/_normalize.scss */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
  *overflow: visible;
  /* 4 */
}

/**
 * Re-set default cursor for disabled elements.
 */
/* line 489, ../../sass/src/_normalize.scss */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * 1. Address box sizing set to `content-box` in IE 8/9.
 * 2. Remove excess padding in IE 8/9.
 * 3. Remove excess padding in IE 7.
 *    Known issue: excess padding remains in IE 6.
 */
/* line 500, ../../sass/src/_normalize.scss */
input[type="checkbox"],
input[type="radio"] {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
  *height: 13px;
  /* 3 */
  *width: 13px;
  /* 3 */
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
/* line 515, ../../sass/src/_normalize.scss */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  /* 2 */
}

/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
/* line 524, ../../sass/src/_normalize.scss */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/* Remove inner padding and border in Firefox 4+. */
/* line 530, ../../sass/src/_normalize.scss */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * 1. Remove default vertical scrollbar in IE 8/9.
 * 2. Improve readability and alignment in all browsers.
 */
/* line 540, ../../sass/src/_normalize.scss */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
  display: inline-block;
  resize: vertical;
}

/* Drupal-style form labels. */
/* line 548, ../../sass/src/_normalize.scss */
label {
  display: inline-block;
  font-weight: bold;
}

/**
 * Tables
 */
/* line 556, ../../sass/src/_normalize.scss */
table {
  /* Remove most spacing between table cells. */
  border-collapse: collapse;
  border-spacing: 0;
  /* Prevent cramped-looking tables */
  /* width: 100%; */
  /* Add vertical rhythm margins. */
}

/* @deprecated 20170128 - use clearfix instead */
/* line 572, ../../sass/src/_normalize.scss */
.clearfix {
  clear: both;
}

/* Layout rules */
/* Component (SMACSS module) rules */
/**
 *
 * SCSS for CakePHP - Rigpa app - CakePHP specific styles (used for debugging etc...)
 *
 * CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
 * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
 *
 * Licensed under The MIT License
 * For full copyright and license information, please see the LICENSE.txt
 * Redistributions of files must retain the above copyright notice.
 *
 * @copyright     Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
 * @link          http://cakephp.org CakePHP(tm) Project
 * @package       app.webroot.css
 * @since         CakePHP(tm)
 * @license       MIT License (http://www.opensource.org/licenses/mit-license.php)
 */
/* SQL log */
/* line 21, ../../sass/src/_cake.scss */
.cake-sql-log {
  background: #fff;
}

/* line 24, ../../sass/src/_cake.scss */
.cake-sql-log td {
  padding: 4px 8px;
  text-align: left;
  font-family: Monaco, Consolas, "Courier New", monospaced;
}

/* line 29, ../../sass/src/_cake.scss */
.cake-sql-log caption {
  color: #fff;
}

/** Paging **/
/* line 34, ../../sass/src/_cake.scss */
.paging {
  color: #222222;
  margin-top: 1em;
  clear: both;
  text-align: center;
}

/* line 40, ../../sass/src/_cake.scss */
.paging .current,
.paging .disabled,
.paging a {
  text-decoration: none;
  padding: 5px 8px;
  display: inline-block;
}

/* line 47, ../../sass/src/_cake.scss */
.paging > span {
  display: inline-block;
  border: 1px solid #ccc;
  border-left: 0;
}

/* line 52, ../../sass/src/_cake.scss */
.paging > span:hover {
  background: #efefef;
}

/* line 55, ../../sass/src/_cake.scss */
.paging .first {
  border-left: 1px solid #ccc;
  -moz-border-radius: 4px 0 0 4px;
  -webkit-border-radius: 4px 0 0 4px;
  border-radius: 4px 0 0 4px;
}

/* line 61, ../../sass/src/_cake.scss */
.paging .prev.disabled {
  border-left: 1px solid #ccc;
  -moz-border-radius: 4px 0 0 4px;
  -webkit-border-radius: 4px 0 0 4px;
  border-radius: 4px 0 0 4px;
}

/* line 67, ../../sass/src/_cake.scss */
.paging .next.disabled {
  -moz-border-radius: 0 4px 4px 0;
  -webkit-border-radius: 0 4px 4px 0;
  border-radius: 0 4px 4px 0;
}

/* line 72, ../../sass/src/_cake.scss */
.paging .last {
  -moz-border-radius: 0 4px 4px 0;
  -webkit-border-radius: 0 4px 4px 0;
  border-radius: 0 4px 4px 0;
}

/* line 77, ../../sass/src/_cake.scss */
.paging .disabled {
  color: #ddd;
}

/* line 80, ../../sass/src/_cake.scss */
.paging .disabled:hover {
  background: transparent;
}

/* line 83, ../../sass/src/_cake.scss */
.paging .current {
  background: #efefef;
  color: #c73e14;
}

/** Scaffold View **/
/* line 89, ../../sass/src/_cake.scss */
dl {
  line-height: 2em;
  margin: 0em 0em;
  width: 90%;
}

/* line 94, ../../sass/src/_cake.scss */
dl dd:nth-child(4n+2),
dl dt:nth-child(4n+1) {
  background: #f4f4f4;
}

/* line 99, ../../sass/src/_cake.scss */
dt {
  font-weight: bold;
  padding-left: 4px;
  vertical-align: top;
  width: 14em;
}

/* line 105, ../../sass/src/_cake.scss */
dd {
  margin-left: 14em;
  margin-top: -2em;
  vertical-align: top;
}

/* line 111, ../../sass/src/_cake.scss */
.success,
.message,
.cake-error,
.cake-debug,
.notice,
p.error {
  background: #ffcc00;
  background-repeat: repeat-x;
  background-image: -moz-linear-gradient(top, #ffcc00, #E6B800);
  background-image: -ms-linear-gradient(top, #ffcc00, #E6B800);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ffcc00), to(#E6B800));
  background-image: -webkit-linear-gradient(top, #ffcc00, #E6B800);
  background-image: -o-linear-gradient(top, #ffcc00, #E6B800);
  background-image: linear-gradient(to bottom, #ffcc00, #e6b800);
  border: 1px solid rgba(0, 0, 0, 0.2);
  margin-bottom: 18px;
  padding: 5px 10px;
  color: #404040;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
  -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

/* line 139, ../../sass/src/_cake.scss */
.success,
.message,
.cake-error,
p.error {
  clear: both;
  color: #fff;
  background: #c43c35;
  border: 1px solid rgba(0, 0, 0, 0.5);
  background-repeat: repeat-x;
  background-image: -moz-linear-gradient(top, #ee5f5b, #c43c35);
  background-image: -ms-linear-gradient(top, #ee5f5b, #c43c35);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ee5f5b), to(#c43c35));
  background-image: -webkit-linear-gradient(top, #ee5f5b, #c43c35);
  background-image: -o-linear-gradient(top, #ee5f5b, #c43c35);
  background-image: linear-gradient(to bottom, #ee5f5b, #c43c35);
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.3);
}

/* line 157, ../../sass/src/_cake.scss */
.success {
  clear: both;
  color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.5);
  background: #3B8230;
  background-repeat: repeat-x;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#76BF6B), to(#3B8230));
  background-image: -webkit-linear-gradient(top, #76BF6B, #3B8230);
  background-image: -moz-linear-gradient(top, #76BF6B, #3B8230);
  background-image: -ms-linear-gradient(top, #76BF6B, #3B8230);
  background-image: -o-linear-gradient(top, #76BF6B, #3B8230);
  background-image: linear-gradient(to bottom, #76bf6b, #3b8230);
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.3);
}

/* line 171, ../../sass/src/_cake.scss */
p.error {
  font-family: Monaco, Consolas, Courier, monospace;
  font-size: 120%;
  padding: 0.8em;
  margin: 1em 0;
}

/* line 177, ../../sass/src/_cake.scss */
p.error em {
  font-weight: normal;
  line-height: 140%;
}

/* line 181, ../../sass/src/_cake.scss */
.notice {
  color: #000;
  display: block;
  font-size: 120%;
  padding: 0.8em;
  margin: 1em 0;
}

/* line 188, ../../sass/src/_cake.scss */
.success {
  color: #fff;
}

/** Debugging **/
/* line 193, ../../sass/src/_cake.scss */
pre {
  color: #000;
  padding: 5px;
  border: thin solid #DFDFDF;
  line-height: 1.3em;
}

/* line 199, ../../sass/src/_cake.scss */
.cake-debug-output {
  padding: 0;
  position: relative;
}

/* line 203, ../../sass/src/_cake.scss */
.cake-debug-output > span {
  position: absolute;
  top: 5px;
  right: 5px;
  background: rgba(255, 255, 255, 0.3);
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  padding: 5px 6px;
  color: #000;
  display: block;
  float: left;
  -moz-box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.25), 0 1px 0 rgba(255, 255, 255, 0.5);
  -webkit-box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.25), 0 1px 0 rgba(255, 255, 255, 0.5);
  box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.25), 0 1px 0 rgba(255, 255, 255, 0.5);
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.8);
}

/* line 220, ../../sass/src/_cake.scss */
.cake-debug,
.cake-error {
  font-size: 16px;
  line-height: 20px;
  clear: both;
}

/* line 226, ../../sass/src/_cake.scss */
.cake-error > a {
  text-shadow: none;
}

/* line 229, ../../sass/src/_cake.scss */
.cake-error {
  white-space: normal;
}

/* line 232, ../../sass/src/_cake.scss */
.cake-stack-trace {
  background: rgba(255, 255, 255, 0.7);
  color: #333;
  margin: 10px 0 5px 0;
  padding: 10px 10px 0 10px;
  font-size: 120%;
  line-height: 140%;
  overflow: auto;
  position: relative;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
}

/* line 245, ../../sass/src/_cake.scss */
.cake-stack-trace a {
  text-shadow: none;
  background: rgba(255, 255, 255, 0.7);
  padding: 5px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  margin: 0px 4px 10px 2px;
  font-family: sans-serif;
  font-size: 14px;
  line-height: 14px;
  display: inline-block;
  text-decoration: none;
  -moz-box-shadow: inset 0px 1px 0 rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: inset 0px 1px 0 rgba(0, 0, 0, 0.3);
  box-shadow: inset 0px 1px 0 rgba(0, 0, 0, 0.3);
}

/* line 262, ../../sass/src/_cake.scss */
.cake-code-dump pre {
  position: relative;
  overflow: auto;
}

/* line 266, ../../sass/src/_cake.scss */
.cake-context {
  margin-bottom: 10px;
}

/* line 269, ../../sass/src/_cake.scss */
.cake-stack-trace pre {
  color: #000;
  background-color: #F0F0F0;
  margin: 0px 0 10px 0;
  padding: 1em;
  overflow: auto;
  text-shadow: none;
}

/* line 277, ../../sass/src/_cake.scss */
.cake-stack-trace li {
  padding: 10px 5px 0px;
  margin: 0 0 4px 0;
  font-family: monospace;
  border: 1px solid #bbb;
  -moz-border-radius: 4px;
  -wekbkit-border-radius: 4px;
  border-radius: 4px;
  background: #dcdcdc;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fefefe), to(#dcdcdc));
  background-image: -webkit-linear-gradient(top, #fefefe, #dcdcdc);
  background-image: -moz-linear-gradient(top, #fefefe, #dcdcdc);
  background-image: -ms-linear-gradient(top, #fefefe, #dcdcdc);
  background-image: -o-linear-gradient(top, #fefefe, #dcdcdc);
  background-image: linear-gradient(to bottom, #fefefe, #dcdcdc);
}

/* excerpt */
/* line 294, ../../sass/src/_cake.scss */
.cake-code-dump pre,
.cake-code-dump pre code {
  clear: both;
  font-size: 12px;
  line-height: 15px;
  margin: 4px 2px;
  padding: 4px;
  overflow: auto;
}

/* line 303, ../../sass/src/_cake.scss */
.cake-code-dump .code-highlight {
  display: block;
  background-color: rgba(255, 255, 0, 0.5);
}

/* line 307, ../../sass/src/_cake.scss */
.code-coverage-results div.code-line {
  padding-left: 5px;
  display: block;
  margin-left: 10px;
}

/* line 312, ../../sass/src/_cake.scss */
.code-coverage-results div.uncovered span.content {
  background: #ecc;
}

/* line 315, ../../sass/src/_cake.scss */
.code-coverage-results div.covered span.content {
  background: #cec;
}

/* line 318, ../../sass/src/_cake.scss */
.code-coverage-results div.ignored span.content {
  color: #aaa;
}

/* line 321, ../../sass/src/_cake.scss */
.code-coverage-results span.line-num {
  color: #666;
  display: block;
  float: left;
  width: 20px;
  text-align: right;
  margin-right: 5px;
}

/* line 329, ../../sass/src/_cake.scss */
.code-coverage-results span.line-num strong {
  color: #666;
}

/* line 332, ../../sass/src/_cake.scss */
.code-coverage-results div.start {
  border: 1px solid #aaa;
  border-bottom-width: 0px;
  margin-top: 30px;
  padding-top: 5px;
}

/* line 338, ../../sass/src/_cake.scss */
.code-coverage-results div.end {
  border: 1px solid #aaa;
  border-top-width: 0px;
  margin-bottom: 30px;
  padding-bottom: 5px;
}

/* line 344, ../../sass/src/_cake.scss */
.code-coverage-results div.realstart {
  margin-top: 0px;
}

/* line 347, ../../sass/src/_cake.scss */
.code-coverage-results p.note {
  color: #bbb;
  padding: 5px;
  margin: 5px 0 10px;
  font-size: 10px;
}

/* line 353, ../../sass/src/_cake.scss */
.code-coverage-results span.result-bad {
  color: #a00;
}

/* line 356, ../../sass/src/_cake.scss */
.code-coverage-results span.result-ok {
  color: #fa0;
}

/* line 359, ../../sass/src/_cake.scss */
.code-coverage-results span.result-good {
  color: #0a0;
}

/* To debug CSS styles */
/* line 364, ../../sass/src/_cake.scss */
.red {
  background-color: red;
}

/** Elements **/
/* line 368, ../../sass/src/_cake.scss */
#url-rewriting-warning {
  display: none;
}

/**
 * Color definitions
 */
/* line 177, ../../sass/src/_init.scss */
.clearfix:before, .clearfix:after {
  content: " ";
  display: table;
}
/* line 182, ../../sass/src/_init.scss */
.clearfix:after {
  clear: both;
}

/* apply a natural box layout model to all elements, but allowing components to change */
/* line 188, ../../sass/src/_init.scss */
html {
  box-sizing: border-box;
}

/* line 191, ../../sass/src/_init.scss */
*, *:before, *:after {
  box-sizing: inherit;
}

/**
 * Collection of media queries
 */
/**
 *
 * Main stylesheet
 *
 * All responsive features disabled @@DS20170213
 */
/** Layout **/
/* line 13, ../../sass/src/_backend.scss */
header#default-header {
  min-width: 768px;
  background: #3d3d3d;
  color: white;
  z-index: 10;
}
@media only screen and (min-width: 768px) {
  /* line 13, ../../sass/src/_backend.scss */
  header#default-header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 103px;
  }
}
/* line 29, ../../sass/src/_backend.scss */
header#default-header h1 {
  display: inline;
  font-size: 1.5em;
  font-weight: 300;
  margin: 0;
  line-height: 63px;
}
@media only screen and (max-width: 410px) {
  /* line 29, ../../sass/src/_backend.scss */
  header#default-header h1 {
    line-height: 3.6em;
    font-size: 1.2em;
    width: 230px;
    overflow-x: hidden;
  }
}
@media only screen and (max-width: 340px) {
  /* line 29, ../../sass/src/_backend.scss */
  header#default-header h1 {
    line-height: 4em;
    font-size: 1em;
  }
}
/* line 47, ../../sass/src/_backend.scss */
header#default-header div.row > a {
  color: white;
}
/* line 49, ../../sass/src/_backend.scss */
header#default-header div.row > a:hover {
  text-decoration: none;
}
/* line 53, ../../sass/src/_backend.scss */
header#default-header #language-switch {
  padding-top: 5px;
}
/* line 56, ../../sass/src/_backend.scss */
header#default-header .navbar-toggle {
  margin-top: 16px;
  margin-right: 15px;
}
/* line 60, ../../sass/src/_backend.scss */
header#default-header span.system-name {
  position: absolute;
  top: 42px;
  left: 71px;
  color: red;
  font-weight: bold;
}

/* line 70, ../../sass/src/_backend.scss */
.header-title {
  white-space: nowrap;
  float: left;
}
/* line 73, ../../sass/src/_backend.scss */
.header-title:before {
  content: " ";
  background: url('/images/rigpa_logo.png?1448198382') no-repeat;
  background-size: contain;
  width: 50px;
  height: 50px;
  margin: 7px 10px;
  float: left;
}

/* line 84, ../../sass/src/_backend.scss */
#user-login-info {
  display: block;
}
/* line 86, ../../sass/src/_backend.scss */
#user-login-info > div {
  float: right;
  margin: 18px 10px 0 0;
}
/* line 90, ../../sass/src/_backend.scss */
#user-login-info .user-details {
  padding-top: 5px;
  color: rgba(255, 255, 255, 0.7);
}
/* line 101, ../../sass/src/_backend.scss */
#user-login-info .user-details a {
  color: white;
  font-weight: 300;
}
/* line 104, ../../sass/src/_backend.scss */
#user-login-info .user-details a:hover {
  text-decoration: underline;
}
/* line 109, ../../sass/src/_backend.scss */
#user-login-info #language-switch select {
  float: none;
  margin: 0;
}

/* line 116, ../../sass/src/_backend.scss */
#navigation-top {
  width: 100%;
  background-color: #d2a50e;
  font-size: 20px;
  padding: 0 16px;
}
/* line 120, ../../sass/src/_backend.scss */
#navigation-top a:link {
  font-weight: normal;
}

/* line 126, ../../sass/src/_backend.scss */
#container {
  width: 100%;
  background: #fff;
  color: #333;
  padding: 12px 12px 24px 12px;
  position: relative;
  min-width: 768px;
}

/** containers **/
/* line 139, ../../sass/src/_backend.scss */
div.index,
div.add,
div.view {
  position: relative;
  /* Drilldown */
  /*noinspection SassScssResolvedByNameOnly*/
}
/* line 145, ../../sass/src/_backend.scss */
div.index > table th a.asc:after,
div.add > table th a.asc:after,
div.view > table th a.asc:after {
  content: ' ⇡';
}
/* line 148, ../../sass/src/_backend.scss */
div.index > table th a.desc:after,
div.add > table th a.desc:after,
div.view > table th a.desc:after {
  content: ' ⇣';
}
/* line 155, ../../sass/src/_backend.scss */
div.index table.drilldown,
div.add table.drilldown,
div.view table.drilldown {
  /*noinspection SassScssResolvedByNameOnly*/
  clear: both;
  width: 100%;
  border: 1px solid #DFDFDF;
  border-left: none;
  border-right: none;
}
/* line 209, ../../sass/src/_init.scss */
div.index table.drilldown th,
div.add table.drilldown th,
div.view table.drilldown th {
  border: 0;
  text-align: left;
  padding: 4px 4px;
  vertical-align: bottom;
  white-space: nowrap;
}
/* line 216, ../../sass/src/_init.scss */
div.index table.drilldown td,
div.add table.drilldown td,
div.view table.drilldown td {
  padding: 4px 4px;
  text-align: left;
}
/* line 220, ../../sass/src/_init.scss */
div.index table.drilldown td.actions,
div.add table.drilldown td.actions,
div.view table.drilldown td.actions {
  text-align: right;
}
/* line 228, ../../sass/src/_init.scss */
div.index table.drilldown tr,
div.add table.drilldown tr,
div.view table.drilldown tr {
  border-top: 1px solid #DADADA;
  border-bottom: 1px solid #DADADA;
}
/* line 232, ../../sass/src/_init.scss */
div.index table.drilldown tr:nth-child(even),
div.add table.drilldown tr:nth-child(even),
div.view table.drilldown tr:nth-child(even) {
  background-color: rgba(0, 0, 0, 0.05);
}
/* line 235, ../../sass/src/_init.scss */
div.index table.drilldown tr.index:hover,
div.add table.drilldown tr.index:hover,
div.view table.drilldown tr.index:hover {
  border: 1px solid #d2a50e;
}
/* line 237, ../../sass/src/_init.scss */
div.index table.drilldown tr.index:hover td,
div.add table.drilldown tr.index:hover td,
div.view table.drilldown tr.index:hover td {
  border-top: 1px solid #d2a50e;
  border-bottom: 1px solid #d2a50e;
}
/* line 242, ../../sass/src/_init.scss */
div.index table.drilldown th,
div.add table.drilldown th,
div.view table.drilldown th {
  border-bottom: 1px solid #333333;
  background-color: #EBEBEB;
}
/* line 161, ../../sass/src/_backend.scss */
div.index table.drilldown th,
div.add table.drilldown th,
div.view table.drilldown th {
  background-color: #EBEBEB;
}
/* line 164, ../../sass/src/_backend.scss */
div.index table.drilldown tbody > tr,
div.add table.drilldown tbody > tr,
div.view table.drilldown tbody > tr {
  cursor: pointer;
}
/* line 165, ../../sass/src/_backend.scss */
div.index table.drilldown tbody > tr.drill-parent,
div.add table.drilldown tbody > tr.drill-parent,
div.view table.drilldown tbody > tr.drill-parent {
  background-color: #FFC56E;
}
/* line 169, ../../sass/src/_backend.scss */
div.index table.drilldown tbody > tr td,
div.add table.drilldown tbody > tr td,
div.view table.drilldown tbody > tr td {
  vertical-align: middle;
}
/* line 171, ../../sass/src/_backend.scss */
div.index table.drilldown tbody > tr td table,
div.add table.drilldown tbody > tr td table,
div.view table.drilldown tbody > tr td table {
  width: 100%;
}
/* line 175, ../../sass/src/_backend.scss */
div.index table.drilldown tbody > tr td.drill,
div.add table.drilldown tbody > tr td.drill,
div.view table.drilldown tbody > tr td.drill {
  background: transparent url('/images/accordion_collapsed01.png?1448198382') no-repeat scroll center center;
}
/* line 178, ../../sass/src/_backend.scss */
div.index table.drilldown tbody > tr.drilled td.drill,
div.add table.drilldown tbody > tr.drilled td.drill,
div.view table.drilldown tbody > tr.drilled td.drill {
  background: transparent url('/images/accordion_expanded01.png?1448198382') no-repeat scroll center center;
  background-size: 11px 11px;
}
/* line 182, ../../sass/src/_backend.scss */
div.index table.drilldown tbody > tr.drill-child,
div.add table.drilldown tbody > tr.drill-child,
div.view table.drilldown tbody > tr.drill-child {
  border: thin none;
  background-color: white;
}
/* line 185, ../../sass/src/_backend.scss */
div.index table.drilldown tbody > tr.drill-child:not(:last-child) table,
div.add table.drilldown tbody > tr.drill-child:not(:last-child) table,
div.view table.drilldown tbody > tr.drill-child:not(:last-child) table {
  margin-bottom: 1em;
}
/* line 188, ../../sass/src/_backend.scss */
div.index table.drilldown tbody > tr.drill-child table th.actions,
div.add table.drilldown tbody > tr.drill-child table th.actions,
div.view table.drilldown tbody > tr.drill-child table th.actions {
  text-align: right;
}
/* line 193, ../../sass/src/_backend.scss */
div.index table.drilldown tr.drill-child > td,
div.add table.drilldown tr.drill-child > td,
div.view table.drilldown tr.drill-child > td {
  padding: 0;
  /*
  padding-bottom: 0.5em;
  */
}
/* line 200, ../../sass/src/_backend.scss */
div.index table.drilldown tr.drill-child > td div.wrapper,
div.add table.drilldown tr.drill-child > td div.wrapper,
div.view table.drilldown tr.drill-child > td div.wrapper {
  position: relative;
  /*
  padding: 0.75em 0.75em 0.25em 2em;
  */
}

/* line 210, ../../sass/src/_backend.scss */
table.rows {
  clear: both;
  width: 100%;
  border: 1px solid #DFDFDF;
}
/* line 209, ../../sass/src/_init.scss */
table.rows th {
  border: 0;
  text-align: left;
  padding: 4px 4px;
  vertical-align: bottom;
  white-space: nowrap;
}
/* line 216, ../../sass/src/_init.scss */
table.rows td {
  padding: 4px 4px;
  text-align: left;
}
/* line 220, ../../sass/src/_init.scss */
table.rows td.actions {
  text-align: right;
}
/* line 228, ../../sass/src/_init.scss */
table.rows tr {
  border-top: 1px solid #DADADA;
  border-bottom: 1px solid #DADADA;
}
/* line 232, ../../sass/src/_init.scss */
table.rows tr:nth-child(even) {
  background-color: rgba(0, 0, 0, 0.05);
}
/* line 235, ../../sass/src/_init.scss */
table.rows tr.index:hover {
  border: 1px solid #d2a50e;
}
/* line 237, ../../sass/src/_init.scss */
table.rows tr.index:hover td {
  border-top: 1px solid #d2a50e;
  border-bottom: 1px solid #d2a50e;
}
/* line 242, ../../sass/src/_init.scss */
table.rows th {
  border-bottom: 1px solid #333333;
  background-color: #EBEBEB;
}
/* line 213, ../../sass/src/_backend.scss */
table.rows tr.index.row-hover:hover {
  cursor: pointer;
}

/** Forms **/
/* line 219, ../../sass/src/_backend.scss */
form {
  clear: both;
}

/* line 222, ../../sass/src/_backend.scss */
fieldset {
  border-width: 0.07em;
}

/* line 225, ../../sass/src/_backend.scss */
fieldset legend {
  color: #2C6877;
}

/* line 228, ../../sass/src/_backend.scss */
fieldset fieldset {
  margin-top: 0;
  padding: 10px 0 0;
}

/* line 232, ../../sass/src/_backend.scss */
fieldset fieldset div {
  clear: left;
  margin: 0 20px;
}

/* line 237, ../../sass/src/_backend.scss */
form div.input {
  clear: both;
  padding: 2px 0;
  vertical-align: middle;
  line-height: 1.9em;
  overflow: hidden;
}
/* line 244, ../../sass/src/_backend.scss */
form .input {
  color: #444;
}
/* line 247, ../../sass/src/_backend.scss */
form .required label:after {
  color: #e32;
  content: '*';
  display: inline;
}
/* line 252, ../../sass/src/_backend.scss */
form div.input.cancel {
  clear: none;
  float: left;
}

/* line 257, ../../sass/src/_backend.scss */
.radio-label,
label {
  font-weight: bold;
  width: 162px;
  float: left;
  text-align: right;
  padding-right: 12px;
  vertical-align: top;
}

/* line 261, ../../sass/src/_backend.scss */
div.input textarea {
  float: left;
}

/* line 264, ../../sass/src/_backend.scss */
a.ui-selectmenu,
input,
textarea,
select {
  float: left;
  outline: none;
  padding: 0 3px;
  margin: 2px 5px 0 0;
  background-color: white;
  border: 1px solid #DDDDDD;
}
/* line 274, ../../sass/src/_backend.scss */
a.ui-selectmenu:focus,
input:focus,
textarea:focus,
select:focus {
  border: 1px solid #d2a50e;
}

/* line 278, ../../sass/src/_backend.scss */
select.selectmenu {
  display: none;
}

/* line 281, ../../sass/src/_backend.scss */
.textarea div.cke {
  float: left;
  margin-bottom: 0.5em;
}

/* line 286, ../../sass/src/_backend.scss */
select[multiple=multiple] {
  width: 100%;
}

/* line 289, ../../sass/src/_backend.scss */
option {
  font-size: 1em;
  padding: 0 3px;
}

/* line 293, ../../sass/src/_backend.scss */
input[type=checkbox] {
  margin: 6px 3px;
}

/* line 296, ../../sass/src/_backend.scss */
input[type=radio] {
  float: left;
  margin: 0.6em 0 0 0;
}

/* line 300, ../../sass/src/_backend.scss */
.radio label {
  margin: 0 0 0 1em;
}

/* line 304, ../../sass/src/_backend.scss */
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* line 309, ../../sass/src/_backend.scss */
input[type=number] {
  -moz-appearance: none;
}

/* line 313, ../../sass/src/_backend.scss */
div.submit {
  float: right;
}

/* line 317, ../../sass/src/_backend.scss */
.buttons a.button {
  display: inline-block;
  font-weight: normal;
  cursor: pointer;
  margin-left: 1.2em;
  padding: 4px 1em;
  color: #ffffff;
}

/* line 326, ../../sass/src/_backend.scss */
.buttons.after-input {
  display: inline-block;
  float: right;
}

/* line 331, ../../sass/src/_backend.scss */
#logout-button {
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzgwODA4MCIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzRjNGM0YyIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #808080), color-stop(100%, #4c4c4c));
  background-image: -moz-linear-gradient(#808080, #4c4c4c);
  background-image: -webkit-linear-gradient(#808080, #4c4c4c);
  background-image: linear-gradient(#808080, #4c4c4c);
  border: 1px solid #767676;
  border-radius: 20px;
  margin-left: 0;
}
/* line 252, ../../sass/src/_init.scss */
#logout-button:hover {
  background: #606060;
}

/* line 335, ../../sass/src/_backend.scss */
#dialog-submit-link,
#default-button {
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2Y1YzAwZiIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2QyYTUwZSIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f5c00f), color-stop(100%, #d2a50e));
  background-image: -moz-linear-gradient(#f5c00f, #d2a50e);
  background-image: -webkit-linear-gradient(#f5c00f, #d2a50e);
  background-image: linear-gradient(#f5c00f, #d2a50e);
  border: 1px solid #e6b30a;
  border-radius: 20px;
}
/* line 252, ../../sass/src/_init.scss */
#dialog-submit-link:hover,
#default-button:hover {
  background: #f0be19;
}

/* line 339, ../../sass/src/_backend.scss */
#dialog-cancel-close,
#confirm-cancel,
#dialog-cancel-cancel {
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2RiZGJkYiIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2EzYTNhMyIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dbdbdb), color-stop(100%, #a3a3a3));
  background-image: -moz-linear-gradient(#dbdbdb, #a3a3a3);
  background-image: -webkit-linear-gradient(#dbdbdb, #a3a3a3);
  background-image: linear-gradient(#dbdbdb, #a3a3a3);
  border: 1px solid #d1d1d1;
  border-radius: 20px;
}
/* line 252, ../../sass/src/_init.scss */
#dialog-cancel-close:hover,
#confirm-cancel:hover,
#dialog-cancel-cancel:hover {
  background: #b7b7b7;
}

/* line 344, ../../sass/src/_backend.scss */
#dialog-submit-enter,
#dialog-submit-save,
#dialog-submit-continue,
#confirm-continue {
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzc2YmY2YiIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzNiODIzMCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #76bf6b), color-stop(100%, #3b8230));
  background-image: -moz-linear-gradient(#76bf6b, #3b8230);
  background-image: -webkit-linear-gradient(#76bf6b, #3b8230);
  background-image: linear-gradient(#76bf6b, #3b8230);
  border: 1px solid #69b95d;
  border-radius: 20px;
}
/* line 252, ../../sass/src/_init.scss */
#dialog-submit-enter:hover,
#dialog-submit-save:hover,
#dialog-submit-continue:hover,
#confirm-continue:hover {
  background: #49a03b;
}

/* line 350, ../../sass/src/_backend.scss */
#dialog-link-clear,
#dialog-link-delete {
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmYWQzMyIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2NjN2EwMCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffad33), color-stop(100%, #cc7a00));
  background-image: -moz-linear-gradient(#ffad33, #cc7a00);
  background-image: -webkit-linear-gradient(#ffad33, #cc7a00);
  background-image: linear-gradient(#ffad33, #cc7a00);
  border: 1px solid #ffa51f;
  border-radius: 20px;
}
/* line 252, ../../sass/src/_init.scss */
#dialog-link-clear:hover,
#dialog-link-delete:hover {
  background: #f59200;
}

/* Form errors */
/* line 356, ../../sass/src/_backend.scss */
form .error {
  background: #FFC2C2 !important;
  font-weight: normal;
}

/* line 360, ../../sass/src/_backend.scss */
form .error.warning {
  background-color: #FCCF81 !important;
}

/* line 363, ../../sass/src/_backend.scss */
form .error-message {
  float: right;
  padding-top: 2px;
  padding-right: 0.5em;
  color: #EC1E1E;
  clear: both;
}

/** Notices and Errors **/
/* line 372, ../../sass/src/_backend.scss */
#flashMessage {
  position: absolute;
  top: -33px;
  right: 10%;
  z-index: 50;
  text-align: right;
}

/* line 379, ../../sass/src/_backend.scss */
.dialog.special #flashMessage {
  position: static;
  background: none;
  text-shadow: none;
  color: red;
  border: none;
  text-align: center;
}

/* line 387, ../../sass/src/_backend.scss */
.message {
  clear: both;
  color: #fff;
  font-size: 120%;
  margin: 0 0 1em 0;
  padding: 5px;
}

/**  Actions  **/
/* line 396, ../../sass/src/_backend.scss */
.actions {
  white-space: nowrap;
}

/* line 399, ../../sass/src/_backend.scss */
.actions > ul {
  margin: 0;
  padding: 0;
}

/* line 403, ../../sass/src/_backend.scss */
.actions > ul li {
  margin: 0 0 0.5em 0;
  list-style-type: none;
  padding: 0 0 0 0.8em;
}

/* Buttons and button links */
/* line 409, ../../sass/src/_backend.scss */
.actions > a.button,
.actions > * > a.button,
.actions input[type="submit"] {
  box-sizing: border-box;
  display: inline-block;
  margin: 1px 1px 1px 8px;
  color: #333;
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZlZmVmZSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2RjZGNkYyIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #fefefe), color-stop(100%, #dcdcdc));
  background-image: -moz-linear-gradient(#fefefe, #dcdcdc);
  background-image: -webkit-linear-gradient(#fefefe, #dcdcdc);
  background-image: linear-gradient(#fefefe, #dcdcdc);
  border: 1px solid #bbb;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  min-width: 0;
  -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0px 1px 1px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0px 1px 1px rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0px 1px 1px rgba(0, 0, 0, 0.2);
  -webkit-user-select: none;
  user-select: none;
  font-weight: normal;
  text-decoration: none;
  text-shadow: #fff 0 1px 0;
  white-space: nowrap;
  padding: 2px 12px;
}
/* line 429, ../../sass/src/_backend.scss */
.actions > a.button:hover,
.actions > * > a.button:hover,
.actions input[type="submit"]:hover {
  background-color: #ededed;
  border-color: #acacac;
  text-decoration: none;
}
/* line 434, ../../sass/src/_backend.scss */
.actions > a.button:active,
.actions > * > a.button:active,
.actions input[type="submit"]:active {
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2RmZGZkZiIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2VlZWVlZSIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dfdfdf), color-stop(100%, #eeeeee));
  background-image: -moz-linear-gradient(#dfdfdf, #eeeeee);
  background-image: -webkit-linear-gradient(#dfdfdf, #eeeeee);
  background-image: linear-gradient(#dfdfdf, #eeeeee);
  -moz-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.3);
  text-shadow: #eee 0 1px 0;
  border-color: #aaa;
  text-decoration: none;
}

/*
 * Global styles
 */
/* line 446, ../../sass/src/_backend.scss */
.language-link {
  float: right;
  margin-right: 0.8em;
}

/* line 450, ../../sass/src/_backend.scss */
td.translation-missing {
  color: red;
}

/* line 454, ../../sass/src/_backend.scss */
.admin-edit {
  padding: 0 5px 0 5px;
  font-size: 0.8em;
  color: grey;
}

/* line 459, ../../sass/src/_backend.scss */
.admin-edit:hover {
  font-size: 0.8em;
  color: black;
}

/* line 463, ../../sass/src/_backend.scss */
#sortable-table {
  box-sizing: content-box;
}

/* line 466, ../../sass/src/_backend.scss */
.sortable-table-space,
tr.sortable-table-space {
  height: 2.8em;
  line-height: 1.6em;
}

/* line 471, ../../sass/src/_backend.scss */
tr.sortable-table-space td {
  background-color: #F2FFE6;
}

/* line 475, ../../sass/src/_backend.scss */
ul.horizontal-menu, ul.text-locale.list, ul.text-locale.tabs {
  list-style: none;
}
/* line 477, ../../sass/src/_backend.scss */
ul.horizontal-menu li, ul.text-locale.list li, ul.text-locale.tabs li {
  float: left;
  height: 100%;
}
/* line 480, ../../sass/src/_backend.scss */
ul.horizontal-menu li a, ul.text-locale.list li a, ul.text-locale.tabs li a {
  padding: 0 1em;
}
/* line 483, ../../sass/src/_backend.scss */
ul.horizontal-menu li.active a, ul.text-locale.list li.active a, ul.text-locale.tabs li.active a {
  color: green;
}

/* line 488, ../../sass/src/_backend.scss */
ul.vertical-menu {
  list-style: none;
}
/* line 490, ../../sass/src/_backend.scss */
ul.vertical-menu li {
  margin: 0 12px;
}
/* line 492, ../../sass/src/_backend.scss */
ul.vertical-menu li.active a {
  color: green;
}

/*
 * Admin UI
 */
/* line 501, ../../sass/src/_backend.scss */
body.user-has-privileges .frame-header {
  background-color: #861111;
}

/* line 504, ../../sass/src/_backend.scss */
.frame-header {
  width: 100%;
  height: 40px;
  position: relative;
  background-color: #d2a50e;
  color: white;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
/* line 512, ../../sass/src/_backend.scss */
.frame-header .actions > a.button {
  margin-left: 24px;
}
/* line 515, ../../sass/src/_backend.scss */
.frame-header div[class^=frame-] {
  float: left;
  vertical-align: middle;
  padding: 5px;
}
/* line 521, ../../sass/src/_backend.scss */
.frame-header div.frame-title {
  font-size: 20px;
  white-space: nowrap;
  padding: 9px 10px;
}
/* line 526, ../../sass/src/_backend.scss */
.frame-header div.frame-extra {
  text-align: left;
  padding-top: 10px;
}
/* line 531, ../../sass/src/_backend.scss */
.frame-header div.frame-filters div.submit {
  clear: none;
  margin-top: 0;
}
/* line 535, ../../sass/src/_backend.scss */
.frame-header div.frame-filters label {
  display: inline;
  width: auto;
  color: white;
  font-weight: normal;
  padding-right: 6px;
}
/* line 542, ../../sass/src/_backend.scss */
.frame-header div.frame-filters div.input {
  display: inline-block;
  padding-bottom: 0;
  margin-right: 14px;
}
/* line 548, ../../sass/src/_backend.scss */
.frame-header .navbar-toggle {
  margin: 10px 10px;
}

/* line 560, ../../sass/src/_backend.scss */
.frame-id {
  font-size: 80%;
}

/* line 563, ../../sass/src/_backend.scss */
.related:not(.list) .frame-header {
  background-color: #bdbdbd !important;
}

/* line 566, ../../sass/src/_backend.scss */
.related .frame-title {
  font-size: 120%;
}

/* line 569, ../../sass/src/_backend.scss */
.related > table {
  background-color: #FFFFFF;
}

/* line 573, ../../sass/src/_backend.scss */
div.frame-data {
  clear: both;
  background-color: #FCFCFC;
  border-collapse: collapse;
  margin-bottom: 0.5em;
}

/* line 579, ../../sass/src/_backend.scss */
table.frame-fieldset {
  margin: 0.25em 1em;
  float: left;
  clear: left;
  width: 46%;
  border: none;
}

/*
 * Accordion widget
 */
/* line 590, ../../sass/src/_backend.scss */
.accordion.handle {
  cursor: pointer;
}

/* line 593, ../../sass/src/_backend.scss */
.accordion.handle::before {
  background: url('/images/accordion_expanded01.png?1448198382') no-repeat scroll left center;
  padding: 2px 16px;
  content: '';
}

/* line 598, ../../sass/src/_backend.scss */
.accordion.handle.collapsed::before {
  background: url('/images/accordion_collapsed01.png?1448198382') no-repeat scroll left center;
}

/* line 602, ../../sass/src/_backend.scss */
div.input.radio label {
  text-align: left;
}

/* line 606, ../../sass/src/_backend.scss */
div.input.radio.required label {
  font-weight: normal;
}

/* line 609, ../../sass/src/_backend.scss */
div.input.radio.required label:after {
  content: '';
}

/* line 612, ../../sass/src/_backend.scss */
div.input.radio fieldset {
  display: block;
  clear: none;
}

/* line 616, ../../sass/src/_backend.scss */
div.input.radio legend {
  display: block;
  font-size: inherit;
  font-weight: bold;
  color: inherit;
  text-align: right;
  padding-right: 0.5em;
  width: 10em;
  /* same as div.input label */
  float: left;
}

/* line 626, ../../sass/src/_backend.scss */
div.input.radio.required legend:after {
  color: #e32;
  content: '*';
  display: inline;
}

/* line 632, ../../sass/src/_backend.scss */
div.input.radio div {
  float: left;
}
/* line 635, ../../sass/src/_backend.scss */
div.input.radio div > ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
/* line 642, ../../sass/src/_backend.scss */
div.input > span a {
  float: left;
}
/* line 645, ../../sass/src/_backend.scss */
div.input .checkbox label {
  text-align: left;
  clear: left;
  float: none;
  width: auto;
}
/* line 651, ../../sass/src/_backend.scss */
div.input .checkbox input {
  float: none;
}

/* line 655, ../../sass/src/_backend.scss */
div.input .checkbox-multiple {
  float: left;
}

/* line 660, ../../sass/src/_backend.scss */
.dynamic-form div.field-help {
  font-size: 0.9em;
  font-weight: 300;
  line-height: 1.2em;
  font-style: italic;
  display: inline-block;
  float: none;
  clear: left;
  padding: 0;
}

/* line 671, ../../sass/src/_backend.scss */
.dynamic-form .cont .field-help {
  width: 100%;
  text-align: right;
  padding-right: 12px;
}

/* line 676, ../../sass/src/_backend.scss */
.dynamic-form .cont .radio-label {
  width: 100%;
  text-align: right;
}

/*
 * To style <input type="file">
 * Currently unused
 */
/* line 685, ../../sass/src/_backend.scss */
div.file-wrapper {
  float: left;
  position: relative;
}
/* line 688, ../../sass/src/_backend.scss */
div.file-wrapper input[type=file] {
  position: relative;
  z-index: 2;
  width: 15em;
  margin-right: 1.5em;
}
/* line 694, ../../sass/src/_backend.scss */
div.file-wrapper .fake-file {
  position: absolute;
  top: 0;
  left: 6.3em;
  z-index: 4;
}
/* line 699, ../../sass/src/_backend.scss */
div.file-wrapper .fake-file input {
  width: 9em;
}

/**
 * view action styling
 */
/* line 708, ../../sass/src/_backend.scss */
table.view {
  clear: both;
  width: 100%;
}
/* line 209, ../../sass/src/_init.scss */
table.view th {
  border: 0;
  text-align: left;
  padding: 4px 4px;
  vertical-align: bottom;
  white-space: nowrap;
}
/* line 216, ../../sass/src/_init.scss */
table.view td {
  padding: 4px 4px;
  text-align: left;
}
/* line 220, ../../sass/src/_init.scss */
table.view td.actions {
  text-align: right;
}
/* line 710, ../../sass/src/_backend.scss */
table.view td.label {
  width: 11em;
  text-align: right;
  font-weight: bold;
  vertical-align: top;
}
/* line 716, ../../sass/src/_backend.scss */
table.view td.field {
  vertical-align: top;
  width: auto;
}
/* line 721, ../../sass/src/_backend.scss */
table.view td.actions {
  width: 5%;
  vertical-align: top;
  text-align: right;
}
/* line 726, ../../sass/src/_backend.scss */
table.view td.separator {
  font-size: 110%;
  color: #2C6877;
  padding: 0.4em 0.25em;
}
/* line 732, ../../sass/src/_backend.scss */
table.view .text-field {
  min-height: 50px;
  max-height: 200px;
  overflow-y: scroll;
  border: thin solid #DFDFDF;
}

/* Administration/backend Interface */
/* Reports */
/* line 744, ../../sass/src/_backend.scss */
.reports.index tr.index.header {
  background-color: #fae9b2;
}

/* line 749, ../../sass/src/_backend.scss */
div.report-tokens h3 {
  margin: 0;
}
/* line 752, ../../sass/src/_backend.scss */
div.report-tokens ul {
  -moz-column-count: 3;
  -moz-column-gap: 10px;
  -webkit-column-count: 3;
  -webkit-column-gap: 10px;
  column-count: 3;
  column-gap: 10px;
  margin: 0;
}
/* line 761, ../../sass/src/_backend.scss */
div.report-tokens li.token {
  font-size: 80%;
  width: 290px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* line 770, ../../sass/src/_backend.scss */
.reportLine div.input.textarea textarea,
div.code {
  font-family: monospace;
  font-size: 14px;
  color: #000;
  padding: 5px;
  border: thin solid #DFDFDF;
}

/* line 778, ../../sass/src/_backend.scss */
td > div.code {
  border: none;
  padding: 0;
  vertical-align: top;
}

/* line 784, ../../sass/src/_backend.scss */
div#busy-display {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 4000;
  opacity: 0.3;
  filter: alpha(opacity=30);
  background: black url('/images/spinner3.gif?1448198382') no-repeat center center;
}

/* line 796, ../../sass/src/_backend.scss */
div#flash-mask {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 5000;
  background: rgba(48, 48, 48, 0.8);
}

/* line 806, ../../sass/src/_backend.scss */
div#flash-popup {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70%;
  min-height: 2em;
  margin-top: -1em;
  margin-left: -35%;
  background-color: #FF9393;
  padding: 1em;
  border: solid 1px #FF0000;
  opacity: 1;
}
/* line 818, ../../sass/src/_backend.scss */
div#flash-popup .flash-message {
  float: left;
  width: 90%;
}
/* line 822, ../../sass/src/_backend.scss */
div#flash-popup .buttons {
  float: right;
}
/* line 825, ../../sass/src/_backend.scss */
div#flash-popup.confirm {
  background-color: #6cd86c;
  border: solid 1px #33cf42;
}
/* line 828, ../../sass/src/_backend.scss */
div#flash-popup.confirm .buttons .button {
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwYWEwMCIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzAwNjQwMCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #00aa00), color-stop(100%, #006400));
  background-image: -moz-linear-gradient(#00aa00, #006400);
  background-image: -webkit-linear-gradient(#00aa00, #006400);
  background-image: linear-gradient(#00aa00, #006400);
  border: 1px solid #009600;
  border-radius: 20px;
}
/* line 252, ../../sass/src/_init.scss */
div#flash-popup.confirm .buttons .button:hover {
  background: #008d00;
}
/* line 830, ../../sass/src/_backend.scss */
div#flash-popup.confirm .buttons .button:hover {
  background: #4B9406;
}
/* line 835, ../../sass/src/_backend.scss */
div#flash-popup.error {
  background-color: #FF9393;
  border: solid 1px #FF0000;
}
/* line 838, ../../sass/src/_backend.scss */
div#flash-popup.error .buttons .button {
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmNDI0MiIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2JkMDAwMCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ff4242), color-stop(100%, #bd0000));
  background-image: -moz-linear-gradient(#ff4242, #bd0000);
  background-image: -webkit-linear-gradient(#ff4242, #bd0000);
  background-image: linear-gradient(#ff4242, #bd0000);
  border: 1px solid #ff2e2e;
  border-radius: 20px;
}
/* line 252, ../../sass/src/_init.scss */
div#flash-popup.error .buttons .button:hover {
  background: #e60000;
}
/* line 840, ../../sass/src/_backend.scss */
div#flash-popup.error .buttons .button:hover {
  background: #F34B4B;
}

/**
 * Rework AI prototype
 */
/* line 851, ../../sass/src/_backend.scss */
ul.horizontal-tabs {
  padding: 0;
  list-style: none;
  margin: 0;
}
/* line 855, ../../sass/src/_backend.scss */
ul.horizontal-tabs li {
  height: 30px;
  display: block;
  overflow: hidden;
  float: left;
  background-color: #d2a50e;
  margin-top: 0.2em;
  margin-left: 1px;
  vertical-align: bottom;
}
/* line 864, ../../sass/src/_backend.scss */
ul.horizontal-tabs li a {
  display: block;
  height: 29px;
  padding: 0.1em 1em;
  color: white;
  font-weight: normal;
  font-size: 105%;
  border: 1px solid #d2a50e;
  border-bottom: none;
}
/* line 874, ../../sass/src/_backend.scss */
ul.horizontal-tabs li.active {
  background-color: #FFFFFF;
}
/* line 877, ../../sass/src/_backend.scss */
ul.horizontal-tabs li:hover {
  background-color: #f5c00f;
}
/* line 879, ../../sass/src/_backend.scss */
ul.horizontal-tabs li:hover a {
  border-color: #f5c00f;
}
/* line 883, ../../sass/src/_backend.scss */
ul.horizontal-tabs li.active a {
  color: #d2a50e;
}

/* line 889, ../../sass/src/_backend.scss */
span.sort-handle {
  display: inline-block;
  margin-left: 8px;
  background: transparent url('/images/sort-dots.png?1488889192') no-repeat left 1px;
  height: 23px;
  width: 20px;
  cursor: ns-resize;
}
/* line 897, ../../sass/src/_backend.scss */
span.sort-handle.disabled {
  cursor: inherit;
}

/**
 * i18n Texts
 */
/* line 905, ../../sass/src/_backend.scss */
td.translations {
  min-width: 132px;
}

/* line 910, ../../sass/src/_backend.scss */
form div.input.i18n {
  padding-bottom: 6px;
}
/* line 912, ../../sass/src/_backend.scss */
form div.input.i18n > div {
  clear: left;
}
/* line 915, ../../sass/src/_backend.scss */
form div.input.i18n label {
  margin-bottom: 4px;
}

/* line 921, ../../sass/src/_backend.scss */
ul.text-locale.list {
  margin: 0;
  padding: 0;
}
/* line 926, ../../sass/src/_backend.scss */
ul.text-locale.tabs {
  margin: 0;
  padding: 0;
}
/* line 931, ../../sass/src/_backend.scss */
ul.text-locale.view {
  float: right;
}
/* line 934, ../../sass/src/_backend.scss */
ul.text-locale.view li, ul.text-locale.list li {
  font-family: monospace;
  font-weight: normal;
  text-align: center;
  margin-right: 3px;
  line-height: 15px;
  color: #4c7a34;
  padding: 0 3px;
}
/* line 943, ../../sass/src/_backend.scss */
ul.text-locale.view li.missing, ul.text-locale.list li.missing {
  color: #aa671d;
}
/* line 947, ../../sass/src/_backend.scss */
ul.text-locale.tabs li {
  cursor: pointer;
  background-color: #fad6a5;
  color: #4c7a34;
  margin: 0 2px 0 0;
  padding: 0 6px;
}
/* line 953, ../../sass/src/_backend.scss */
ul.text-locale.tabs li:hover {
  background-color: #fae0be;
}
/* line 956, ../../sass/src/_backend.scss */
ul.text-locale.tabs li.missing {
  color: #aa671d;
}
/* line 959, ../../sass/src/_backend.scss */
ul.text-locale.tabs li.selected {
  background-color: #faeb77;
}

/* line 965, ../../sass/src/_backend.scss */
span.text-locale.tabs-length {
  font-size: 80%;
  padding-left: 0.5em;
}

/* line 970, ../../sass/src/_backend.scss */
table.view ul.text-locale.list {
  display: block;
  float: right;
}

/*
 * Dialogs
 */
/* line 979, ../../sass/src/_backend.scss */
.ui-dialog {
  padding: 0;
  margin: 10px auto;
}

/* line 984, ../../sass/src/_backend.scss */
.ui-dialog.ui-widget-content {
  border: none;
}

/* line 988, ../../sass/src/_backend.scss */
.ui-widget-overlay {
  background: #303030;
  opacity: .8;
  filter: alpha(opacity=80);
}

/* line 994, ../../sass/src/_backend.scss */
.ui-tooltip {
  line-height: 1.1em;
  border: 2px solid #e6d377;
  opacity: 1;
  padding: 0;
}

/* line 1000, ../../sass/src/_backend.scss */
.ui-tooltip-content {
  border-radius: 5px;
  padding: 0.3em;
  background-color: #FFEB84;
  font-size: 0.8em;
}

/* line 1010, ../../sass/src/_backend.scss */
.ui-widget-header {
  background-color: #d2a50e;
  border: 0;
}

/* line 1014, ../../sass/src/_backend.scss */
.ui-state-default {
  background: url('/images/?1488889192') repeat-x scroll 50% 50% #d2a50e;
  border: 0;
}

/* line 1019, ../../sass/src/_backend.scss */
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus,
.ui-widget .ui-state-hover,
.ui-widget .ui-state-focus {
  background: #f5c00f;
  border: 0;
}

/* line 1030, ../../sass/src/_backend.scss */
.user-has-privileges .ui-widget-header {
  background-color: #861111;
}
/* line 1033, ../../sass/src/_backend.scss */
.user-has-privileges .ui-state-default {
  background-color: #861111;
}
/* line 1036, ../../sass/src/_backend.scss */
.user-has-privileges .ui-widget-header .ui-state-hover,
.user-has-privileges .ui-widget-header .ui-state-focus {
  background: #e11c1c;
}

/* line 1043, ../../sass/src/_backend.scss */
.ui-dialog .ui-dialog-content {
  padding: 0;
  background-image: none;
}

/* line 1047, ../../sass/src/_backend.scss */
.ui-dialog .ui-icon {
  left: 48%;
}

/* line 1050, ../../sass/src/_backend.scss */
.ui-corner-all {
  border-radius: 5px;
}

/* line 1053, ../../sass/src/_backend.scss */
img.ui-datepicker-trigger {
  float: left;
}

/* line 1057, ../../sass/src/_backend.scss */
.ui-datepicker {
  margin-top: -125px;
  margin-left: 134px;
}
/* line 1060, ../../sass/src/_backend.scss */
.ui-datepicker.ui-widget-content .ui-state-default, .ui-datepicker > .ui-widget-header {
  background: #ffffee none;
  border: 1px solid #222222;
  color: #222222;
}
/* line 1066, ../../sass/src/_backend.scss */
.ui-datepicker td.ui-datepicker-today a {
  background-color: #ccffcc !important;
}
/* line 1069, ../../sass/src/_backend.scss */
.ui-datepicker td.ui-datepicker-current-day a {
  background-color: #fae9b2 !important;
}
/* line 1072, ../../sass/src/_backend.scss */
.ui-datepicker .ui-widget-header {
  color: #222222;
  font-weight: normal;
}
/* line 1076, ../../sass/src/_backend.scss */
.ui-datepicker.ui-widget-content {
  background: url('/images/ui-bg_flat_30_cccccc_40x100.png?1448198382') repeat-x scroll 50% 50% #cccccc;
  border: 1px solid #454545;
  color: #454545;
}
/* line 1081, ../../sass/src/_backend.scss */
.ui-datepicker .ui-widget-header .ui-icon {
  background-image: url('/images/ui-icons_454545_256x240.png?1448198382');
}
/* line 1084, ../../sass/src/_backend.scss */
.ui-datepicker tr {
  background-color: inherit;
}
/* line 1087, ../../sass/src/_backend.scss */
.ui-datepicker th, .ui-datepicker td {
  width: 31px;
  padding: 2px;
}
/* line 1091, ../../sass/src/_backend.scss */
.ui-datepicker td a:hover {
  background-color: #f5c00f !important;
}

/* line 1097, ../../sass/src/_backend.scss */
div.dialog.form {
  min-width: 180px;
  padding: 0.8em;
  overflow: hidden;
}

/* line 1105, ../../sass/src/_backend.scss */
.dialog div.required-legend {
  text-align: center;
}

/* line 1109, ../../sass/src/_backend.scss */
.dialog div.buttons {
  padding: 6px 0 0 0;
  text-align: right;
}

/* line 1113, ../../sass/src/_backend.scss */
span.required {
  color: red;
  content: '*';
}

/*
 * cog Dropdown menu
 */
/* line 1121, ../../sass/src/_backend.scss */
.cog-buttonset {
  position: relative;
  display: inline-block;
}
/* line 1124, ../../sass/src/_backend.scss */
.cog-buttonset > a {
  padding: 2px 5px;
}
/* line 1126, ../../sass/src/_backend.scss */
.cog-buttonset > a:after {
  content: '  ';
  white-space: nowrap;
  background: url('/images/more_icon.png?1448198382') no-repeat scroll left center;
  width: 7px;
  height: 7px;
  display: inline-block;
  margin-left: 0.25em;
}
/* line 1136, ../../sass/src/_backend.scss */
.cog-buttonset ul {
  position: absolute;
  z-index: 20;
  list-style-type: none;
  padding: 0.25em 0;
  background-color: #FCFCFC;
  -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0px 1px 1px rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0px 1px 1px rgba(0, 0, 0, 0.4);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0px 1px 1px rgba(0, 0, 0, 0.4);
  display: none;
  cursor: auto;
}
/* line 1145, ../../sass/src/_backend.scss */
.cog-buttonset ul li {
  display: table-row;
  text-align: left;
}
/* line 1148, ../../sass/src/_backend.scss */
.cog-buttonset ul li a {
  display: table-cell;
  padding: 0 0.25em;
  color: black;
  line-height: 2em;
  font-weight: normal;
  width: 100%;
  min-width: 4em;
  z-index: 25;
}
/* line 1159, ../../sass/src/_backend.scss */
.cog-buttonset ul li.link a:hover {
  background-color: #DFDFDF;
}

/* line 1165, ../../sass/src/_backend.scss */
div.fields-legend li span {
  font-weight: bold;
}

/* line 1169, ../../sass/src/_backend.scss */
div.related {
  margin-bottom: 1em;
}
/* line 1171, ../../sass/src/_backend.scss */
div.related div.empty {
  width: 100%;
  text-align: center;
}

/***********************************************************
 * Application-specific styles
 ***********************************************************/
/**
 * Special access dialog
 */
/* line 1184, ../../sass/src/_backend.scss */
.dialog.users.access.special {
  min-width: 500px;
  text-align: center;
}
/* line 1188, ../../sass/src/_backend.scss */
.dialog.users.access.special .access-form input {
  float: none;
}
/* line 1192, ../../sass/src/_backend.scss */
.dialog.users.access.special #dialog-link-clear {
  float: left;
  margin-right: 30px;
}

/* Warning confirm dialog */
/* line 1199, ../../sass/src/_backend.scss */
div#confirmMask {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 5000;
  background-color: rgba(48, 48, 48, 0.2);
  display: none;
}
/* line 1208, ../../sass/src/_backend.scss */
div#confirmMask div#confirmPopup {
  display: inline-block;
  background-color: #fae9b2;
  border: solid 2px #B99B66;
  padding: 8px;
  overflow: hidden;
}
/* line 1215, ../../sass/src/_backend.scss */
div#confirmMask span#confirmMsg {
  color: #EC1E1E;
}
/* line 1218, ../../sass/src/_backend.scss */
div#confirmMask span.buttons div.submit {
  float: none;
  display: inline-block;
}

/* line 1224, ../../sass/src/_backend.scss */
.help-icon {
  margin: 0 4px;
  padding: 0.1em 0.5em;
  border-radius: 0.4em;
  font-size: 0.6em;
  line-height: 2em;
  color: #444444;
  background-color: #dedede;
}
/* line 1232, ../../sass/src/_backend.scss */
.help-icon:hover {
  background-color: rgba(48, 48, 48, 0.2);
  color: white;
}

/* line 1239, ../../sass/src/_backend.scss */
div.reports.list table.rows tr.header {
  background-color: #fae9b2;
}
/* line 1241, ../../sass/src/_backend.scss */
div.reports.list table.rows tr.header td {
  padding-top: 11px;
  padding-bottom: 2px;
}

/* line 1248, ../../sass/src/_backend.scss */
div.report-output {
  font-size: 14.4px;
  line-height: 1em;
  margin: 20px 10px;
  color: #000000 !important;
}
/* line 1253, ../../sass/src/_backend.scss */
div.report-output table {
  border: 1px solid #DADADA;
}
/* line 1256, ../../sass/src/_backend.scss */
div.report-output table tr:nth-child(even) {
  background: inherit;
}
/* line 1259, ../../sass/src/_backend.scss */
div.report-output table tr:nth-child(odd) {
  background: inherit;
}
/* line 1263, ../../sass/src/_backend.scss */
div.report-output table th {
  background-color: #eeeeee;
}
/* line 1266, ../../sass/src/_backend.scss */
div.report-output table th, div.report-output table td {
  padding: 4px;
  border: 1px solid lightgrey;
}

/**
 * Login page styles
 */
/* line 1276, ../../sass/src/_backend.scss */
html.login-page {
  background-color: #d2a50e;
}

/* line 1279, ../../sass/src/_backend.scss */
body.login-page {
  padding: 0;
  background-color: transparent;
}

/* line 1288, ../../sass/src/_backend.scss */
header#login-header {
  position: relative;
  z-index: 100;
  margin: 0 auto;
  width: 66%;
  text-align: center;
  color: black;
}
@media only screen and (max-width: 530px) {
  /* line 1288, ../../sass/src/_backend.scss */
  header#login-header {
    width: auto;
    padding-bottom: 10px;
  }
}
/* line 1299, ../../sass/src/_backend.scss */
header#login-header #logo {
  background: white url('/images/login/rigpa_logo.gif?1448198382') no-repeat scroll center;
  background-size: contain;
  position: relative;
  width: 72px;
  height: 72px;
  margin: 20px auto 10px;
}
@media only screen and (max-width: 530px) {
  /* line 1299, ../../sass/src/_backend.scss */
  header#login-header #logo {
    width: 50px;
    height: 50px;
    margin: 12px;
    display: inline-block;
    float: left;
  }
}
/* line 1314, ../../sass/src/_backend.scss */
header#login-header h1 {
  font-size: 42px;
  line-height: 48px;
  font-weight: 400;
  margin: 0;
}
@media only screen and (max-width: 682px) {
  /* line 1314, ../../sass/src/_backend.scss */
  header#login-header h1 {
    font-size: 2em;
    line-height: 1em;
    padding: 0 0 1em 0;
  }
}
@media only screen and (max-width: 530px) {
  /* line 1314, ../../sass/src/_backend.scss */
  header#login-header h1 {
    display: inline-block;
    float: left;
    font-size: 20px;
    line-height: 70px;
    padding: 0;
  }
}
/* line 1332, ../../sass/src/_backend.scss */
header#login-header #mala {
  width: 96%;
  height: 50%;
  max-width: 360px;
  max-height: 352px;
  margin: 20px auto 10px;
}
/* line 1333, ../../sass/src/_backend.scss */
header#login-header #mala img {
  max-width: 100%;
  max-height: 100%;
  -moz-border-radius: 16px;
  -webkit-border-radius: 16px;
  border-radius: 16px;
}
@media only screen and (max-width: 530px) {
  /* line 1332, ../../sass/src/_backend.scss */
  header#login-header #mala {
    width: 80%;
    height: auto;
    margin: 0 auto;
  }
}

/* line 1351, ../../sass/src/_backend.scss */
.login-container {
  overflow: hidden;
  z-index: 100;
}
@media only screen and (min-width: 768px) {
  /* line 1351, ../../sass/src/_backend.scss */
  .login-container {
    position: relative;
  }
}

/* line 1370, ../../sass/src/_backend.scss */
.login-form {
  margin: 0 auto;
  width: 410px;
}
@media only screen and (max-width: 767px) {
  /* line 1370, ../../sass/src/_backend.scss */
  .login-form {
    width: 90%;
  }
}
/* line 1376, ../../sass/src/_backend.scss */
.login-form label {
  font-size: 100%;
  font-weight: 400;
  color: black;
}
/* line 1381, ../../sass/src/_backend.scss */
.login-form .language {
  width: 346px;
  text-align: center;
  margin: 0 auto;
}
/* line 1385, ../../sass/src/_backend.scss */
.login-form .language label {
  width: auto;
  margin: 0;
  padding-left: 0.3em !important;
  padding-right: 0.5em;
  font-weight: 400;
}
/* line 1392, ../../sass/src/_backend.scss */
.login-form .language input {
  width: 5%;
  margin-left: 3px;
}
@media only screen and (max-width: 682px) {
  /* line 1392, ../../sass/src/_backend.scss */
  .login-form .language input {
    clear: left;
  }
}
/* line 1400, ../../sass/src/_backend.scss */
.login-form .login-fields {
  text-align: center;
}
/* line 1403, ../../sass/src/_backend.scss */
.login-form .login-fields div.input {
  margin-top: 6px;
}
/* line 1406, ../../sass/src/_backend.scss */
.login-form .login-fields label {
  display: block;
  float: none;
  text-align: left;
}
/* line 1411, ../../sass/src/_backend.scss */
.login-form .login-fields input {
  display: block;
  float: none;
  width: 100%;
  padding: 0.4em;
  border-radius: 5px;
  background-color: white;
}
/* line 1419, ../../sass/src/_backend.scss */
.login-form .login-fields div.password a {
  font-weight: normal;
  font-style: italic;
  color: white;
}
@media only screen and (max-width: 767px) {
  /* line 1419, ../../sass/src/_backend.scss */
  .login-form .login-fields div.password a {
    color: black;
  }
}
/* line 1426, ../../sass/src/_backend.scss */
.login-form .login-fields div.password a:hover {
  text-decoration: underline;
}
/* line 1431, ../../sass/src/_backend.scss */
.login-form div.submit {
  width: 100%;
  margin-top: 6px;
}
/* line 1434, ../../sass/src/_backend.scss */
.login-form div.submit .button {
  padding: 0.5em 1em;
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2I2MWUwMCIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzdjMDAwOSIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #b61e00), color-stop(100%, #7c0009));
  background-image: -moz-linear-gradient(#b61e00, #7c0009);
  background-image: -webkit-linear-gradient(#b61e00, #7c0009);
  background-image: linear-gradient(#b61e00, #7c0009);
  border: 1px solid #a21b00;
  border-radius: 20px;
  border-radius: 20px;
}
/* line 252, ../../sass/src/_init.scss */
.login-form div.submit .button:hover {
  background: #a5000c;
}
/* line 1439, ../../sass/src/_backend.scss */
.login-form div.submit #submit {
  width: 100%;
  font-size: larger;
  color: white;
}
@media only screen and (max-width: 530px) {
  /* line 1439, ../../sass/src/_backend.scss */
  .login-form div.submit #submit {
    width: 100%;
  }
}

/* line 1450, ../../sass/src/_backend.scss */
.login-footer {
  position: fixed;
  top: 0;
  left: 0;
  background: #f5c00f;
  width: 100%;
  z-index: 1;
}
/* line 1454, ../../sass/src/_backend.scss */
.login-footer .login-footer-shift {
  height: 320px;
  background-color: white;
}
@media only screen and (max-width: 767px) {
  /* line 1454, ../../sass/src/_backend.scss */
  .login-footer .login-footer-shift {
    height: 200px;
  }
}

/* line 1466, ../../sass/src/_backend.scss */
.no-script {
  margin: 0 15%;
  width: 70%;
}

/* line 1471, ../../sass/src/_backend.scss */
.error-box {
  width: 70%;
  margin: 3em auto;
  background-color: #eeeeee;
  overflow: hidden;
}
/* line 1476, ../../sass/src/_backend.scss */
.error-box .error-title {
  font-size: 200%;
  background-color: #C7C7C7;
  padding: 0.25em;
}
/* line 1481, ../../sass/src/_backend.scss */
.error-box .error-content {
  padding: 1em;
}
/* line 1484, ../../sass/src/_backend.scss */
.error-box .error-content h2 {
  padding-bottom: 1em;
}
/* line 1487, ../../sass/src/_backend.scss */
.error-box .error-action {
  text-align: center;
  margin-top: 1em;
  margin-bottom: 1em;
}

/*****************
 * Responsive menu
 *****************/
/* Show navbar elements */
/* line 1501, ../../sass/src/_backend.scss */
.navbar-show {
  display: block !important;
}

/* Navbar collapse styles */
/* line 1505, ../../sass/src/_backend.scss */
.navbar-toggle {
  border: 1px solid transparent;
  border-radius: 4px;
  float: right;
  padding: 5px 5px;
  display: none;
  background-color: #d2a50e;
}
/* line 1512, ../../sass/src/_backend.scss */
.navbar-toggle .icon-bar {
  border-radius: 1px;
  display: block;
  height: 2px;
  width: 22px;
  background-color: white;
}
/* line 1518, ../../sass/src/_backend.scss */
.navbar-toggle .icon-bar + .icon-bar {
  margin-top: 4px;
}

@media only screen and (max-width: 767px) {
  /* line 1526, ../../sass/src/_backend.scss */
  body {
    padding: 0;
  }
}
/************************************************
 *  Accumulation specific styles
 ************************************************/
/* line 1555, ../../sass/src/_backend.scss */
body.user-has-privileges #navigation-top {
  background-color: #861111;
}
/* line 1558, ../../sass/src/_backend.scss */
body.user-has-privileges #navigation-top .menubuilder li {
  background-color: #861111;
}

/* line 1568, ../../sass/src/_backend.scss */
table.items-zebra tr:nth-child(even),
table.items-zebra div.input:nth-child(even),
div.items-zebra tr:nth-child(even),
div.items-zebra div.input:nth-child(even) {
  background-color: inherit;
}
/* line 1572, ../../sass/src/_backend.scss */
table.items-zebra tr:nth-child(odd),
table.items-zebra div.input:nth-child(odd),
div.items-zebra tr:nth-child(odd),
div.items-zebra div.input:nth-child(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}

/* line 1589, ../../sass/src/_backend.scss */
table.styled-items tr td.item-name:before {
  content: "  ";
  color: #d2a50e;
  width: 32px;
  padding-left: 8px;
  padding-right: 10px;
}
/* line 1592, ../../sass/src/_backend.scss */
table.styled-items tr.focus td.item-name:before {
  content: "●";
  color: #d2a50e;
  width: 32px;
  padding-left: 8px;
  padding-right: 10px;
}
/* line 1595, ../../sass/src/_backend.scss */
table.styled-items tr.header {
  background-color: #fae9b2;
}
/* line 1597, ../../sass/src/_backend.scss */
table.styled-items tr.header td.item-name {
  font-weight: bold;
}
/* line 1601, ../../sass/src/_backend.scss */
table.styled-items td.label {
  text-align: right;
  font-weight: bold;
  padding-right: 5px;
}

/* line 1608, ../../sass/src/_backend.scss */
.dialog.user-entries {
  max-height: 80%;
}
/* line 1610, ../../sass/src/_backend.scss */
.dialog.user-entries label {
  width: auto;
  padding-left: 4px;
}
/* line 1613, ../../sass/src/_backend.scss */
.dialog.user-entries label[for=UserEntryForNgondro] {
  padding-left: 12px;
}
/* line 1617, ../../sass/src/_backend.scss */
.dialog.user-entries textarea#UserEntryNotes {
  resize: none;
  background-color: white;
}
/* line 1621, ../../sass/src/_backend.scss */
.dialog.user-entries .modified-by {
  color: #861111;
  text-align: center;
  margin-bottom: 6px;
}
/* line 1625, ../../sass/src/_backend.scss */
.dialog.user-entries .modified-by .modified-label {
  font-weight: bold;
  padding-right: 10px;
}
/* line 1630, ../../sass/src/_backend.scss */
.dialog.user-entries input {
  padding: 3px;
}
/* line 1632, ../../sass/src/_backend.scss */
.dialog.user-entries input[id^='UserEntryItem'] {
  text-align: right;
  background-color: white;
}
/* line 1637, ../../sass/src/_backend.scss */
.dialog.user-entries input[type=checkbox] {
  margin: 8px;
}
/* line 1640, ../../sass/src/_backend.scss */
.dialog.user-entries #dialog-link-delete {
  float: left;
}
/* line 1643, ../../sass/src/_backend.scss */
.dialog.user-entries #table-container {
  position: relative;
}
/* line 1645, ../../sass/src/_backend.scss */
.dialog.user-entries #table-container #dialog-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 200;
}
/* line 1652, ../../sass/src/_backend.scss */
.dialog.user-entries table {
  width: 100%;
}
/* line 1655, ../../sass/src/_backend.scss */
.dialog.user-entries div.input.item {
  color: black;
}
/* line 1657, ../../sass/src/_backend.scss */
.dialog.user-entries div.input.item:before {
  float: left;
  content: "  ";
  color: #d2a50e;
  width: 32px;
  padding-left: 8px;
  padding-right: 10px;
}
/* line 1661, ../../sass/src/_backend.scss */
.dialog.user-entries div.input.item.header {
  background-color: #fae9b2 !important;
  font-weight: bold;
}
/* line 1666, ../../sass/src/_backend.scss */
.dialog.user-entries div.input.item.focus:before {
  float: left;
  content: "●";
  color: #d2a50e;
  width: 32px;
  padding-left: 8px;
  padding-right: 10px;
}
/* line 1671, ../../sass/src/_backend.scss */
.dialog.user-entries div.input.item label {
  width: 380px;
  font-weight: normal;
  text-align: left;
  padding-left: 0;
}
/* line 1677, ../../sass/src/_backend.scss */
.dialog.user-entries div.input.item input:disabled {
  background-color: white;
  color: #222222;
}

/* line 1684, ../../sass/src/_backend.scss */
#items-container {
  max-height: 434px;
  overflow-y: scroll;
  margin: 8px 0;
  background-color: #f7f7f7;
  border: 1px solid #9c9c9c;
  position: relative;
}

/**
 * BEGIN To make the history table scroll and keep headers fixed
 */
/* line 1705, ../../sass/src/_backend.scss */
.user-entries.history table.rows {
  table-layout: fixed;
  border: 0;
  white-space: nowrap;
}
/* line 1709, ../../sass/src/_backend.scss */
.user-entries.history table.rows thead {
  width: 100%;
  z-index: 1;
}
/* line 1713, ../../sass/src/_backend.scss */
.user-entries.history table.rows tbody {
  width: 100%;
  z-index: 0;
}
/* line 1717, ../../sass/src/_backend.scss */
.user-entries.history table.rows tr {
  width: 100%;
  height: 38px;
}
/* line 1721, ../../sass/src/_backend.scss */
.user-entries.history table.rows th, .user-entries.history table.rows td {
  overflow: hidden;
}
/* line 1724, ../../sass/src/_backend.scss */
.user-entries.history table.rows th.actions,
.user-entries.history table.rows td.actions {
  width: 82px;
  min-width: 82px;
  max-width: 82px;
}
/* line 1728, ../../sass/src/_backend.scss */
.user-entries.history table.rows .history-date {
  width: 150px;
  min-width: 150px;
  max-width: 150px;
}
/* line 1731, ../../sass/src/_backend.scss */
.user-entries.history table.rows .history-notes {
  width: 180px;
  min-width: 180px;
  max-width: 180px;
  text-overflow: ellipsis;
}
/* line 1735, ../../sass/src/_backend.scss */
.user-entries.history table.rows .history-ngondro {
  width: 70px;
  min-width: 70px;
  max-width: 70px;
  overflow: hidden;
}
/* line 1739, ../../sass/src/_backend.scss */
.user-entries.history table.rows .entry-value {
  width: 80px;
  min-width: 80px;
  max-width: 80px;
}
/* line 1742, ../../sass/src/_backend.scss */
.user-entries.history table.rows .history-modified {
  width: 150px;
  min-width: 150px;
  max-width: 150px;
}
/* line 1746, ../../sass/src/_backend.scss */
.user-entries.history #scrollable-table-wrapper {
  box-sizing: border-box;
  height: 800px;
  height: 74vh;
  min-height: 74vh;
  max-height: 74vh;
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 38px 0 0 0;
}
/* line 1756, ../../sass/src/_backend.scss */
.user-entries.history #scrollable-table-wrapper table {
  position: static;
}
/* line 1757, ../../sass/src/_backend.scss */
.user-entries.history #scrollable-table-wrapper thead {
  position: absolute;
}
/* line 1758, ../../sass/src/_backend.scss */
.user-entries.history #scrollable-table-wrapper thead {
  left: 0;
  top: 0;
}
/* line 1762, ../../sass/src/_backend.scss */
.user-entries.history #scrollable-table-wrapper tbody {
  display: block;
  position: relative;
  overflow-y: scroll;
  height: 69vh;
  width: 100%;
}

/**
 * END History table scroll and header fixed
 */
/* line 1775, ../../sass/src/_backend.scss */
.ui-tooltip-content {
  line-height: 1.5em;
}
/* line 1777, ../../sass/src/_backend.scss */
.ui-tooltip-content div.item-long-name {
  font-weight: bold;
}

/* line 1783, ../../sass/src/_backend.scss */
.user-entries.history th.entry-value:hover .help-icon {
  display: inline-block;
}
/* line 1786, ../../sass/src/_backend.scss */
.user-entries.history tr.period-break {
  background-color: #fae9b2;
}
/* line 1788, ../../sass/src/_backend.scss */
.user-entries.history tr.period-break td {
  padding-top: 11px;
  padding-bottom: 2px;
  border-left: 1px solid transparent;
  border-right: 1px solid transparent;
}
/* line 1794, ../../sass/src/_backend.scss */
.user-entries.history tr.period-break td:first-child {
  border-left: 1px solid #DADADA;
}
/* line 1797, ../../sass/src/_backend.scss */
.user-entries.history tr.period-break td:last-child {
  border-right: 1px solid #DADADA;
}
/* line 1801, ../../sass/src/_backend.scss */
.user-entries.history th, .user-entries.history td {
  border-left: 1px solid #DADADA;
  border-right: 1px solid #DADADA;
}
/* line 1805, ../../sass/src/_backend.scss */
.user-entries.history th.focus {
  border-top: 4px black solid;
  background-color: rgba(154, 205, 50, 0.25);
}
/* line 1809, ../../sass/src/_backend.scss */
.user-entries.history th.entry-value,
.user-entries.history td.entry-value {
  text-align: right;
}
/* line 1813, ../../sass/src/_backend.scss */
.user-entries.history td.actions {
  text-align: center;
}
/* line 1816, ../../sass/src/_backend.scss */
.user-entries.history td.focus {
  background-color: rgba(154, 205, 50, 0.25);
}
/* line 1819, ../../sass/src/_backend.scss */
.user-entries.history .history-date {
  white-space: nowrap;
}
/* line 1822, ../../sass/src/_backend.scss */
.user-entries.history td.history-modified {
  color: #861111;
}
/* line 1825, ../../sass/src/_backend.scss */
.user-entries.history table.rows .actions > a.button {
  margin: 0;
}

/* line 1831, ../../sass/src/_backend.scss */
.user-entries.totals table.rows {
  width: auto;
}
/* line 1833, ../../sass/src/_backend.scss */
.user-entries.totals table.rows th.entry-value,
.user-entries.totals table.rows td.entry-value {
  padding-left: 20px;
  text-align: right;
}
/* line 1838, ../../sass/src/_backend.scss */
.user-entries.totals table.rows th.ngondro-perc,
.user-entries.totals table.rows td.ngondro-perc {
  text-align: right;
}
/* line 1842, ../../sass/src/_backend.scss */
.user-entries.totals table.rows th.balance-spacer,
.user-entries.totals table.rows td.balance-spacer {
  width: 26px;
}

/*
 * Special button sizes
 */
/* line 1854, ../../sass/src/_backend.scss */
.user-entries.history .button.add.user_entry,
.user-entries.totals .button.add.user_entry {
  padding: 2px 20px;
}
/* line 1857, ../../sass/src/_backend.scss */
.user-entries.history .button.edit.user_entry,
.user-entries.history .button.view.user_entry,
.user-entries.totals .button.edit.user_entry,
.user-entries.totals .button.view.user_entry {
  padding: 2px 4px;
}

/* line 1865, ../../sass/src/_backend.scss */
div.dialog.user-preference table.rows th:first-child {
  text-align: center;
  font-weight: normal;
}
/* line 1869, ../../sass/src/_backend.scss */
div.dialog.user-preference table.rows td.enabled {
  text-align: center;
}
/* line 1871, ../../sass/src/_backend.scss */
div.dialog.user-preference table.rows td.enabled input[type=checkbox] {
  float: none;
}
/* line 1876, ../../sass/src/_backend.scss */
div.dialog.user-preference #dialog-submit-reset {
  float: left;
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2RiZGJkYiIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2EzYTNhMyIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dbdbdb), color-stop(100%, #a3a3a3));
  background-image: -moz-linear-gradient(#dbdbdb, #a3a3a3);
  background-image: -webkit-linear-gradient(#dbdbdb, #a3a3a3);
  background-image: linear-gradient(#dbdbdb, #a3a3a3);
  border: 1px solid #d1d1d1;
  border-radius: 20px;
}
/* line 252, ../../sass/src/_init.scss */
div.dialog.user-preference #dialog-submit-reset:hover {
  background: #b7b7b7;
}

/* line 1883, ../../sass/src/_backend.scss */
div.users.search div#search-container {
  margin-left: 18px;
  padding: 10px 0;
}
/* line 1887, ../../sass/src/_backend.scss */
div.users.search div#search-container #search-form div {
  display: inline-block;
}
/* line 1890, ../../sass/src/_backend.scss */
div.users.search div#search-container #search-form label {
  width: auto;
}
/* line 1894, ../../sass/src/_backend.scss */
div.users.search div#search-container #UserSearch {
  padding: 8px;
  background-color: #f6f6f6;
}
/* line 1900, ../../sass/src/_backend.scss */
div.users.search table.rows tbody tr {
  line-height: 1em;
}
/* line 1903, ../../sass/src/_backend.scss */
div.users.search table.rows td.actions {
  text-align: left;
  padding-right: 20px;
}

/* line 1911, ../../sass/src/_backend.scss */
div.reports.list td.actions {
  text-align: left;
  width: 6%;
}

/* line 1917, ../../sass/src/_backend.scss */
div.owner-user-info,
div.selected-user-info {
  margin-bottom: 12px;
  color: #861111;
  padding: 6px 10px;
}
/* line 1922, ../../sass/src/_backend.scss */
div.owner-user-info .name,
div.selected-user-info .name {
  font-weight: bold;
  padding-right: 12px;
}

/* line 1928, ../../sass/src/_backend.scss */
.dialog .selected-user-info .name {
  display: block;
  clear: both;
}

/* line 1933, ../../sass/src/_backend.scss */
.user-status {
  color: red;
}

/* line 1937, ../../sass/src/_backend.scss */
div.dialog.periods {
  min-width: 620px;
}

/* line 1943, ../../sass/src/_backend.scss */
div.dialog.items.form input.item-value,
div.dialog.period-targets.form input.item-value {
  text-align: right;
}

/* line 1949, ../../sass/src/_backend.scss */
div.helps div.info-page {
  margin-bottom: 16px;
  overflow: hidden;
  border-bottom: 1px solid #DFDFDF;
}
/* line 1954, ../../sass/src/_backend.scss */
div.helps div.title {
  background-color: #d2a50e;
  color: white;
  font-size: 18px;
  padding: 6px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  overflow: hidden;
}
/* line 1963, ../../sass/src/_backend.scss */
div.helps div.blurb {
  padding: 10px 10px 3px 10px;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.05);
  border-left: 1px solid #DFDFDF;
  border-right: 1px solid #DFDFDF;
}
/* line 1971, ../../sass/src/_backend.scss */
div.helps div.full-text {
  padding: 10px;
  display: none;
  background-color: white;
  overflow: hidden;
  border-top: 1px solid #DFDFDF;
  border-right: 1px solid #DFDFDF;
  border-left: 1px solid #DFDFDF;
}
/* line 1980, ../../sass/src/_backend.scss */
div.helps span.last-update {
  float: right;
}
@media only screen and (max-width: 767px) {
  /* line 1980, ../../sass/src/_backend.scss */
  div.helps span.last-update {
    font-size: 14px;
  }
}
/* line 1986, ../../sass/src/_backend.scss */
div.helps span.read-more {
  display: block;
  padding: 6px;
  text-decoration: underline;
  cursor: pointer;
}
/* line 1993, ../../sass/src/_backend.scss */
div.helps #HelpBlurb textarea {
  height: 40px;
}

/*
 * Style dropdown menus for main site navigation
 * They are separated intwo sections:
 * - the positioning and functionality
 * - colors
 */
/* line 8, ../../sass/src/_jqsimplemenu.scss */
.menubuilder {
  margin: 0;
  padding: 0;
  position: relative;
  list-style-type: none;
}
/* line 14, ../../sass/src/_jqsimplemenu.scss */
.menubuilder ul {
  margin: 0;
  padding: 0;
  position: absolute;
  display: none;
  z-index: 200;
}
/* line 20, ../../sass/src/_jqsimplemenu.scss */
.menubuilder ul li {
  float: none;
}
/* line 25, ../../sass/src/_jqsimplemenu.scss */
.menubuilder > li {
  display: inline;
  padding-top: 2px;
  vertical-align: bottom;
}
@media only screen and (min-width: 768px) {
  /* line 30, ../../sass/src/_jqsimplemenu.scss */
  .menubuilder > li > a {
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
  }
}
/* line 36, ../../sass/src/_jqsimplemenu.scss */
.menubuilder li {
  float: left;
  list-style-type: none;
}
/* line 39, ../../sass/src/_jqsimplemenu.scss */
.menubuilder li a {
  display: block;
  line-height: 31px;
  background: url('/images/no_dropdown.png?1448198382') no-repeat 96% 50%;
  padding-right: 20px;
}
/* line 48, ../../sass/src/_jqsimplemenu.scss */
.menubuilder li ul li a {
  display: inline-block;
  width: 188px;
  white-space: nowrap;
}
/* line 54, ../../sass/src/_jqsimplemenu.scss */
.menubuilder li.pull-down > a {
  background: url('/images/darrow.png?1457367432') no-repeat 94% 50%;
}

@media only screen and (max-width: 767px) {
  /* line 65, ../../sass/src/_jqsimplemenu.scss */
  .navbar-show .menubuilder ul {
    position: static;
  }
  /* line 69, ../../sass/src/_jqsimplemenu.scss */
  .navbar-show .menubuilder > li {
    padding-top: 0;
  }
  /* line 71, ../../sass/src/_jqsimplemenu.scss */
  .navbar-show .menubuilder > li li {
    padding-left: 16px;
  }
  /* line 75, ../../sass/src/_jqsimplemenu.scss */
  .navbar-show .menubuilder li {
    float: none;
    display: block;
  }
  /* line 78, ../../sass/src/_jqsimplemenu.scss */
  .navbar-show .menubuilder li a {
    display: block;
  }
}
/* Colors */
/* line 88, ../../sass/src/_jqsimplemenu.scss */
.menubuilder {
  background-color: inherit;
}
/* line 90, ../../sass/src/_jqsimplemenu.scss */
.menubuilder a {
  text-decoration: none;
  color: #ffffff;
  padding: 3px 12px;
}
/* line 95, ../../sass/src/_jqsimplemenu.scss */
.menubuilder li {
  background-color: #d2a50e;
}
/* line 97, ../../sass/src/_jqsimplemenu.scss */
.menubuilder li ul {
  border: 1px solid #d2a50e;
}
/* line 101, ../../sass/src/_jqsimplemenu.scss */
.menubuilder li.active > a {
  background-color: #ffffff;
  color: #d2a50e;
}
/* line 105, ../../sass/src/_jqsimplemenu.scss */
.menubuilder li a:hover,
.menubuilder li.active a:hover {
  background-color: #f5c00f;
  color: #ffffff;
}

/* line 112, ../../sass/src/_jqsimplemenu.scss */
div.box {
  position: absolute;
  background-color: #D50404;
  left: 0;
  top: 0;
  border-radius: 4px 4px 0px 0px;
  -moz-border-radius: 4px 4px 0px 0px;
  -webkit-border-radius: 4px 4px 0px 0px;
}

/* Selectmenu ----------------------------------*/
/* line 5, ../../sass/src/_jquery.ui.selectmenu.scss */
.ui-selectmenu {
  display: inline-block;
  position: relative;
  height: 20px;
  vertical-align: middle;
  text-decoration: none;
  overflow: hidden;
  zoom: 1;
}

/* line 18, ../../sass/src/_jquery.ui.selectmenu.scss */
.ui-selectmenu-icon {
  position: absolute;
  right: 6px;
  margin-top: -8px;
  top: 50%;
}

/* line 25, ../../sass/src/_jquery.ui.selectmenu.scss */
.ui-selectmenu-menu {
  padding: 0;
  margin: 0;
  position: absolute;
  top: 0;
  display: none;
  z-index: 1005;
}

/* z-index: 1005 to make selectmenu work with dialog */
/* line 35, ../../sass/src/_jquery.ui.selectmenu.scss */
.ui-selectmenu-menu ul {
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/* line 46, ../../sass/src/_jquery.ui.selectmenu.scss */
.ui-selectmenu-open {
  display: block;
}

/* line 50, ../../sass/src/_jquery.ui.selectmenu.scss */
.ui-selectmenu-menu-popup {
  margin-top: -1px;
}

/* line 54, ../../sass/src/_jquery.ui.selectmenu.scss */
.ui-selectmenu-menu li {
  padding: 0;
  margin: 0;
  display: block;
  border-top: 1px dotted transparent;
  border-bottom: 1px dotted transparent;
  border-right-width: 0 !important;
  border-left-width: 0 !important;
  background-color: #ffffee;
  overflow: hidden;
  text-indent: -3em;
  padding-left: 3em;
}

/* line 70, ../../sass/src/_jquery.ui.selectmenu.scss */
.ui-selectmenu-menu li a, .ui-selectmenu-status {
  line-height: 1.4em;
  display: block;
  outline: none;
  text-decoration: none;
  color: inherit;
  font-weight: normal;
  padding-left: 0.2em;
}
/* line 82, ../../sass/src/_jquery.ui.selectmenu.scss */
.ui-selectmenu-menu li a div, .ui-selectmenu-status div {
  width: 100%;
  border-bottom: 1px dotted #aaaaaa;
}

/* line 90, ../../sass/src/_jquery.ui.selectmenu.scss */
.ui-selectmenu-menu li.ui-state-disabled a, .ui-state-disabled {
  cursor: default;
}

/* line 94, ../../sass/src/_jquery.ui.selectmenu.scss */
.ui-selectmenu-menu li.ui-selectmenu-hasIcon a,
.ui-selectmenu-hasIcon .ui-selectmenu-status {
  padding-left: 20px;
  position: relative;
  margin-left: 5px;
}

/* line 101, ../../sass/src/_jquery.ui.selectmenu.scss */
.ui-selectmenu-menu li .ui-icon, .ui-selectmenu-status .ui-icon {
  position: absolute;
  top: 1em;
  margin-top: -8px;
  left: 0;
}

/* line 113, ../../sass/src/_jquery.ui.selectmenu.scss */
.ui-selectmenu-status span {
  display: block;
  margin-bottom: .2em;
}

/* line 118, ../../sass/src/_jquery.ui.selectmenu.scss */
.ui-selectmenu-menu li .ui-selectmenu-item-header {
  font-weight: bold;
  margin-right: 1em;
  white-space: nowrap;
}

/* line 127, ../../sass/src/_jquery.ui.selectmenu.scss */
.ui-selectmenu-menu li .ui-selectmenu-item-content {
  font-weight: normal;
  font-size: 0.8em;
  color: #444444;
}

/* line 132, ../../sass/src/_jquery.ui.selectmenu.scss */
.ui-selectmenu-menu li .ui-selectmenu-item-footer {
  opacity: .8;
}

/* for optgroups */
/* line 137, ../../sass/src/_jquery.ui.selectmenu.scss */
.ui-selectmenu-menu .ui-selectmenu-group {
  font-size: 1em;
}

/* line 141, ../../sass/src/_jquery.ui.selectmenu.scss */
.ui-selectmenu-menu .ui-selectmenu-group .ui-selectmenu-group-label {
  line-height: 1.4em;
  display: block;
  padding: .6em .5em 0;
  font-weight: bold;
}

/* line 148, ../../sass/src/_jquery.ui.selectmenu.scss */
.ui-selectmenu-menu .ui-selectmenu-group ul {
  margin: 0;
  padding: 0;
}

/* IE6 workaround (dotted transparent borders) */
/* line 154, ../../sass/src/_jquery.ui.selectmenu.scss */
* html .ui-selectmenu-menu li {
  border-color: pink;
  filter: chroma(color=pink);
  width: 100%;
}

/* line 160, ../../sass/src/_jquery.ui.selectmenu.scss */
* html .ui-selectmenu-menu li a {
  position: relative;
}

/* IE7 workaround (opacity disabled) */
/* line 165, ../../sass/src/_jquery.ui.selectmenu.scss */
* + html .ui-state-disabled, * + html .ui-state-disabled a {
  color: silver;
}

/* line 171, ../../sass/src/_jquery.ui.selectmenu.scss */
.ui-selectmenu.ui-state-default, .ui-selectmenu.ui-widget-content .ui-state-default, .ui-selectmenu.ui-widget-header .ui-state-default {
  background: #ffffff;
  border: 1px solid #cccccc;
  border-radius: 5px;
  color: #444444;
}

/* line 188, ../../sass/src/_jquery.ui.selectmenu.scss */
.ui-selectmenu.ui-state-default .ui-icon {
  background-image: url('/images/ui-icons_222222_256x240.png?1448198382');
}

/*
 * Styles for full HTML texts entered via CKeditor
 *
 * Defined here inside the class used for all texts
 */
/* line 7, ../../sass/src/_app-text.scss */
.app-text {
  /*
   * Styles for full HTML texts entered via CKeditor and displayed by the app.
   *
   * These are used 'as-is' by CKEditor and imported inside the .app-text class for the app
   */
  /**
   * Color definitions
   */
  /* apply a natural box layout model to all elements, but allowing components to change */
  /**
   * Collection of media queries
   */
}
/* line 177, ../../sass/src/_init.scss */
.app-text .clearfix:before, .app-text .clearfix:after {
  content: " ";
  display: table;
}
/* line 182, ../../sass/src/_init.scss */
.app-text .clearfix:after {
  clear: both;
}
/* line 188, ../../sass/src/_init.scss */
.app-text html {
  box-sizing: border-box;
}
/* line 191, ../../sass/src/_init.scss */
.app-text *, .app-text *:before, .app-text *:after {
  box-sizing: inherit;
}
/* line 9, ../../sass/src/ck_editor.scss */
.app-text table th,
.app-text table td,
.app-text h1,
.app-text h2,
.app-text h3,
.app-text h4,
.app-text ul,
.app-text li,
.app-text p,
.app-text a {
  font: 300 100%/1.5 Arial, Helvetica, sans-serif;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: normal;
  text-align: left;
  line-height: 1.5em;
  color: #555555;
}
/* line 28, ../../sass/src/ck_editor.scss */
.app-text a {
  color: #00E;
  text-decoration: none;
}
/* line 33, ../../sass/src/ck_editor.scss */
.app-text a:hover {
  text-decoration: underline;
}
/* line 40, ../../sass/src/ck_editor.scss */
.app-text p {
  padding-bottom: 3px;
  margin: 0;
}
/* line 46, ../../sass/src/ck_editor.scss */
.app-text h1 {
  font-size: 30px;
  font-style: normal;
  font-weight: normal;
  color: #d2a50e;
  line-height: 1.2em;
  margin: 22px 0 10px;
}
/* line 55, ../../sass/src/ck_editor.scss */
.app-text h2 {
  font-size: 20px;
  font-style: normal;
  font-weight: normal;
  color: #555555;
  line-height: 1.3em;
  margin: 20px 0 10px;
}
/* line 64, ../../sass/src/ck_editor.scss */
.app-text h3 {
  font-size: 14px;
  font-weight: bold;
  color: #555555;
  line-height: 1.5em;
  margin: 18px 0 6px;
}
/* line 80, ../../sass/src/ck_editor.scss */
.app-text ul {
  list-style-type: circle;
  margin: 0.5em 0;
}
/* line 90, ../../sass/src/ck_editor.scss */
.app-text table th {
  font-weight: bold;
  background-color: #EBEBEB;
}

/* SMACSS theme rules */
/* @import "theme-A"; */
/* @import "theme-B"; */

/*# sourceMappingURL=styles.css.map */
