@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 142, ../../sass/src/_init.scss */
.clearfix:before, .clearfix:after {
  content: " ";
  display: table;
}
/* line 147, ../../sass/src/_init.scss */
.clearfix:after {
  clear: both;
}

/* 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: 100%;
  /* 3 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  line-height: 1.5em;
}

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

/* Remove default margin. */
/* line 126, ../../sass/src/_normalize.scss */
body {
  margin: 0;
  padding: 0;
}

/**
 * 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
 */
/* Address `outline` inconsistency between Chrome and other browsers. */
/* line 148, ../../sass/src/_normalize.scss */
a:focus {
  outline: thin dotted;
}

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

/**
 * 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 169, ../../sass/src/_normalize.scss */
p,
pre {
  margin: 1.5em 0;
}

/* line 173, ../../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 182, ../../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 190, ../../sass/src/_normalize.scss */
h2 {
  font-size: 1.5em;
  line-height: 2em;
  margin-top: 1em;
  margin-bottom: 1em;
}

/* line 195, ../../sass/src/_normalize.scss */
h3 {
  font-size: 1.17em;
  line-height: 1.28205em;
  margin-top: 1.28205em;
  margin-bottom: 1.28205em;
}

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

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

/* line 210, ../../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 217, ../../sass/src/_normalize.scss */
abbr[title] {
  border-bottom: 1px dotted;
}

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

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

/* Address differences between Firefox and other browsers. */
/* line 233, ../../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 242, ../../sass/src/_normalize.scss */
mark {
  background: #ff0;
  color: #000;
}

/* Correct font family set oddly in Safari 5 and Chrome. */
/* line 248, ../../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 262, ../../sass/src/_normalize.scss */
pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

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

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

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

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

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

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

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

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

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

/* Correct list images handled incorrectly in IE 7. */
/* line 329, ../../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 341, ../../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 362, ../../sass/src/_normalize.scss */
svg:not(:root) {
  overflow: hidden;
}

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

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

/* Define consistent border, margin, and padding. */
/* line 383, ../../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 398, ../../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 413, ../../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 432, ../../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 443, ../../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 457, ../../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 471, ../../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 482, ../../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 497, ../../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 506, ../../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 512, ../../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 522, ../../sass/src/_normalize.scss */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
}

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

/**
 * Tables
 */
/* line 536, ../../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. */
}

/* 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 142, ../../sass/src/_init.scss */
.clearfix:before, .clearfix:after {
  content: " ";
  display: table;
}
/* line 147, ../../sass/src/_init.scss */
.clearfix:after {
  clear: both;
}

/**
 *
 * PRDB SCSS for CakePHP
 *
 * 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)
 */
/** General Style Info **/
/* line 28, ../../sass/src/_backend.scss */
body {
  font-family: "open sans", sans-serif;
  font-size: 90%;
}

/* line 35, ../../sass/src/_backend.scss */
a {
  color: darkblue;
  font-weight: bold;
  text-decoration: none;
}

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

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

/* line 50, ../../sass/src/_backend.scss */
h1, h2, h3, h4 {
  font-weight: normal;
  padding: 0.2em;
}

/* line 55, ../../sass/src/_backend.scss */
h1 {
  font-size: 100%;
}

/* line 59, ../../sass/src/_backend.scss */
h3 {
  color: #2c6877;
  font-size: 110%;
}

/* line 64, ../../sass/src/_backend.scss */
p {
  margin: 0 0 1em 0;
}

/** Layout **/
/* line 69, ../../sass/src/_backend.scss */
#container {
  text-align: left;
}

/* line 73, ../../sass/src/_backend.scss */
header {
  position: relative;
  overflow: hidden;
  background: #3d3d3d;
  color: white;
  z-index: 10;
  padding: 0.25em 0;
}
@media only screen and (max-width: 1100px) {
  /* line 73, ../../sass/src/_backend.scss */
  header {
    padding: 0.25em 0 0 0;
  }
}
/* line 83, ../../sass/src/_backend.scss */
header h1 {
  display: inline-block;
  float: left;
  font-size: 1.5em;
  font-weight: 300;
  margin: 0;
  line-height: 2.7em;
}
@media only screen and (max-width: 1000px) {
  /* line 83, ../../sass/src/_backend.scss */
  header h1 {
    display: block;
    float: none;
  }
}
@media only screen and (max-width: 682px) {
  /* line 83, ../../sass/src/_backend.scss */
  header h1 {
    line-height: 3.3em;
    font-size: 1.2em;
  }
}
@media only screen and (max-width: 530px) {
  /* line 83, ../../sass/src/_backend.scss */
  header h1 {
    font-size: 1.2em;
    /*  line-height: 1.6em; */
  }
}

/* line 105, ../../sass/src/_backend.scss */
.header-title {
  display: block;
  width: 40%;
  overflow: auto;
  margin: 0;
  float: left;
}
@media only screen and (max-width: 1000px) {
  /* line 105, ../../sass/src/_backend.scss */
  .header-title {
    width: 42%;
  }
}
@media only screen and (max-width: 530px) {
  /* line 105, ../../sass/src/_backend.scss */
  .header-title {
    width: 100%;
    font-size: 1em;
  }
}
/* line 118, ../../sass/src/_backend.scss */
.header-title:before {
  position: relative;
  top: 0.25em;
  content: " ";
  background-image: url('/images/rigpa_logo.png?1591740192');
  background-size: 100% 100%;
  width: 50px;
  height: 50px;
  margin: 2px 1em;
  float: left;
}

/* line 131, ../../sass/src/_backend.scss */
.user-status {
  display: block;
  float: right;
  width: 60%;
}

@media only screen and (max-width: 1100px) {
  /* line 138, ../../sass/src/_backend.scss */
  .user-status {
    margin: 0;
    width: 100%;
    background: #5f5f5f;
    padding: 0.5em 0;
  }
}
@media only screen and (max-width: 840px) {
  /* line 147, ../../sass/src/_backend.scss */
  .user-status {
    width: 100%;
  }
}
@media only screen and (max-width: 530px) {
  /* line 153, ../../sass/src/_backend.scss */
  .user-status {
    margin: 0;
    float: left;
  }
}
/* line 159, ../../sass/src/_backend.scss */
div.logout {
  float: right;
  margin-right: 1em;
  line-height: 4em;
}

/* line 165, ../../sass/src/_backend.scss */
#header {
  padding: 5px;
  line-height: 60px;
  background: #3d3d3d url('/images/rigpa_logo.png?1591740192') no-repeat left center;
  background-size: 50px 50px;
  white-space: nowrap;
}
/* line 171, ../../sass/src/_backend.scss */
#header h1 {
  margin: 0 160px;
  color: #EEFF78;
  background: #97191c;
}
/* line 175, ../../sass/src/_backend.scss */
#header h1 a {
  color: #EEFF78;
  font-weight: normal;
  text-decoration: none;
}
/* line 179, ../../sass/src/_backend.scss */
#header h1 a:hover {
  text-decoration: underline;
}

/* line 186, ../../sass/src/_backend.scss */
#content {
  position: relative;
  background: #fff;
  clear: both;
  color: #333;
  padding: 0.8em 0.8em;
}

/** containers **/
/* line 195, ../../sass/src/_backend.scss */
div.index,
div.add,
div.view {
  /* Drilldown */
  /*noinspection SassScssResolvedByNameOnly*/
}
/* line 200, ../../sass/src/_backend.scss */
div.index > table th a,
div.add > table th a,
div.view > table th a {
  text-decoration: none;
}
/* line 203, ../../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 206, ../../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 213, ../../sass/src/_backend.scss */
div.index table.drilldown,
div.add table.drilldown,
div.view table.drilldown {
  /*noinspection SassScssResolvedByNameOnly*/
  clear: both;
  width: 100%;
  color: #333;
  border: 1px solid #DFDFDF;
  border-left: none;
  border-right: none;
}
/* line 166, ../../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: 0.3em 0.3em;
  vertical-align: bottom;
  white-space: nowrap;
}
/* line 173, ../../sass/src/_init.scss */
div.index table.drilldown td,
div.add table.drilldown td,
div.view table.drilldown td {
  padding: 0.3em 0.3em;
  text-align: left;
}
/* line 177, ../../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 185, ../../sass/src/_init.scss */
div.index table.drilldown tr,
div.add table.drilldown tr,
div.view table.drilldown tr {
  border-bottom: 1px solid #DADADA;
}
/* line 188, ../../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 191, ../../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 #A14FA1;
}
/* line 193, ../../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 #A14FA1;
  border-bottom: 1px solid #A14FA1;
}
/* line 198, ../../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 219, ../../sass/src/_backend.scss */
div.index table.drilldown th,
div.add table.drilldown th,
div.view table.drilldown th {
  background-color: #EBEBEB;
}
/* line 222, ../../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 223, ../../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 227, ../../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 229, ../../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 233, ../../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?1591740192') no-repeat scroll center center;
}
/* line 236, ../../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?1591740192') no-repeat scroll center center;
  background-size: 11px 11px;
}
/* line 240, ../../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 243, ../../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 246, ../../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 251, ../../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 258, ../../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;
  */
}

/*noinspection SassScssResolvedByNameOnly,SassScssResolvedByNameOnly*/
/* line 269, ../../sass/src/_backend.scss */
table.rows {
  clear: both;
  width: 100%;
  color: #333;
  border: 1px solid #DFDFDF;
}
/* line 166, ../../sass/src/_init.scss */
table.rows th {
  border: 0;
  text-align: left;
  padding: 0.3em 0.3em;
  vertical-align: bottom;
  white-space: nowrap;
}
/* line 173, ../../sass/src/_init.scss */
table.rows td {
  padding: 0.3em 0.3em;
  text-align: left;
}
/* line 177, ../../sass/src/_init.scss */
table.rows td.actions {
  text-align: right;
}
/* line 185, ../../sass/src/_init.scss */
table.rows tr {
  border-bottom: 1px solid #DADADA;
}
/* line 188, ../../sass/src/_init.scss */
table.rows tr:nth-child(even) {
  background-color: rgba(0, 0, 0, 0.05);
}
/* line 191, ../../sass/src/_init.scss */
table.rows tr.index:hover {
  border: 1px solid #A14FA1;
}
/* line 193, ../../sass/src/_init.scss */
table.rows tr.index:hover td {
  border-top: 1px solid #A14FA1;
  border-bottom: 1px solid #A14FA1;
}
/* line 198, ../../sass/src/_init.scss */
table.rows th {
  border-bottom: 1px solid #333333;
  background-color: #EBEBEB;
}

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

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

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

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

/*
fieldset fieldset legend {
	font-size: 120%;
	font-weight: normal;
}
*/
/* line 340, ../../sass/src/_backend.scss */
fieldset fieldset div {
  clear: left;
  margin: 0 20px;
}

/* line 345, ../../sass/src/_backend.scss */
form div.input {
  clear: both;
  padding: 2px 0;
  /*	padding: .2em; */
  vertical-align: middle;
  line-height: 1.9em;
  overflow: hidden;
}

/* line 357, ../../sass/src/_backend.scss */
form .input {
  color: #444;
}

/* line 361, ../../sass/src/_backend.scss */
form .required label:after {
  color: #e32;
  content: '*';
  display: inline;
}

/* line 367, ../../sass/src/_backend.scss */
form div.input.cancel {
  clear: none;
  float: left;
}

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

/* line 377, ../../sass/src/_backend.scss */
textarea {
  display: block;
  resize: vertical;
}

/* line 382, ../../sass/src/_backend.scss */
a.ui-selectmenu,
input,
textarea,
select {
  outline: none;
  padding: 0 0.2em;
  border: 1px solid #DDDDDD;
}
/* line 389, ../../sass/src/_backend.scss */
a.ui-selectmenu:focus,
input:focus,
textarea:focus,
select:focus {
  padding: 0 0.2em;
  border: 1px solid #A14FA1;
}

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

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

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

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

/* line 414, ../../sass/src/_backend.scss */
input[type=checkbox] {
  margin: 0.3em 0 0 0;
}

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

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

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

/* line 438, ../../sass/src/_backend.scss */
.buttons a.button {
  font-weight: normal;
  cursor: pointer;
  margin-left: 1.2em;
  padding: 4px 1em;
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2RkYWZlMCIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2ExNGZhMSIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ddafe0), color-stop(100%, #a14fa1));
  background-image: -moz-linear-gradient(#ddafe0, #a14fa1);
  background-image: -webkit-linear-gradient(#ddafe0, #a14fa1);
  background-image: linear-gradient(#ddafe0, #a14fa1);
  border-color: #d7a0da;
  color: #ffffff;
  border: 1px solid;
  border-radius: 20px;
}
/* line 207, ../../sass/src/_init.scss */
.buttons a.button:hover {
  background: #b465b4;
}

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

/* line 454, ../../sass/src/_backend.scss */
#logout {
  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-color: #767676;
}
/* line 207, ../../sass/src/_init.scss */
#logout:hover {
  background: #606060;
}

/* line 458, ../../sass/src/_backend.scss */
#dialog-submit-link {
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2RkYWZlMCIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2ExNGZhMSIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ddafe0), color-stop(100%, #a14fa1));
  background-image: -moz-linear-gradient(#ddafe0, #a14fa1);
  background-image: -webkit-linear-gradient(#ddafe0, #a14fa1);
  background-image: linear-gradient(#ddafe0, #a14fa1);
  border-color: #d7a0da;
}
/* line 207, ../../sass/src/_init.scss */
#dialog-submit-link:hover {
  background: #b465b4;
}

/* line 462, ../../sass/src/_backend.scss */
#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-color: #d1d1d1;
}
/* line 207, ../../sass/src/_init.scss */
#confirm-cancel:hover,
#dialog-cancel-cancel:hover {
  background: #b7b7b7;
}

/* line 467, ../../sass/src/_backend.scss */
#dialog-submit-save,
#dialog-submit-continue,
#confirm-continue,
#dialog-submit-activate {
  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-color: #69b95d;
}
/* line 207, ../../sass/src/_init.scss */
#dialog-submit-save:hover,
#dialog-submit-continue:hover,
#confirm-continue:hover,
#dialog-submit-activate:hover {
  background: #49a03b;
}

/* line 474, ../../sass/src/_backend.scss */
.dialog.requests #dialog-submit-save {
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmNDYzMSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2I3MTMwMCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ff4631), color-stop(100%, #b71300));
  background-image: -moz-linear-gradient(#ff4631, #b71300);
  background-image: -webkit-linear-gradient(#ff4631, #b71300);
  background-image: linear-gradient(#ff4631, #b71300);
  border-color: #ff341d;
}
/* line 207, ../../sass/src/_init.scss */
.dialog.requests #dialog-submit-save:hover {
  background: #e01700;
}

/* line 478, ../../sass/src/_backend.scss */
#dialog-submit-delete,
#dialog-submit-stop {
  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-color: #ffa51f;
}
/* line 207, ../../sass/src/_init.scss */
#dialog-submit-delete:hover,
#dialog-submit-stop:hover {
  background: #f59200;
}

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

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

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

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

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

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

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

/* line 537, ../../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 544, ../../sass/src/_backend.scss */
.actions > a.button,
.actions > * > a.button,
.actions input[type="submit"] {
  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;
  margin-right: 3px;
  padding: 2px 4px;
  /* was 4px 8px; */
}
/* line 562, ../../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 567, ../../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;
}

/** Application specific **/
/* line 577, ../../sass/src/_backend.scss */
#navigation-top {
  background-color: #A14FA1;
  font-size: 110%;
  padding: 0 1em;
}

/* line 583, ../../sass/src/_backend.scss */
#navigation-top:after {
  clear: both;
  display: block;
  content: " ";
}

/* line 589, ../../sass/src/_backend.scss */
ul.horizontal-menu {
  list-style: none;
}
/* line 591, ../../sass/src/_backend.scss */
ul.horizontal-menu li {
  float: left;
  height: 100%;
}
/* line 594, ../../sass/src/_backend.scss */
ul.horizontal-menu li a {
  padding: 0 1em;
}
/* line 597, ../../sass/src/_backend.scss */
ul.horizontal-menu li.active a {
  color: green;
}

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

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

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

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

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

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

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

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

/*
 * Admin UI
 */
/* line 654, ../../sass/src/_backend.scss */
.frame-header {
  display: table;
  background-color: #b76cb7;
  width: 100%;
  color: white;
  position: relative;
}

/* line 663, ../../sass/src/_backend.scss */
.frame-header > div {
  display: table-cell;
  vertical-align: middle;
  padding: 5px 10px;
}

/* line 669, ../../sass/src/_backend.scss */
.frame-title {
  width: 5%;
  font-size: 140%;
  white-space: nowrap;
}

/* line 675, ../../sass/src/_backend.scss */
.frame-extra {
  text-align: left;
}

/* line 679, ../../sass/src/_backend.scss */
.frame-extra > img {
  vertical-align: text-top;
  float: left;
  margin-right: 1em;
}

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

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

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

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

/* line 701, ../../sass/src/_backend.scss */
div.frame-filters {
  float: right;
  min-width: 5em;
  margin-top: 0.7em;
  margin-right: 1em;
}

/* line 708, ../../sass/src/_backend.scss */
.frame-filters div.submit {
  clear: none;
  margin-top: 0;
}

/* line 713, ../../sass/src/_backend.scss */
.frame-filters label {
  display: inline;
  padding-right: 1em;
  width: auto;
  color: white;
}

/* line 720, ../../sass/src/_backend.scss */
.frame-filters div.input {
  padding-bottom: 0;
}

/* line 724, ../../sass/src/_backend.scss */
div.frame-actions {
  float: right;
}

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

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

/*
 * Accordion widget
 */
/* line 746, ../../sass/src/_backend.scss */
.accordion {
  background: url('/images/accordion_expanded01.png?1591740192') no-repeat scroll left center;
  padding-left: 12px;
  cursor: pointer;
}

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

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

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

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

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

/* line 774, ../../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 785, ../../sass/src/_backend.scss */
div.input.radio.required legend:after {
  color: #e32;
  content: '*';
  display: inline;
}

/* line 792, ../../sass/src/_backend.scss */
div.input > input, div.input > select, div.input > textarea, div.input > .checkbox-multiple {
  float: left;
}
/* line 798, ../../sass/src/_backend.scss */
div.input > div.radio {
  float: left;
}
/* line 801, ../../sass/src/_backend.scss */
div.input > div.radio > ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
/* line 808, ../../sass/src/_backend.scss */
div.input > span a {
  float: left;
}
/* line 811, ../../sass/src/_backend.scss */
div.input .checkbox label {
  text-align: left;
  clear: left;
  float: none;
}
/* line 816, ../../sass/src/_backend.scss */
div.input .checkbox input {
  float: none;
}

/* line 822, ../../sass/src/_backend.scss */
.dynamic-form .field-help {
  font-size: 0.9em;
  font-weight: 300;
  line-height: 0.8em !important;
  font-style: italic;
  display: inline-block;
  padding-left: 1em;
  padding-top: 0.8em;
}

/*
 * To style <input type="file">
 * Currently unused
div.file-wrapper {
	float: left;
	position: relative;
}
div.file-wrapper input[type=file] {
	position: relative;
	z-index: 2;
	width: 15em;
	margin-right: 1.5em;
}
div.file-wrapper .fake-file {
	position: absolute;
	top: 0px;
	left: 6.3em;
	z-index: 4;
}
div.file-wrapper .fake-file input
{
	width: 9em;
}
 */
/**
 * view action styling
 */
/* line 861, ../../sass/src/_backend.scss */
table.view {
  clear: both;
  width: 100%;
}
/* line 166, ../../sass/src/_init.scss */
table.view th {
  border: 0;
  text-align: left;
  padding: 0.3em 0.3em;
  vertical-align: bottom;
  white-space: nowrap;
}
/* line 173, ../../sass/src/_init.scss */
table.view td {
  padding: 0.3em 0.3em;
  text-align: left;
}
/* line 177, ../../sass/src/_init.scss */
table.view td.actions {
  text-align: right;
}
/* line 863, ../../sass/src/_backend.scss */
table.view td.label {
  width: 11em;
  text-align: right;
  font-weight: bold;
  vertical-align: top;
}
/* line 869, ../../sass/src/_backend.scss */
table.view td.field {
  vertical-align: top;
  width: auto;
}
/* line 874, ../../sass/src/_backend.scss */
table.view td.actions {
  width: 5%;
  vertical-align: top;
  text-align: right;
}
/* line 879, ../../sass/src/_backend.scss */
table.view td.separator {
  font-size: 110%;
  color: #2C6877;
  padding: 0.4em 0.25em;
}
/* line 885, ../../sass/src/_backend.scss */
table.view .text-field {
  min-height: 50px;
  max-height: 200px;
  overflow-y: scroll;
  border: thin solid #DFDFDF;
}

/* AI */
/* Reports */
/* line 896, ../../sass/src/_backend.scss */
div.report-tokens {
  margin-left: 4em;
}

/* line 900, ../../sass/src/_backend.scss */
div.field table td,
div.report table td {
  vertical-align: top;
}

/* line 905, ../../sass/src/_backend.scss */
li.token {
  font-size: 80%;
}

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

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

/* line 925, ../../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?1591740192') no-repeat center center;
}

/* @@DS Copied from frontend */
/* line 938, ../../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 948, ../../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;
  /*rgb(255, 147, 147);*/
  padding: 1em;
  border: solid 1px #FF0000;
  /*rgb(255, 0, 0);*/
  opacity: 1;
}
/* line 961, ../../sass/src/_backend.scss */
div#flash-popup .flash-message {
  float: left;
  width: 90%;
}
/* line 965, ../../sass/src/_backend.scss */
div#flash-popup .buttons {
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
}
/* line 971, ../../sass/src/_backend.scss */
div#flash-popup .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-color: #ff2e2e;
}
/* line 207, ../../sass/src/_init.scss */
div#flash-popup .buttons .button:hover {
  background: #e60000;
}
/* line 973, ../../sass/src/_backend.scss */
div#flash-popup .buttons .button:hover {
  background: #F34B4B;
}

/* line 980, ../../sass/src/_backend.scss */
.user-details {
  display: inline-block;
  float: right;
  line-height: 5em;
  font-size: 12.8px;
  color: rgba(255, 255, 255, 0.7);
}
@media only screen and (max-width: 1100px) {
  /* line 980, ../../sass/src/_backend.scss */
  .user-details {
    float: left;
    padding-left: 0.3em;
    line-height: 1em;
    margin-left: 1em;
  }
}
@media only screen and (max-width: 840px) {
  /* line 980, ../../sass/src/_backend.scss */
  .user-details {
    font-size: 0.8em;
    line-height: 1.8em;
  }
}
/* line 997, ../../sass/src/_backend.scss */
.user-details a {
  color: white;
  font-weight: 300;
}
/* line 1000, ../../sass/src/_backend.scss */
.user-details a:hover {
  text-decoration: underline;
}

/**
 * Rework AI prototype
 */
/* line 1010, ../../sass/src/_backend.scss */
ul.horizontal-tabs {
  padding: 0;
  list-style: none;
  margin: 0;
}
/* line 1015, ../../sass/src/_backend.scss */
ul.horizontal-tabs li {
  height: 30px;
  display: block;
  overflow: hidden;
  float: left;
  background-color: #A14FA1;
  margin-top: 0.2em;
  margin-left: 1px;
  vertical-align: bottom;
}
/* line 1024, ../../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 #A14FA1;
  border-bottom: none;
}
/* line 1034, ../../sass/src/_backend.scss */
ul.horizontal-tabs li.active {
  background-color: #FFFFFF;
}
/* line 1037, ../../sass/src/_backend.scss */
ul.horizontal-tabs li:hover {
  background-color: #ddafe0;
}
/* line 1039, ../../sass/src/_backend.scss */
ul.horizontal-tabs li:hover a {
  border-color: #ddafe0;
}
/* line 1043, ../../sass/src/_backend.scss */
ul.horizontal-tabs li.active a {
  color: #A14FA1;
}

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

/* line 1060, ../../sass/src/_backend.scss */
ul.text-locale.view {
  float: right;
}

/* line 1064, ../../sass/src/_backend.scss */
ul.text-locale.view li,
ul.text-locale.list li {
  font-family: monospace;
  font-weight: normal;
  text-align: center;
  margin: 0 0.25em 0 0;
  line-height: 1.4em;
  color: #4c7a34;
  padding: 0 0.25em;
}
/* line 1073, ../../sass/src/_backend.scss */
ul.text-locale.view li.missing,
ul.text-locale.list li.missing {
  color: #aa671d;
}

/* line 1078, ../../sass/src/_backend.scss */
ul.text-locale.tabs li {
  cursor: pointer;
  background-color: #fad6a5;
  color: #4c7a34;
  margin: 0 2px 0 0;
  padding: 0.25em 0.8em;
}
/* line 1084, ../../sass/src/_backend.scss */
ul.text-locale.tabs li:hover {
  background-color: #fae0be;
}
/* line 1087, ../../sass/src/_backend.scss */
ul.text-locale.tabs li.missing {
  color: #aa671d;
}
/* line 1090, ../../sass/src/_backend.scss */
ul.text-locale.tabs li.selected {
  background-color: #faeb77;
}

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

/* line 1100, ../../sass/src/_backend.scss */
div.field ul.text-locale.list,
div.setting ul.text-locale.list,
div.report ul.text-locale.list {
  display: block;
  float: right;
}

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

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

/* line 1120, ../../sass/src/_backend.scss */
.ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button {
  font-size: inherit;
}

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

/* line 1130, ../../sass/src/_backend.scss */
#language-switch {
  float: right;
  margin-right: 1em;
  line-height: 4em;
}

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

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

/* line 1152, ../../sass/src/_backend.scss */
.ui-widget-header {
  background: url('/images/ui-bg_flat_100_a14fa1_40x100.png?1591740192') repeat-x scroll 50% 50% #A14FA1;
  border: 1px solid #A14FA1;
}

/* line 1157, ../../sass/src/_backend.scss */
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
  background: url('/images/ui-bg_flat_100_a14fa1_40x100.png?1591740192') repeat-x scroll 50% 50% #A14FA1;
  border: 1px solid #A14FA1;
}

/* line 1164, ../../sass/src/_backend.scss */
.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus {
  border: 1px solid #ddafe0;
  background: #ddafe0 url('/images/ui-bg_flat_100_ddafe0_40x100.png?1591740192') 50% 50% repeat-x;
}

/* line 1174, ../../sass/src/_backend.scss */
.ui-dialog .ui-dialog-content {
  padding: 0;
}

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

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

/* line 1188, ../../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 1194, ../../sass/src/_backend.scss */
.ui-datepicker td.ui-datepicker-today a {
  background-color: #ccffcc !important;
}
/* line 1197, ../../sass/src/_backend.scss */
.ui-datepicker td.ui-datepicker-current-day a {
  background-color: #c88ec8 !important;
}
/* line 1200, ../../sass/src/_backend.scss */
.ui-datepicker .ui-widget-header {
  color: #222222;
  font-weight: normal;
}
/* line 1204, ../../sass/src/_backend.scss */
.ui-datepicker.ui-widget-content {
  background: url('/images/ui-bg_flat_30_cccccc_40x100.png?1591740192') repeat-x scroll 50% 50% #cccccc;
  border: 1px solid #454545;
  color: #454545;
}
/* line 1209, ../../sass/src/_backend.scss */
.ui-datepicker .ui-widget-header .ui-icon {
  background-image: url('/images/ui-icons_454545_256x240.png?1591740192');
}
/* line 1212, ../../sass/src/_backend.scss */
.ui-datepicker tr {
  background-color: inherit;
}
/* line 1215, ../../sass/src/_backend.scss */
.ui-datepicker th, .ui-datepicker td {
  width: 31px;
  padding: 2px;
}
/* line 1219, ../../sass/src/_backend.scss */
.ui-datepicker td a:hover {
  background-color: #ddafe0 !important;
}

/* line 1226, ../../sass/src/_backend.scss */
div.dialog.form {
  width: 880px;
  padding: 0.8em;
  overflow: hidden;
}

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

/* line 1236, ../../sass/src/_backend.scss */
.dialog div.buttons {
  padding: 0.5em 0 0 0;
  text-align: right;
}

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

/* line 1247, ../../sass/src/_backend.scss */
.clear {
  clear: both !important;
  width: 97.3% !important;
}

/* line 1252, ../../sass/src/_backend.scss */
tr.report-index {
  cursor: pointer;
}

/* line 1256, ../../sass/src/_backend.scss */
tr.report-index:hover {
  background-color: #CFCFCF;
}

/* line 1260, ../../sass/src/_backend.scss */
tr.index.has-view {
  cursor: pointer;
}

/*
 * cog Dropdown menu
 */
/* line 1267, ../../sass/src/_backend.scss */
.cog-buttonset {
  position: relative;
  display: inline-block;
}

/* line 1272, ../../sass/src/_backend.scss */
.cog-buttonset > a {
  padding: 2px 5px;
}

/* line 1276, ../../sass/src/_backend.scss */
.cog-buttonset > a:after {
  content: '  ';
  white-space: nowrap;
  background: url('/images/more_icon.png?1591740192') no-repeat scroll left center;
  width: 7px;
  height: 7px;
  display: inline-block;
  margin-left: 0.25em;
}

/* line 1286, ../../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 1297, ../../sass/src/_backend.scss */
.cog-buttonset ul li {
  display: table-row;
  text-align: left;
}

/* line 1302, ../../sass/src/_backend.scss */
.cog-buttonset ul li.link a:hover {
  background-color: #DFDFDF;
}

/* line 1306, ../../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 1317, ../../sass/src/_backend.scss */
div.fields-legend li span {
  font-weight: bold;
}

/***********************************************************
 * prdb styles
 ***********************************************************/
/**
 * Request dialogs
 */
/* Warning confirm dialog */
/* line 1330, ../../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 1339, ../../sass/src/_backend.scss */
div#confirmMask div#confirmPopup {
  clear: both;
  background-color: #FCCF81;
  border: solid 2px #B99B66;
  padding: 1em;
  width: 334px;
  text-align: left;
  vertical-align: middle;
  overflow: hidden;
}
/* line 1349, ../../sass/src/_backend.scss */
div#confirmMask div#confirmMsg {
  float: left;
  color: #EC1E1E;
}

/* line 1355, ../../sass/src/_backend.scss */
.help-icon {
  float: left;
  margin-top: 0.3em;
  margin-left: 0.4em;
  padding: 0.1em 0.5em;
  border-radius: 0.4em;
  font-weight: normal;
  font-size: 0.6em;
  line-height: 2em;
  color: #444444;
  background-color: #dedede;
}
/* line 1366, ../../sass/src/_backend.scss */
.help-icon:hover {
  background-color: rgba(48, 48, 48, 0.2);
  color: white;
}

/* line 1372, ../../sass/src/_backend.scss */
textarea#RequestRemarks,
textarea#RequestComments {
  min-height: 3em;
}

/* line 1377, ../../sass/src/_backend.scss */
table#additional-dates {
  width: 100%;
}
/* line 1379, ../../sass/src/_backend.scss */
table#additional-dates .field-date {
  padding-left: 1em;
  padding-right: 1em;
}
/* line 1383, ../../sass/src/_backend.scss */
table#additional-dates .actions {
  width: 11%;
  text-align: center;
}
/* line 1387, ../../sass/src/_backend.scss */
table#additional-dates th {
  text-align: left;
  padding: 0.2em 0 0 0;
}
/* line 1390, ../../sass/src/_backend.scss */
table#additional-dates th.additional-date-label {
  padding: 0;
  width: 162px;
  text-align: right;
}
/* line 1394, ../../sass/src/_backend.scss */
table#additional-dates th.additional-date-label img, table#additional-dates th.additional-date-label span {
  float: right;
}
/* line 1399, ../../sass/src/_backend.scss */
table#additional-dates td {
  line-height: 1.5em;
}

/* line 1404, ../../sass/src/_backend.scss */
table.request-info {
  width: 100%;
  margin-left: 0.7em;
  border: none !important;
}
/* line 1408, ../../sass/src/_backend.scss */
table.request-info tr {
  background: inherit !important;
  border: none !important;
}
/* line 1411, ../../sass/src/_backend.scss */
table.request-info tr td {
  width: 45%;
  padding: 0;
}
/* line 1416, ../../sass/src/_backend.scss */
table.request-info span.request-info-label {
  font-weight: bold;
  float: left;
}
/* line 1420, ../../sass/src/_backend.scss */
table.request-info span.request-info-field {
  padding: 0 0.6em;
  float: left;
}

/* line 1427, ../../sass/src/_backend.scss */
div.request.view div.frame-data {
  display: table;
  width: 100%;
  background: inherit;
}
/* line 1431, ../../sass/src/_backend.scss */
div.request.view div.frame-data div.input {
  display: table-row;
  width: 100%;
}
/* line 1434, ../../sass/src/_backend.scss */
div.request.view div.frame-data div.input div.label {
  display: table-cell;
  font-weight: bold;
  width: 162px;
  float: left;
  text-align: right;
  padding-right: 1em;
  padding-top: 2px;
  vertical-align: top;
  padding-top: 0;
  float: none;
  white-space: nowrap;
  vertical-align: top;
}
/* line 1442, ../../sass/src/_backend.scss */
div.request.view div.frame-data div.input div.field {
  display: table-cell;
}
/* line 1448, ../../sass/src/_backend.scss */
div.request.view div.related.calendar th {
  padding: 0 0 0 5px;
}
/* line 1451, ../../sass/src/_backend.scss */
div.request.view div.related.calendar td {
  padding: 0 0 0 5px;
}

/* line 1458, ../../sass/src/_backend.scss */
div.requests.index div#requests-tabs {
  overflow: hidden;
}
/* line 1461, ../../sass/src/_backend.scss */
div.requests.index div#tab-header {
  float: left;
  padding: 0.3em 0.5em;
}
/* line 1464, ../../sass/src/_backend.scss */
div.requests.index div#tab-header form {
  clear: none;
  display: inline;
}
/* line 1468, ../../sass/src/_backend.scss */
div.requests.index div#tab-header div.input {
  float: left;
  padding: 0;
}
/* line 1472, ../../sass/src/_backend.scss */
div.requests.index div#tab-header div.actions.search {
  margin-left: 10px;
  float: left;
}
/* line 1476, ../../sass/src/_backend.scss */
div.requests.index div#tab-header span.actions.new {
  margin-left: 1.5em;
  float: left;
}
/* line 1481, ../../sass/src/_backend.scss */
div.requests.index table {
  margin-top: 0.5em;
  font-size: 90%;
}
/* line 1484, ../../sass/src/_backend.scss */
div.requests.index table tr.request.index {
  vertical-align: top;
}
/* line 1488, ../../sass/src/_backend.scss */
div.requests.index table .col-pray-for {
  width: 18%;
}
/* line 1492, ../../sass/src/_backend.scss */
div.requests.index table .field-pray-for {
  font-weight: bolder;
  color: #cc0000;
}
/* line 1497, ../../sass/src/_backend.scss */
div.requests.index tr.highlight-one {
  background-color: #E5FAE7;
}
/* line 1500, ../../sass/src/_backend.scss */
div.requests.index tr.highlight-one:nth-child(even) td {
  background-color: rgba(0, 0, 0, 0.05);
}
/* line 1504, ../../sass/src/_backend.scss */
div.requests.index tr.highlight-two {
  background-color: #FDE7FF;
}
/* line 1507, ../../sass/src/_backend.scss */
div.requests.index tr.highlight-two:nth-child(even) td {
  background-color: rgba(0, 0, 0, 0.05);
}

/* line 1516, ../../sass/src/_backend.scss */
div.reports.execute table,
div.prayerlists.execute table {
  width: 100%;
}
/* line 1519, ../../sass/src/_backend.scss */
div.reports.execute table tr .actions > a.button,
div.prayerlists.execute table tr .actions > a.button {
  margin-right: 8px;
}
/* line 1523, ../../sass/src/_backend.scss */
div.reports.execute table tr:nth-child(odd),
div.prayerlists.execute table tr:nth-child(odd) {
  background: #f9f9f9 !important;
}
/* line 1526, ../../sass/src/_backend.scss */
div.reports.execute table tr:nth-child(even),
div.prayerlists.execute table tr:nth-child(even) {
  background: inherit !important;
}
/* line 1529, ../../sass/src/_backend.scss */
div.reports.execute table tr:hover,
div.prayerlists.execute table tr:hover {
  border: 1px solid #dadada;
}
/* line 1531, ../../sass/src/_backend.scss */
div.reports.execute table tr:hover td,
div.prayerlists.execute table tr:hover td {
  border: none;
}
/* line 1535, ../../sass/src/_backend.scss */
div.reports.execute table td,
div.prayerlists.execute table td {
  padding: 0.3em;
}
/* line 1537, ../../sass/src/_backend.scss */
div.reports.execute table td.actions,
div.prayerlists.execute table td.actions {
  text-align: right;
}

/* line 1544, ../../sass/src/_backend.scss */
div.report-output {
  font-size: 14.4px;
  line-height: 1em;
  margin-bottom: 0.75em;
  color: #000000 !important;
}
/* line 1551, ../../sass/src/_backend.scss */
div.report-output table tr:nth-child(even) {
  background: #f9f9f9;
}
/* line 1554, ../../sass/src/_backend.scss */
div.report-output table tr:nth-child(odd) {
  background: inherit;
}
/* line 1558, ../../sass/src/_backend.scss */
div.report-output table th, div.report-output table td {
  padding: 0.2em;
  text-align: left;
  vertical-align: top;
  background-color: inherit;
}

/* line 1567, ../../sass/src/_backend.scss */
div.report-separator,
div.list-separator {
  clear: both;
  background-color: #A14FA1;
  color: white;
  font-size: 110%;
  padding: 0.5em;
  margin-top: 0.25em;
  margin-bottom: 0.75em;
}

/* line 1578, ../../sass/src/_backend.scss */
div.list-container {
  margin: auto;
  width: 860px;
}

/* line 1587, ../../sass/src/_backend.scss */
body.login-page {
  font-size: 100%;
}

/* line 1591, ../../sass/src/_backend.scss */
.login-page-wrap {
  width: 70%;
  margin: 0 15%;
}
@media only screen and (max-width: 1200px) {
  /* line 1591, ../../sass/src/_backend.scss */
  .login-page-wrap {
    width: 80%;
    margin: 0 10%;
  }
}
@media only screen and (max-width: 840px) {
  /* line 1591, ../../sass/src/_backend.scss */
  .login-page-wrap {
    width: 90%;
    margin: 0 5%;
  }
}
@media only screen and (max-width: 840px) {
  /* line 1591, ../../sass/src/_backend.scss */
  .login-page-wrap {
    width: 100%;
    margin: 0;
  }
}

/* line 1608, ../../sass/src/_backend.scss */
.login-header {
  position: relative;
  width: 100%;
  background: transparent;
  padding: 0 0 1.5em 0;
  text-align: center;
  color: black;
}
@media only screen and (max-width: 840px) {
  /* line 1608, ../../sass/src/_backend.scss */
  .login-header {
    padding: 0;
  }
}
@media only screen and (max-width: 530px) {
  /* line 1608, ../../sass/src/_backend.scss */
  .login-header {
    width: 80%;
    padding: 0 0 0.5em 0;
  }
}

/* line 1624, ../../sass/src/_backend.scss */
.login-header h1 {
  float: none;
  font-size: 48px;
  line-height: 48px;
  font-weight: 400;
  padding-top: 0.8em;
  padding-bottom: 0.8em;
  margin: 0;
}
@media only screen and (max-width: 840px) {
  /* line 1624, ../../sass/src/_backend.scss */
  .login-header h1 {
    font-size: 2em;
    padding: 0;
  }
}
@media only screen and (max-width: 682px) {
  /* line 1624, ../../sass/src/_backend.scss */
  .login-header h1 {
    font-size: 2em;
    line-height: 1em;
    padding: 0 0 1em 0;
  }
}
@media only screen and (max-width: 530px) {
  /* line 1624, ../../sass/src/_backend.scss */
  .login-header h1 {
    font-size: 1.4em;
    line-height: 2.4em;
    padding: 0 0 0.5em 0;
  }
}

/* line 1648, ../../sass/src/_backend.scss */
.login-header h2 {
  padding-bottom: 0;
  display: block;
  width: 100%;
}
@media only screen and (max-width: 840px) {
  /* line 1648, ../../sass/src/_backend.scss */
  .login-header h2 {
    padding: 0;
  }
}
@media only screen and (max-width: 682px) {
  /* line 1648, ../../sass/src/_backend.scss */
  .login-header h2 {
    padding: 0 0 1em 0;
    line-height: 1.5em;
  }
}
@media only screen and (max-width: 530px) {
  /* line 1648, ../../sass/src/_backend.scss */
  .login-header h2 {
    display: none;
  }
}

/* line 1664, ../../sass/src/_backend.scss */
.login-container {
  background: url('/images/login/imac.png?1591740192') no-repeat scroll center;
  background-size: contain;
  position: relative;
  width: 100%;
  height: 485px;
  z-index: 100;
  margin: 0 auto;
}
@media only screen and (max-width: 682px) {
  /* line 1664, ../../sass/src/_backend.scss */
  .login-container {
    background: #e7e7e7;
    padding: 1em 0 2em 0;
    height: auto;
  }
}
@media only screen and (max-width: 530px) {
  /* line 1664, ../../sass/src/_backend.scss */
  .login-container {
    background: #e7e7e7;
    width: 100%;
  }
}

/* line 1684, ../../sass/src/_backend.scss */
.language div.input.radio label {
  padding-left: 0.5em !important;
}

@media only screen and (max-width: 620px) {
  /* line 1689, ../../sass/src/_backend.scss */
  .login-container div.input.radio input {
    float: left;
    clear: left;
    margin: 0.5em 0.5em 0 0;
  }

  /* line 1694, ../../sass/src/_backend.scss */
  .login-container div.input.radio label {
    float: left;
    clear: right;
    padding: 0;
    margin: 0.6em 0.5em 0 0;
  }
}
/* line 1702, ../../sass/src/_backend.scss */
.login-container div.input.radio legend,
.login-container div.input label {
  font-size: 1em;
  line-height: 1em;
  padding-right: 0;
  margin-bottom: 0;
  width: 100%;
}

/* line 1711, ../../sass/src/_backend.scss */
.login-container div.input label {
  text-align: left;
  font-weight: 400;
  color: #000000;
  padding: 0.5em 0.5em 0.25em 0;
}

/* line 75, ../scss/_login.scss */
/* line 1719, ../../sass/src/_backend.scss */
.login-form {
  margin: 0 auto;
  width: 25em;
}
@media only screen and (max-width: 682px) {
  /* line 1719, ../../sass/src/_backend.scss */
  .login-form {
    width: 82%;
  }
}
/* line 1725, ../../sass/src/_backend.scss */
.login-form div.login > div.input {
  height: 88px;
}

/* line 1731, ../../sass/src/_backend.scss */
div.login-form label,
div.login-form input {
  display: block;
  width: 100%;
  padding: 0.4em;
}
/* line 1737, ../../sass/src/_backend.scss */
div.login-form div.required label:after {
  content: '';
}
/* line 1740, ../../sass/src/_backend.scss */
div.login-form div.submit {
  width: 100%;
  float: none;
  padding: 0.5em 0 0 0;
}
/* line 1744, ../../sass/src/_backend.scss */
div.login-form div.submit .button {
  padding: 0.5em 1em;
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2RkYWZlMCIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2ExNGZhMSIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ddafe0), color-stop(100%, #a14fa1));
  background-image: -moz-linear-gradient(#ddafe0, #a14fa1);
  background-image: -webkit-linear-gradient(#ddafe0, #a14fa1);
  background-image: linear-gradient(#ddafe0, #a14fa1);
  border-color: #d7a0da;
  color: white;
  border-radius: 20px;
}
/* line 207, ../../sass/src/_init.scss */
div.login-form div.submit .button:hover {
  background: #b465b4;
}
/* line 1750, ../../sass/src/_backend.scss */
div.login-form div.submit #submit {
  margin-top: 0.5em;
}
@media only screen and (max-width: 530px) {
  /* line 1750, ../../sass/src/_backend.scss */
  div.login-form div.submit #submit {
    width: 100%;
    margin-top: 2em;
  }
}

/* line 1760, ../../sass/src/_backend.scss */
.language {
  text-align: center;
  padding-top: 3em;
}
@media only screen and (max-width: 682px) {
  /* line 1760, ../../sass/src/_backend.scss */
  .language {
    text-align: center;
    padding-top: 0.5em;
    overflow: hidden;
  }
}
@media only screen and (max-width: 682px) {
  /* line 1768, ../../sass/src/_backend.scss */
  .language .input.radio {
    width: 19em;
    margin: 0 auto;
    padding-left: 3em;
  }
}
@media only screen and (max-width: 530px) {
  /* line 1768, ../../sass/src/_backend.scss */
  .language .input.radio {
    margin: 0;
    width: 100%;
    padding-left: 2em;
  }
}

/* line 1782, ../../sass/src/_backend.scss */
.input.password.required a {
  color: #6d6d6d;
  font-style: italic;
}

/* line 1787, ../../sass/src/_backend.scss */
.input.password.required a:hover {
  text-decoration: underline;
}

/* line 1795, ../../sass/src/_backend.scss */
.disclaimer {
  float: right;
  color: white;
  padding: 2em;
}

/* line 1801, ../../sass/src/_backend.scss */
.pass a {
  padding-left: 2em;
  font-size: 0.8em;
  color: #646464;
}

/* line 1807, ../../sass/src/_backend.scss */
.login-footer {
  background: #ddafe0;
  height: 300px;
  position: fixed;
  float: left;
  width: 100%;
  z-index: 1;
  margin-top: -10em;
  bottom: 0;
}

@media only screen and (max-width: 682px) {
  /* line 1820, ../../sass/src/_backend.scss */
  .login-footer {
    display: none;
  }
}
/* line 1825, ../../sass/src/_backend.scss */
.no-script {
  margin: 0 15%;
  width: 70%;
}

/* line 1830, ../../sass/src/_backend.scss */
.logo {
  background-color: transparent;
  background-image: url('/images/login/login-logo.png?1591740619');
  background-size: contain;
  position: relative;
  width: 5em;
  height: 5em;
  margin: 1em auto 0;
}
@media only screen and (max-width: 530px) {
  /* line 1830, ../../sass/src/_backend.scss */
  .logo {
    width: 15%;
    height: 4em;
    margin: 1em 0 1em 1em;
    display: inline-block;
    float: left;
  }
}

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

/*
 * 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: 0.1em;
  vertical-align: bottom;
}
/* line 30, ../../sass/src/_jqsimplemenu.scss */
.menubuilder li {
  float: left;
  list-style-type: none;
}
/* line 33, ../../sass/src/_jqsimplemenu.scss */
.menubuilder li a {
  display: block;
  line-height: 26px;
  background: url('/images/no_dropdown.png?1591740192') no-repeat 96% 50%;
  padding-right: 20px;
}
/* line 39, ../../sass/src/_jqsimplemenu.scss */
.menubuilder li ul li a {
  display: inline-block;
  width: 8em;
  white-space: nowrap;
}
/* line 45, ../../sass/src/_jqsimplemenu.scss */
.menubuilder li.pull-down > a {
  background-image: url('/images/darrow.png?1591740192');
}

/* Colors */
/* line 54, ../../sass/src/_jqsimplemenu.scss */
.menubuilder {
  background-color: inherit;
}
/* line 56, ../../sass/src/_jqsimplemenu.scss */
.menubuilder a {
  text-decoration: none;
  color: #ffffff;
  padding: 0.2em 1em;
}
/* line 61, ../../sass/src/_jqsimplemenu.scss */
.menubuilder li {
  background-color: #A14FA1;
}
/* line 63, ../../sass/src/_jqsimplemenu.scss */
.menubuilder li ul {
  border: 1px solid #A14FA1;
}
/* line 67, ../../sass/src/_jqsimplemenu.scss */
.menubuilder li.active > a {
  background-color: #ffffff;
  color: #A14FA1;
}
/* line 71, ../../sass/src/_jqsimplemenu.scss */
.menubuilder li a:hover,
.menubuilder li.active a:hover {
  background-color: #ddafe0;
  color: #ffffff;
}

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

/* 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;
  padding-left: 0.2em;
}
/* line 80, ../../sass/src/_jquery.ui.selectmenu.scss */
.ui-selectmenu-menu li a div, .ui-selectmenu-status div {
  width: 100%;
  border-bottom: 1px dotted #aaaaaa;
}

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

/* line 92, ../../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 99, ../../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 111, ../../sass/src/_jquery.ui.selectmenu.scss */
.ui-selectmenu-status span {
  display: block;
  margin-bottom: .2em;
}

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

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

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

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

/* line 139, ../../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 146, ../../sass/src/_jquery.ui.selectmenu.scss */
.ui-selectmenu-menu .ui-selectmenu-group ul {
  margin: 0;
  padding: 0;
}

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

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

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

/* line 169, ../../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 186, ../../sass/src/_jquery.ui.selectmenu.scss */
.ui-selectmenu.ui-state-default .ui-icon {
  background-image: url('/images/ui-icons_222222_256x240.png?1591740192');
}

/**
 *
 * SCSS for PRDB - Data-related styles
 *
 * Selectors that depend on specific table data the applicvation uses
 * e.g. service_id, Request.status etc...
 */
/* line 12, ../../sass/src/_data_related.scss */
.service-1 {
  color: #0000ff;
}

/* line 15, ../../sass/src/_data_related.scss */
.service-2 {
  color: #9900ff;
}

/* line 18, ../../sass/src/_data_related.scss */
.service-3 {
  color: #ff0000;
}

/* line 21, ../../sass/src/_data_related.scss */
.service-4 {
  color: #000000;
}

/* line 24, ../../sass/src/_data_related.scss */
.service-5 {
  color: #33cf42;
}

/* line 27, ../../sass/src/_data_related.scss */
.service-6 {
  color: #b45f06;
}

/* line 30, ../../sass/src/_data_related.scss */
.service-7 {
  color: #ff0000;
}

/* line 33, ../../sass/src/_data_related.scss */
.service-8 {
  color: darkorange;
}

/* line 36, ../../sass/src/_data_related.scss */
.service-9 {
  color: #33cf42;
}

/* line 41, ../../sass/src/_data_related.scss */
.request-status-draft {
  color: #FF0000;
}

/* line 44, ../../sass/src/_data_related.scss */
.request-status-active {
  color: #33cf42;
}

/* line 47, ../../sass/src/_data_related.scss */
.request-status-stopped {
  color: #000000;
}

/* line 50, ../../sass/src/_data_related.scss */
.request-status-completed {
  color: #b45f06;
}

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

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