/**
   * @file
   * System wide base styles.
   */
  /**
   * @file
   * Base styles for autocomplete functionality.
   *
   * @see autocomplete.js
   */
  /* Suggestion list */
  #autocomplete {
    position: absolute;
    z-index: 100;
    overflow: hidden;
  }
  #autocomplete ul {
    margin: 0;
    padding: 0;
    list-style: none;
    list-style-image: none;
  }
  #autocomplete li {
    cursor: default;
    white-space: pre;
    zoom: 1;
    /* IE7 */
  }
  
  /* Animated throbber */
  html.js .form-autocomplete {
    background-image: url(https://www.mit-bund.de/sites/all/themes/omega/omega/images/misc/throbber.gif?1382488163);
    background-position: 100% 2px;
    /* LTR */
    background-repeat: no-repeat;
  }
  
  html.js .throbbing {
    background-position: 100% -18px;
    /* LTR */
  }
  
  /**
   * @file
   * Base styles for collapsible fieldset functionality.
   *
   * @see collapse.js
   */
  html.js fieldset.collapsed {
    height: 1em;
  }
  
  html.js fieldset.collapsed .fieldset-wrapper {
    display: none;
  }
  
  fieldset.collapsible {
    position: relative;
  }
  
  fieldset.collapsible .fieldset-legend {
    display: block;
  }
  
  /**
   * @file
   * Base styles for the resizable textareas functionality.
   *
   * @see textarea.js
   */
  .form-textarea-wrapper textarea {
    display: block;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    margin: 0;
  }
  
  .resizable-textarea .grippie {
    height: 9px;
    background: #eee url(https://www.mit-bund.de/sites/all/themes/omega/omega/images/misc/grippie.png?1382488163) no-repeat center 2px;
    border: 1px solid #ddd;
    border-top-width: 0;
    cursor: s-resize;
    overflow: hidden;
  }
  
  /**
   * @file
   * Base styling for the tabledrag behavior.
   *
   * @see tabledrag.js
   */
  body.drag {
    cursor: move;
  }
  
  /* Tabledrag Handle */
  .tabledrag-handle {
    float: left;
    /* LTR */
    overflow: hidden;
    text-decoration: none;
    cursor: move;
  }
  .tabledrag-handle .handle {
    height: 15px;
    width: 15px;
    margin: -0.4em 0;
    padding: 0.4em;
    background: url(https://www.mit-bund.de/sites/all/themes/omega/omega/images/misc/draggable.png?1382488163) no-repeat 6px 9px;
  }
  .tabledrag-handle:hover {
    text-decoration: none;
  }
  
  .tabledrag-handle-hover .handle {
    background-position: 6px -11px;
  }
  
  /* Indentation */
  .indentation {
    float: left;
    /* LTR */
    width: 20px;
  }
  
  /* Tree Images */
  .tree-child {
    background: url(https://www.mit-bund.de/sites/all/themes/omega/omega/images/misc/tree.png?1382488163) no-repeat 12px center;
    /* LTR */
  }
  
  .tree-child-last {
    background: url(https://www.mit-bund.de/sites/all/themes/omega/omega/images/misc/tree-bottom.png?1382488163) no-repeat 12px center;
    /* LTR */
  }
  
  .tree-child-horizontal {
    background: url(https://www.mit-bund.de/sites/all/themes/omega/omega/images/misc/tree.png?1382488163) no-repeat -12px center;
  }
  
  /* Toggle Weight Link */
  .tabledrag-toggle-weight-wrapper {
    text-align: right;
    /* LTR */
  }
  
  /**
   * @file
   * Base styling for the tableheader behavior.
   *
   * @see tableheader.js
   */
  .sticky-header {
    margin-top: 0;
    background-color: #fff;
  }
  
  /**
   * @file
   * Base styles for the progress behavior.
   *
   * @see progress.js
   */
  /* Bar */
  .progress .bar {
    background-color: #fff;
    border: 1px solid;
  }
  .progress .filled {
    height: 1.5em;
    width: 5px;
    background-color: #000;
  }
  .progress .percentage {
    float: right;
    /* LTR */
  }
  
  /* Throbber */
  .ajax-progress {
    display: inline-block;
  }
  .ajax-progress .throbber {
    float: left;
    /* LTR */
    height: 15px;
    width: 15px;
    margin: 2px;
    background: transparent url(https://www.mit-bund.de/sites/all/themes/omega/omega/images/misc/throbber.gif?1382488163) no-repeat 0px -18px;
  }
  .ajax-progress .message {
    padding-left: 20px;
  }
  
  tr .ajax-progress .throbber {
    margin: 0 2px;
  }
  
  .ajax-progress-bar {
    width: 16em;
  }
  
  /**
   * @file
   * System utility classes.
   */
  /**
   * Inline items.
   */
  .container-inline div,
  .container-inline label {
    display: inline;
  }
  
  /* Fieldset contents always need to be rendered as block. */
  .container-inline .fieldset-wrapper {
    display: block;
  }
  
  /**
   * Prevent text wrapping.
   */
  .nowrap {
    white-space: nowrap;
  }
  
  /**
   * For anything you want to hide on page load when JS is enabled, so
   * that you can use the JS to control visibility and avoid flicker.
   */
  html.js .js-hide {
    display: none;
  }
  
  /**
   * Hide elements from all users.
   *
   * Used for elements which should not be immediately displayed to any user. An
   * example would be a collapsible fieldset that will be expanded with a click
   * from a user. The effect of this class can be toggled with the jQuery show()
   * and hide() functions.
   */
  .element-hidden {
    display: none;
  }
  
  /**
   * Hide elements visually, but keep them available for screen-readers.
   *
   * Used for information required for screen-reader users to understand and use
   * the site where visual display is undesirable. Information provided in this
   * manner should be kept concise, to avoid unnecessary burden on the user.
   * "!important" is used to prevent unintentional overrides.
   */
  .element-invisible {
    position: absolute !important;
    clip: rect(1px 1px 1px 1px);
    /* IE6, IE7 */
    clip: rect(1px, 1px, 1px, 1px);
    overflow: hidden;
    height: 1px;
  }
  
  /**
   * The .element-focusable class extends the .element-invisible class to allow
   * the element to be focusable when navigated to via the keyboard.
   */
  .element-invisible.element-focusable:active,
  .element-invisible.element-focusable:focus {
    position: static !important;
    clip: auto;
    overflow: visible;
    height: auto;
  }
  
  /**
   * Use the clearfix from Compass.
   */
  .clearfix {
    *zoom: 1;
  }
  .clearfix:after {
    content: "";
    display: table;
    clear: both;
  }/**/
/**
   * @file
   * Menu and navigational styles.
   */
  /**
   * @file
   * Styles for a hierarchical menu as generated by theme_menu_tree().
   */
  .menu {
    border: none;
    list-style: none;
    text-align: left;
    /* LTR */
    /* Menu Item Hierarchy Modifiers */
  }
  .menu .expanded {
    list-style-image: url(https://www.mit-bund.de/sites/all/themes/omega/omega/images/misc/menu-expanded.png?1382488163);
    list-style-type: circle;
  }
  .menu .collapsed {
    list-style-image: url(https://www.mit-bund.de/sites/all/themes/omega/omega/images/misc/menu-collapsed.png?1382488163);
    /* LTR */
    list-style-type: disc;
  }
  .menu .leaf {
    list-style-image: url(https://www.mit-bund.de/sites/all/themes/omega/omega/images/misc/menu-leaf.png?1382488163);
    list-style-type: square;
  }
  
  /* Menu State Modifiers */
  .active {
    color: #000;
  }
  
  .menu-disabled {
    background: #ccc;
  }
  
  /**
   * @file
   * Inline links as generated by theme_links().
   */
  .links--inline {
    *zoom: 1;
    list-style-type: none;
    margin: 0;
    padding: 0;
  }
  .links--inline:after {
    content: "";
    display: table;
    clear: both;
  }
  .links--inline li {
    float: left;
    /* LTR */
    margin-right: 1em;
    /* LTR */
  }
  .links--inline li > a {
    display: block;
  }
  
  /**
   * @file
   * Theme styles for markup generated by theme_menu_local_tasks().
   */
  /* Tabs */
  .tabs a {
    background-color: #eee;
    text-decoration: none;
  }
  .tabs a.active {
    background-color: #ccc;
  }
  .tabs a:hover, .tabs a:focus {
    background-color: #bbb;
  }
  
  /* Primary Tabs */
  .tabs--primary {
    margin-bottom: 1em;
    border-bottom: 1px solid #bbb;
  }
  .tabs--primary a {
    padding: 0.3em 0.8em;
  }
  
  /* Secondary Tabs */
  .tabs--secondary a {
    padding: 0.2em 0.5em;
    margin: 0.4em 0;
    font-size: 0.9em;
  }/**/
/**
   * @file
   * Theme for for system messages.
   */
  /* Message */
  .messages {
    margin: 6px 0;
    padding: 10px 10px 10px 50px;
    /* LTR */
    background-position: 8px 8px;
    /* LTR */
    background-repeat: no-repeat;
    border: 1px solid;
  }
  .messages ul {
    margin: 0 0 0 1em;
    /* LTR */
    padding: 0;
  }
  .messages li {
    list-style-image: none;
  }
  
  /* Status Messages */
  .messages--status {
    background-image: url(https://www.mit-bund.de/sites/all/themes/omega/omega/images/misc/message-24-ok.png?1382488163);
    border-color: #be7;
  }
  
  .messages--status,
  tr.ok {
    background-color: #f8fff0;
  }
  
  .messages--status,
  .ok {
    color: #234600;
  }
  
  /* Warning Messages */
  .messages--warning {
    background-image: url(https://www.mit-bund.de/sites/all/themes/omega/omega/images/misc/message-24-warning.png?1382488163);
    border-color: #ed5;
  }
  
  .messages--warning,
  tr.warning {
    background-color: #fffce5;
  }
  
  .messages--warning,
  .warning {
    color: #333;
  }
  
  /* Error Messages */
  .messages--error {
    background-image: url(https://www.mit-bund.de/sites/all/themes/omega/omega/images/misc/message-24-error.png?1382488163);
    border-color: #ed541d;
  }
  
  .messages--error,
  tr.error {
    background-color: #fef5f1;
  }
  
  .messages--error,
  .error {
    color: #333;
  }
  
  .error .error {
    color: #8c2e0b;
  }/**/
/**
   * @file
   * System wide theme styles.
   */
  /**
   * @file
   * Basic styling for common HTML elements.
   */
  /* Fieldsets */
  fieldset {
    margin-bottom: 1em;
  }
  
  /* Tables */
  table {
    border-collapse: collapse;
  }
  
  th {
    padding-right: 1em;
    /* LTR */
    background-color: #bbb;
    text-align: left;
    /* LTR */
  }
  
  tr.even,
  tr.odd {
    background-color: #eee;
  }
  
  tr.odd {
    background-color: #ddd;
  }
  
  /**
   * @file
   * Theme for autocomplete.
   *
   * @see autocomplete.js
   */
  #autocomplete {
    background: #fff;
    border: 1px solid;
    color: #000;
  }
  #autocomplete .selected {
    background: #0072b9;
    color: #fff;
  }
  
  /**
   * @file
   * Theme for collapsible fieldsets.
   *
   * @see collapse.js
   */
  html.js fieldset.collapsible .fieldset-legend {
    padding-left: 15px;
    /* LTR */
    background: url(https://www.mit-bund.de/sites/all/themes/omega/omega/images/misc/menu-expanded.png?1382488163) 5px 65% no-repeat;
    /* LTR */
  }
  
  html.js fieldset.collapsed {
    border-bottom-width: 0;
    border-left-width: 0;
    border-right-width: 0;
  }
  html.js fieldset.collapsed .fieldset-legend {
    background-image: url(https://www.mit-bund.de/sites/all/themes/omega/omega/images/misc/menu-collapsed.png?1382488163);
    /* LTR */
    background-position: 5px 50%;
    /* LTR */
  }
  
  .fieldset-legend .summary {
    margin-left: 0.5em;
    color: #999;
    font-size: 0.9em;
  }
  
  /**
   * @file
   * Theme for the tabledrag behavior.
   *
   * @see tabledrag.js
   */
  .drag {
    background-color: #fffff0;
  }
  
  .drag-previous {
    background-color: #ffd;
  }
  
  /**
   * @file
   * Theme for the progress behavior.
   *
   * @see progress.js
   */
  .progress {
    font-weight: bold;
  }
  .progress .bar {
    background: #ccc;
    border-color: #666;
    margin: 0 0.2em;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
  }
  .progress .filled {
    background: #0072b9 url(https://www.mit-bund.de/sites/all/themes/omega/omega/images/misc/progress.gif?1382488163);
  }
  
  /**
   * @file
   * Theme for the tableselect behavior.
   *
   * @see tableselect.js
  */
  .selected td {
    background: #ffc;
  }
  
  .checkbox,
  .checkbox {
    text-align: center;
  }
  
  /**
   * @form
   * Theme for markup generated by Form API.
   */
  /* Generic Form Items. */
  .form-item,
  .form-actions {
    margin-bottom: 1em;
  }
  .form-item label,
  .form-actions label {
    display: block;
    font-weight: bold;
  }
  .form-item .description,
  .form-actions .description {
    font-size: 0.85em;
  }
  
  /* Checkboxes and Radios */
  .form-checkboxes .form-item,
  .form-radios .form-item {
    margin-bottom: 0.4em;
  }
  .form-checkboxes .description,
  .form-radios .description {
    margin-left: 2.4em;
  }
  
  label.option {
    display: inline;
    font-weight: normal;
  }
  
  .form-checkbox,
  .form-radio {
    vertical-align: middle;
  }
  
  /* Errors */
  .marker,
  .form-required {
    color: #f00;
  }
  
  input.error,
  textarea.error,
  select.error {
    border: 2px solid red;
  }
  
  /* Table Form Items */
  tr .form-item {
    margin-top: 0;
    margin-bottom: 0;
    white-space: nowrap;
  }
  
  /* Inline Items */
  .container-inline .form-actions,
  .container-inline.form-actions {
    margin-top: 0;
    margin-bottom: 0;
  }
  
  /**
   * @file
   * Theme for the markup generated by theme_tablesort_indicator().
   */
  th.active img {
    display: inline;
  }
  
  td.active {
    background-color: #ddd;
  }
  
  /**
   * @file
   * Theme for more links.
   */
  .more-link {
    display: block;
    text-align: right;
    /* LTR */
  }
  
  /**
   * @file
   * Theme for markup generated by theme_pager().
   */
  .pager {
    clear: both;
    padding: 0;
    text-align: center;
  }
  
  .pager__item {
    display: inline;
    padding: 0.5em;
    background-image: none;
    list-style-type: none;
  }
  
  .pager__item--current {
    font-weight: bold;
  }/**/
#simplenews-admin-filter .form-item { 
    clear: both;
    line-height: 1.75em;
    margin: 0pt 1em 0pt 0pt;
  }
  
  #simplenews-admin-filter .form-item label { 
    float: left;
    width: 12em; 
  }
  
  #simplenews-admin-filter .spacer {
    margin-left: 12em;  
  }
  
  #simplenews-admin-filter .form-select, 
  #simplenews-admin-filter .form-text {
    width: 14em;
  }
  
  .block-simplenews .issues-link,
  .block-simplenews .issues-list {
    margin-top: 1em;
  }
  
  .block-simplenews .issues-list .newsletter-created {
    display: none;
  }/**/
/**
   * calendar calendar table styles
   */
  .calendar-calendar tr.odd, .calendar-calendar tr.even {
    background-color: #fff;
  }
  .calendar-calendar table {
    border-collapse: collapse;
    border-spacing: 0;
    margin: 0 auto;
    padding: 0;
    width: 100%; /* Setting at 100% causes problem in Internet Explorer. */
  }
  .calendar-calendar .month-view table {
    border: none;
    padding: 0;
    margin: 0;
    width: 100%;
  }
  
  /**
   * IE needs a little help to get the side by side tables to the right size
   */
  .calendar-calendar .year-view td {
    width: 32%;
    padding: 1px;
    border: none;
  }
  
  .calendar-calendar .year-view td table td {
    width: 13%;
    padding: 0;
  }
  
  .calendar-calendar tr {
    padding: 0;
    margin: 0;
    background-color: white;
  }
  .calendar-calendar th {
    text-align: center;
    margin: 0;
  }
  .calendar-calendar th a {
    font-weight: bold;
  }
  .calendar-calendar td {
    width: 14%;
    border: 1px solid #ccc;
    color: #777;
    text-align: right;
    vertical-align: top;
    margin: 0;
    padding: 0;
  }
  
  /**
   * simplify the mini calendar by removing borders
   */
  .calendar-calendar .mini {
    border: none;
  }
  
  /**
   * format for the week number in the first cell
   */
  .calendar-calendar td.week {
    width: 1%;
    min-width: 1%;
   }
  .calendar-calendar .week {
    clear: both;
    font-style: normal;
    color: #555;
    font-size: 0.8em;
  }
  
  /**
   * IE6 does not support min-height, using Min-Height fast hack from http://www.dustindiaz.com/min-height-fast-hack
   */
  .calendar-calendar .inner {
    height: auto !important;
    height: 5em;
    padding: 0;
    margin: 0;
  }
  .calendar-calendar .inner div {
    padding: 0;
    margin: 0;
  }
  /**
   * Make sure paragraphs buried in calendar cells use padding, not margins, for separation so the background color doesn't come through.
   */
  .calendar-calendar .inner p {
    padding: 0 0 .8em 0;
    margin: 0;
  }
  .calendar-calendar td a {
    font-weight: bold;
    text-decoration: none;
  }
  .calendar-calendar td a:hover {
    text-decoration: underline;
  }
  .calendar-calendar td.year,
  .calendar-calendar td.month {
    text-align: center;
  }
  
  /**
   * format days of the week header cells
   */
  .calendar-calendar th.days {
    color: #ccc;
    background-color: #224;
    text-align: center;
    padding: 1px;
    margin: 0;
   }
  
  /**
   * floating day number div
   */
  .calendar-calendar div.day {
    float: right;
    text-align: center;
    padding: 0.125em 0.25em 0 0.25em;
    margin: 0;
    background-color: #f3f3f3;
    border: 1px solid gray;
    border-width: 0 0 1px 1px;
    clear: both;
    width: 1.5em;
  }
  
  /**
   * individual node container
   */
  .calendar-calendar div.calendar {
    background-color: #fff;
    border: solid 1px #ddd;
    text-align: left;
    margin: 0 .25em .25em 0;
    width: 96%;
    float: right; /* needed to keep IE from hiding the floating day number */
    clear: both;
  }
  /**
   * No floating of day view content because there is no floating day number
   */
  .calendar-calendar .day-view div.calendar {
    float: none;
    width: 98%;
    margin: 1% 1% 0 1%;
  }
  
  .calendar-calendar div.title {
    font-size:.8em;
    text-align: center;
  }
  
  .calendar-calendar div.title a {
    color: #000;
  }
  .calendar-calendar div.title a:hover {
    color: #c00;
  }
  .calendar-calendar .content {
    clear: both;
    padding: 3px;
    padding-left: 5px;
  }
  .calendar div.form-item {
    white-space: normal;
  }
  
  table td.mini,
  table th.mini,
  table.mini td.week {
    padding: 0 1px 0 0;
    margin: 0;
    }
  table td.mini a {
    font-weight: normal;
  }
  .calendar-calendar .mini-day-off {
    padding: 0px;
  }
  .calendar-calendar .mini-day-on {
    padding: 0px;
  }
  table .mini-day-on a {
    text-decoration: underline;
  }
  .calendar-calendar .mini .title {
    font-size: .8em;
  }
  .mini .calendar-calendar .week {
    font-size: .7em;
  }
  .mini-row {
    width: 100%;
    border: none;
  }
  .mini{
    width: 32%;
    vertical-align: top;
  }
  
  /**
   * formatting for the legend stripe and block
   */
  .calendar-calendar .stripe {
    height: 5px;
    width: auto;
    font-size:1px !important;
    line-height:1px !important;
  }
  .calendar-calendar .day-view .stripe {
    width: 100%;
  }
  table.calendar-legend {
    background-color: #ccc;
    width: 100%;
    margin: 0;
    padding: 0;
  }
  table.calendar-legend tr.odd .stripe,
  table.calendar-legend tr.even .stripe {
    height: 12px !important;
    font-size: 9px !important;
    line-height: 10px !important;
  }
  .calendar-legend td {
    text-align: left;
    padding-left: 5px;
  }
  
  .calendar-empty {
    font-size: 1px;
    line-height: 1px;
  }
  
  /**
   * formatting for the full day view
   */
  .calendar-calendar td.calendar-agenda-hour {
    text-align: right;
    border: none;
    border-top: 1px solid #CCCCCC;
    padding-top: .25em;
    width: 1%;
  }
  .calendar-calendar td.calendar-agenda-no-hours {
    min-width: 1%;
  }
  .calendar-calendar td.calendar-agenda-hour .calendar-hour {
    font-size: 1.2em;
    font-weight: bold;
  }
  .calendar-calendar td.calendar-agenda-hour .calendar-ampm {
    font-size: 1em;
  }
  .calendar-calendar td.calendar-agenda-items {
    border: 1px solid #CCCCCC;
    text-align: left;
  }
  .calendar-calendar td.calendar-agenda-items div.calendar {
    width: auto;
    padding: .25em;
    margin: 0;
  }
  .calendar-calendar div.calendar div.inner .calendar-agenda-empty {
    width: 100%;
    text-align: center;
    vertical-align: middle;
    padding: 1em 0;
    background-color: #fff;
  }
  
  /**
   * the popup date selector for jumping to a new date
   */
  .calendar-date-select form {
    text-align: right;
    float: right;
    width: 25%;
  }
  .calendar-date-select div,
  .calendar-date-select input,
  .calendar-date-select label {
    text-align: right;
    padding: 0;
    margin: 0;
    float: right;
    clear: both;
  }
  .calendar-date-select .description {
    float: right;
  }
  .calendar-label {
    font-weight: bold;
    display: block;
    clear: both;
  }
  
  .calendar-calendar div.date-nav {
    background-color: #ccc;
    color: #777;
    padding: 0.2em;
    width: auto;
    border: 1px solid #ccc;
  }
  .calendar-calendar div.date-nav a,
  .calendar-calendar div.date-nav h3 {
    color: #777;
    text-decoration: none;
  }
  .calendar-calendar th.days {
    background-color: #eee;
    color: #777;
    font-weight: bold;
    border: 1px solid #ccc;
  }
  .calendar-calendar td.empty {
    background: #ccc;
    border-color: #ccc;
    color: #cc9;
  }
  .calendar-calendar table.mini td.empty {
    background: #fff;
    border-color: #fff;
  }
  .calendar-calendar td div.day {
    border: 1px solid #ccc;
    border-top: none;
    border-right: none;
    margin-bottom: 2px;
  }
  .calendar-calendar td .inner div,
  .calendar-calendar td .inner div a {
    background: #eee;
  }
  
  /**
   * Set small font size for all items in calendar div, themes can override this.
   * Use x-small instead of em to avoid multiplying effect in nested items.
   */
  .calendar-calendar div.calendar {
    border: none;
    font-size: x-small;
  }
  .calendar-calendar td .inner div.calendar div,
  .calendar-calendar td .inner div.calendar div a {
    border: none;
    background: #ffc;
    padding: 0;
  }
  .calendar-calendar td .inner div.calendar div.calendar-more,
  .calendar-calendar td .inner div.calendar div.calendar-more a {
    color: #444;
    background: #fff;
    text-align: right;
  }
  .calendar-calendar td .inner .view-field,
  .calendar-calendar td .inner .view-field a {
    color: #444;
    font-weight: normal;
  }
  
  .calendar-calendar td span.date-display-single,
  .calendar-calendar td span.date-display-start,
  .calendar-calendar td span.date-display-end,
  .calendar-calendar td span.date-display-separator {
    font-weight: bold;
  }
  .calendar-calendar td .inner div.day a {
    color: #4b85ac;
  }
  .calendar-calendar tr td.today,
  .calendar-calendar tr.odd td.today,
  .calendar-calendar tr.even td.today {
    background-color: #C3D6E4;
  }
  .calendar-calendar td .inner div.calendar div div.view-data-node-data-field-date-field-date-value {
  }
  
  /**
   * The following are not used by default but are available for themes
   */
  .calendar-calendar td.past {}
  .calendar-calendar td.future {}
  .calendar-calendar td.has-events {}
  .calendar-calendar td.has-no-events {}
  
  /**
   * Multi day styles
   */
  .calendar-calendar tbody {
    border-top: none;
  }
  
  .calendar-calendar .month-view .full .inner,
  .calendar-calendar .week-view .full .multi-day .inner {
    height: auto;
    min-height: auto;
  }
  .calendar-calendar .week-view .full .calendar-agenda-hour
  .calendar-calendar .month-view .full .single-day .inner .view-item {
    float: left;
    width: 100%;
  }
  
  .calendar-calendar .week-view .full .calendar-agenda-hour,
  .calendar-calendar .day-view .full .calendar-agenda-hour {
    padding-right: 2px;
  }
  
  .calendar-calendar .week-view .full .calendar-agenda-hour {
    width: 6%;
    min-width: 0px;
  }
  
  .calendar-calendar .week-view .full .days {
    width: 13%;
  }
  
  .calendar-calendar .month-view .full div.calendar,
  .calendar-calendar .week-view .full div.calendar,
  .calendar-calendar .day-view div.calendar {
    width: auto;
  }
  
  .calendar-calendar .month-view .full tr.date-box,
  .calendar-calendar .month-view .full tr.date-box td,
  .calendar-calendar .month-view .full tr.multi-day,
  .calendar-calendar .month-view .full tr.multi-day td {
    height: 19px;
    max-height: 19px;
  }
  
  .calendar-calendar .month-view .full tr.single-day .no-entry,
  .calendar-calendar .month-view .full tr.single-day .no-entry .inner {
    height: 44px !important;
    line-height: 44px;
  }
  
  .calendar-calendar .month-view .full tr.single-day .noentry-multi-day,
  .calendar-calendar .month-view .full tr.single-day .noentry-multi-day .inner {
    height: 22px !important;
    line-height: 22px;
  }
  
  .calendar-calendar .month-view .full td,
  .calendar-calendar .week-view .full td,
  .calendar-calendar .day-view  td {
    vertical-align: top;
    padding: 1px 2px 0 2px
  }
  
  .calendar-calendar .month-view .full td.date-box {
    height: 1%;
    border-bottom: 0px;
    padding-bottom: 2px;
  }
  
  .calendar-calendar .month-view .full .week {
    font-size: inherit;
  }
  
  .calendar-calendar .month-view .full .week a,
  .calendar-calendar .week-view .full .week a {
    color: #4b85ac;
  }
  
  .calendar-calendar .month-view .full td .inner div.day,
  .calendar-calendar .month-view .full td .inner div.day a {
    border: none;
    background: none;
    margin-bottom: 0px;
  }
  
  .calendar-calendar .month-view .full td.date-box .inner,
  .calendar-calendar .week-view .full td.date-box .inner {
    min-height: inherit;
  }
  
  .calendar-calendar .month-view .full td.multi-day,
  .calendar-calendar .week-view .full td.multi-day {
    border-top: 0px;
    border-bottom: 0px;
  }
  
  .calendar-calendar .week-view .full .first td.multi-day {
    border-top: 1px solid #CCCCCC;
  }
  
  .calendar-calendar .month-view .full td.single-day {
    border-top: 0px;
  }
  
  .calendar-calendar .month-view .full td.multi-day .inner,
  .calendar-calendar .week-view .full td.multi-day .inner,
  .calendar-calendar .day-view .full td.multi-day .inner {
    min-height: inherit;
    width: auto;
    position: relative;
  }
  
  .calendar-calendar .month-view .full td.multi-day.no-entry {
    min-height: 0px;
  }
  
  .calendar-calendar .month-view .full td.single-day .calendar-empty,
  .calendar-calendar .month-view .full td.single-day.empty,
  .calendar-calendar .month-view .full td.date-box.empty {
    background: #F4F4F4;
  }
  
  .calendar-calendar .month-view .full td.single-day .inner div,
  .calendar-calendar .month-view .full td.single-day .inner div a ,
  .calendar-calendar .month-view .full td.multi-day .inner div,
  .calendar-calendar .month-view .full td.multi-day .inner div a ,
  .calendar-calendar .month-view .full td .inner div.calendar.monthview div,
  .calendar-calendar .month-view .full td .inner div.calendar.monthview div a,
  .calendar-calendar .week-view .full td.single-day .inner div,
  .calendar-calendar .week-view .full td.single-day .inner div a ,
  .calendar-calendar .week-view .full td.multi-day .inner div,
  .calendar-calendar .week-view .full td.multi-day .inner div a ,
  .calendar-calendar .week-view .full td .inner div.calendar.weekview div,
  .calendar-calendar .week-view .full td .inner div.calendar.weekview div a,
  .calendar-calendar .day-view .full td .inner div.view-item,
  .calendar-calendar .day-view .full td .inner div.calendar div,
  .calendar-calendar .day-view .full td .inner div.calendar div a {
    background: none;
  }
  
  .calendar-calendar .day-view .full td .inner div.calendar div,
  .calendar-calendar .day-view .full td .inner div.calendar div a {
    margin: 0px 3px;
  }
  
  .calendar-calendar .day-view .full td .inner div.calendar div.stripe {
    margin: 0px;
  }
  
  .calendar-calendar .month-view .full tr td.today,
  .calendar-calendar .month-view .full tr.odd td.today,
  .calendar-calendar .month-view .full tr.even td.today {
    background: none;
    border-left: 2px solid #7C7F12;
    border-right: 2px solid #7C7F12;
  }
  
  .calendar-calendar .month-view .full td.date-box.today {
    border-width: 2px 2px 0px 2px;
    border-style: solid;
    border-color: #7C7F12;
  }
  
  .calendar-calendar .month-view .full tr td.single-day.today {
    border-bottom: 2px solid #7C7F12;
  }
  
  .calendar-calendar .month-view .full tr td.multi-day.starts-today {
    border-left: 2px solid #7C7F12;
  }
  
  .calendar-calendar .month-view .full tr td.multi-day.ends-today {
    border-right: 2px solid #7C7F12;
  }
  
  .calendar-calendar .month-view .full tr td.multi-day,
  .calendar-calendar .month-view .full tr td.single-day {
    border-top: 0px;
  }
  
  .calendar-calendar .month-view .full tr td.multi-day,
  .calendar-calendar .month-view .full tr td.date-box {
    border-bottom: 0px;
  }
  
  .calendar-calendar .month-view .full .inner .monthview,
  .calendar-calendar .week-view .full .inner .weekview,
  .calendar-calendar .day-view .full .inner .dayview {
    -moz-border-radius: 5px;
    border-radius: 5px;
    width: auto;
    float: none;
    display: block;
    margin: .25em auto;
    position: relative;
  }
  
  .calendar-calendar .month-view .full td.single-day div.monthview,
  .calendar-calendar .week-view .full td.single-day div.weekview,
  .calendar-calendar .day-view .full td.single-day div.dayview {
    background: #ffc;
    width: auto;
    padding: 0px 3px;
    overflow: hidden;
  }
  
  .calendar-calendar .month-view .full td.single-day .calendar-more div.monthview {
    background: none;
  }
  
  .calendar-calendar .day-view td div.dayview {
    padding: 0px;
  }
  
  .calendar-calendar .month-view .full td.multi-day div.monthview,
  .calendar-calendar .week-view .full td.multi-day div.weekview,
  .calendar-calendar .day-view .full td.multi-day div.dayview {
    background: #74a5d7;
    height: 1.9em;
    overflow: hidden;
    margin: 0px auto;
    color: #ffffff;
    position: relative;
  }
  
  .calendar-calendar .week-view .full td.multi-day div.weekview {
    height: 3.5em;
  }
  
  .calendar-calendar .month-view .full td.multi-day .inner .view-field,
  .calendar-calendar .month-view .full td.multi-day .inner .view-field a,
  .calendar-calendar .week-view .full td.multi-day .inner .view-field,
  .calendar-calendar .week-view .full td.multi-day .inner .view-field a,
  .calendar-calendar .day-view .full td.multi-day .inner .view-field,
  .calendar-calendar .day-view .full td.multi-day .inner .view-field a {
    color: #ffffff;
  }
  
  .calendar-calendar .full td.multi-day .calendar .view-field,
  .calendar-calendar .full td.single-day .calendar .view-field {
  }
  
  .calendar-calendar .day-view .full td.multi-day div.dayview,
  .calendar-calendar .week-view .full td.multi-day div.weekview {
    margin-bottom: 2px;
  }
  
  .calendar-calendar .month-view .full td.multi-day .calendar.monthview .view-field {
    white-space: nowrap;
    float: left;
    margin-right: 3px;
  }
  
  .calendar-calendar .week-view .full td.multi-day .calendar.weekview .view-field {
    white-space: nowrap;
    display: inline;
    margin-right: 3px;
  }
  
  .calendar-calendar .day-view .full td.multi-day .calendar.weekview .view-field {
    display: block;
  }
  
  .calendar-calendar .month-view .full td.multi-day .calendar.monthview .contents,
  .calendar-calendar .week-view .full td.multi-day .calendar.weekview .contents {
    position: absolute;
    width: 3000px;
    left: 5px;
  }
  
  .calendar-calendar .day-view td .stripe,
  .calendar-calendar .month-view .full td .stripe,
  .calendar-calendar .week-view .full td .stripe {
    -moz-border-radius: 5px 5px 0px 0px;
    border-radius: 5px 5px 0px 0px;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 3px;
    z-index: 2;
  }
  
  .calendar-calendar .full td.single-day .continuation,
  .calendar-calendar .full td.single-day .continues,
  .calendar-calendar .full td.single-day .cutoff {
    display: none;
  }
  
  .calendar-calendar .month-view .full td.multi-day  .inner .monthview .continuation,
  .calendar-calendar .week-view .full td.multi-day  .inner .weekview .continuation {
    float:left;
    margin-right: 3px;
    height: 1.9em;
  }
  
  .calendar-calendar .week-view .full td.multi-day  .inner .weekview .continuation {
    height: 2.75em;
    padding-top: 0.75em;
    margin-right: 8px;
  }
  
  .calendar-calendar .month-view .full td.multi-day .inner .monthview .continues,
  .calendar-calendar .month-view .full td.multi-day .inner .monthview .cutoff,
  .calendar-calendar .week-view .full td.multi-day .inner .weekview .continues,
  .calendar-calendar .week-view .full td.multi-day .inner .weekview .cutoff {
    position: absolute;
    right: 0px !important;
    right: -1px;
    width: 10px;
    text-align: left;
    background: #74a5d7;
    -moz-border-radius: 0px 5px 5px 0px;
    border-radius: 0px 5px 5px 0px;
    height: 1.9em;
    padding-left: 6px;
    z-index: 1;
  }
  
  .calendar-calendar .week-view .full td.multi-day .inner .weekview .continues,
  .calendar-calendar .week-view .full td.multi-day .inner .weekview .cutoff {
    height: 2.75em;
    padding-top: 0.75em;
  }
  
  .calendar-calendar .month-view .full td.multi-day .inner .monthview .cutoff,
  .calendar-calendar .week-view .full td.multi-day .inner .weekview .cutoff {
    width: 8px;
    padding-left: 0px;
  }
  
  .calendar-calendar .week-view .full td.multi-day {
    padding: 2px;
  }
  
  .calendar-calendar .week-view td.single-day div.calendar {
    width: 100%;
    padding-left: 0px;
    padding-right: 0px;
  }
  
  .calendar-calendar .week-view .full tr.last td.multi-day {
    border-bottom:1px solid #CCCCCC;
  }
  
  /**
   * Restyle Header
   */
  .view .date-nav-wrapper .clear-block {
    margin-bottom: 10px;
  }
  
  .view .date-nav-wrapper  {
    position: relative;
    margin-top: 5px;
    width: 100%;
  }
  
  .view .date-nav-wrapper .date-nav {
    background-color: transparent;
    border: 0px;
    height: 30px;
    height: auto;
    min-height: 30px;
    position: relative;
    margin-bottom: 10px;
  }
  
  .view .date-nav-wrapper .date-prev a,
  .view .date-nav-wrapper .date-next a {
    text-decoration: none;
    color: inherit;
    font-size: 12px;
  }
  
  .view .date-nav-wrapper.date-nav a:hover {
    text-decoration: underline;
  }
  
  .view .date-nav-wrapper .date-prev {
    -moz-border-radius: 5px 0 0 5px;
    border-radius: 5px 0 0 5px;
    background: none repeat scroll 0 0 #dfdfdf;
    float: none;
    padding: 5px 0;
    position: absolute;
    right: 60px;
    left: auto;
    text-align: right;
    top: 0px;
    width: auto;
    z-index: 1;
    font-size: 12px;
  }
  
  .block-views .view .date-nav-wrapper .date-prev {
    left: 0;
    right: auto;
  }
  
  .view .date-nav-wrapper .date-prev a {
    margin-left: 10px;
    font-weight: bold;
  }
  
  .view .date-nav-wrapper .date-heading {
    position: relative;
    width: 100%;
    top: 0px;
    text-align: center;
    z-index: 0;
  }
  
  .view .date-nav-wrapper .date-heading h3 {
    line-height: 30px;
    font-size: 1.7em;
  }
  
  .view .date-nav-wrapper .date-next {
    -moz-border-radius: 0px 5px 5px 0px;
    border-radius: 0px 5px 5px 0px;
    background: none repeat scroll 0 0 #dfdfdf;
    float: none;
    padding: 5px 0;
    position: absolute;
    right: 0px;
    text-align: right;
    top: 0px;
    width: auto;
    z-index: 1;
    font-size: 12px;
  }
  
  .view .date-nav-wrapper .date-next a {
    margin-right: 10px;
    font-weight: bold;
  }
  
  .attachment .calendar-calendar {
    margin-top: 20px;
    clear: both;
  }
  
  .calendar-calendar th a,
  .attachment .calendar-calendar th {
    background-color: transparent;
    border: 0px;
  }
  
  .attachment .calendar-calendar th.calendar-agenda-hour {
    color: #777777;
    font-weight: bold;
    text-align: right;
  }
  
  .view-calendar .feed-icon {
    margin-top: 5px;
  }
  
  .view table.mini .date-prev,
  .view table.mini .date-next {
    background: none;
  }
  
  .date-nav div.date-prev,
  .date-nav div.date-next,
  .date-nav {
    width:auto;
  }
  
  ul.calendar-links,
  .region-content ul.calendar-links {
    margin:0;
    padding:0;
  }
  
  .year-view div.month-view div.date-nav {
    background-color: #DFDFDF;
    min-height: 20px;
  }/**/
/* empty for now *//**/
#colorboxNodeLoading {
    background: url(https://www.mit-bund.de/sites/all/modules/colorbox_node/./images/loading.gif) no-repeat center center;
    width: 100%;
    height: 100%;
  }/**/
/**
   * @file
   * Main stylesheet for Date module.
   */
  
  /* Force start/end dates to float using inline-block, where it works, otherwise inline. */
  .container-inline-date {
    clear: both;
  }
  .container-inline-date .form-item {
    float: none;
    margin: 0;
    padding: 0;
  }
  .container-inline-date > .form-item {
    display: inline-block;
    margin-right: 0.5em; /* LTR */
    vertical-align: top;
  }
  fieldset.date-combo .container-inline-date > .form-item {
    margin-bottom: 10px;
  }
  .container-inline-date .form-item .form-item {
    float: left; /* LTR */
  }
  .container-inline-date .form-item,
  .container-inline-date .form-item input {
    width: auto;
  }
  .container-inline-date .description {
    clear: both;
  }
  
  .container-inline-date .form-item input,
  .container-inline-date .form-item select,
  .container-inline-date .form-item option {
    margin-right: 5px; /* LTR */
  }
  
  .container-inline-date .date-spacer {
    margin-left: -5px; /* LTR */
  }
  
  .views-right-60 .container-inline-date div {
    margin: 0;
    padding: 0;
  }
  
  .container-inline-date .date-timezone .form-item {
    clear: both;
    float: none;
    width: auto;
  }
  
  /* The exposed Views form doesn't need some of these styles */
  .container-inline-date .date-padding {
    float: left;
  }
  fieldset.date-combo .container-inline-date .date-padding {
    padding: 10px;
  }
  .views-exposed-form .container-inline-date .date-padding {
    padding: 0;
  }
  
  /* Fixes for date popup css so it will behave in Drupal */
  #calendar_div,
  #calendar_div td,
  #calendar_div th {
    margin: 0;
    padding: 0;
  }
  #calendar_div,
  .calendar_control,
  .calendar_links,
  .calendar_header,
  .calendar {
    border-collapse: separate;
    margin: 0;
    width: 185px;
  }
  
  .calendar td {
    padding: 0;
  }
  
  /* formatting for start/end dates in nodes and views */
  span.date-display-single {
  }
  span.date-display-start {
  }
  span.date-display-end {
  }
  
  .date-prefix-inline {
    display: inline-block;
  }
  
  .date-clear {
    clear: both;
    display: block;
    float: none;
  }
  
  .date-no-float {
    clear: both;
    float: none;
    width: 98%;
  }
  
  .date-float {
    clear: none;
    float: left;
    width: auto;
  }
  
  /* Add space between date option checkboxes ('All day' & 'Collect End Date') */
  .date-float .form-type-checkbox{
    padding-right: 1em;
  }
  
  /* Add space between the date and time portions of the date_select widget. */
  .form-type-date-select .form-type-select[class*=hour] {
    margin-left: .75em; /* LTR */
  }
  
  .date-container .date-format-delete {
    float: left;
    margin-top: 1.8em;
    margin-left: 1.5em;
  }
  .date-container .date-format-name {
    float: left;
  }
  .date-container .date-format-type {
    float: left;
    padding-left: 10px;
  }
  
  .date-container .select-container {
    clear: left;
    float: left;
  }
  
  /* Calendar day css */
  div.date-calendar-day {
    background: #F3F3F3;
    border-top: 1px solid #EEE;
    border-left: 1px solid #EEE;
    border-right: 1px solid #BBB;
    border-bottom: 1px solid #BBB;
    color: #999;
    float: left;
    line-height: 1;
    margin: 6px 10px 0 0;
    text-align: center;
    width: 40px;
  }
  
  div.date-calendar-day span {
    display: block;
    text-align: center;
  }
  div.date-calendar-day span.month {
    background-color: #B5BEBE;
    color: white;
    font-size: .9em;
    padding: 2px;
    text-transform: uppercase;
  }
  div.date-calendar-day span.day {
    font-size: 2em;
    font-weight: bold;
  }
  div.date-calendar-day span.year {
    font-size: .9em;
    padding: 2px;
  }
  
  .date-form-element-content-multiline {
    padding: 10px;
    border: 1px solid #CCC;
  }
  /* Admin styling */
  .form-item.form-item-instance-widget-settings-input-format-custom,
  .form-item.form-item-field-settings-enddate-required {
    margin-left: 1.3em;
  }
  
  #edit-field-settings-granularity .form-type-checkbox {
    margin-right: .6em; /* LTR */
  }
  
  .date-year-range-select {
    margin-right: 1em;
  }/**/
#ui-datepicker-div {
  font-size: 100%;
  font-family: Verdana, sans-serif;
  background: #eee;
  border-right:2px #666 solid;
  border-bottom:2px #666 solid;
  z-index: 9999;
  }
  
  /* Datepicker
  ----------------------------------*/
  .ui-datepicker { width: 17em; padding: .2em .2em 0; }
  .ui-datepicker .ui-datepicker-header { position:relative; padding:.2em 0; }
  .ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next { position:absolute; top: 2px; width: 1.8em; height: 1.8em; }
  .ui-datepicker .ui-datepicker-prev-hover, .ui-datepicker .ui-datepicker-next-hover { top: 1px; }
  .ui-datepicker .ui-datepicker-prev { left:2px; }
  .ui-datepicker .ui-datepicker-next { right:2px; }
  .ui-datepicker .ui-datepicker-prev-hover { left:1px; }
  .ui-datepicker .ui-datepicker-next-hover { right:1px; }
  .ui-datepicker .ui-datepicker-prev span, .ui-datepicker .ui-datepicker-next span { display: block; position: absolute; left: 50%; margin-left: -8px; top: 50%; margin-top: -8px;  }
  .ui-datepicker .ui-datepicker-title { margin: 0 2.3em; line-height: 1.8em; text-align: center; }
  .ui-datepicker .ui-datepicker-title select { float:left; font-size:1em; margin:1px 0; }
  .ui-datepicker select.ui-datepicker-month-year {width: 100%;}
  .ui-datepicker select.ui-datepicker-month,
  .ui-datepicker select.ui-datepicker-year { width: 49%;}
  .ui-datepicker .ui-datepicker-title select.ui-datepicker-year { float: right; }
  .ui-datepicker table {width: 100%; font-size: .9em; border-collapse: collapse; margin:0 0 .4em; }
  .ui-datepicker th { padding: .7em .3em; text-align: center; font-weight: bold; border: 0;  }
  .ui-datepicker td { border: 0; padding: 1px; }
  .ui-datepicker td span, .ui-datepicker td a { display: block; padding: .2em; text-align: right; text-decoration: none; }
  .ui-datepicker .ui-datepicker-buttonpane { background-image: none; margin: .7em 0 0 0; padding:0 .2em; border-left: 0; border-right: 0; border-bottom: 0; }
  .ui-datepicker .ui-datepicker-buttonpane button { float: right; margin: .5em .2em .4em; cursor: pointer; padding: .2em .6em .3em .6em; width:auto; overflow:visible; }
  .ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current { float:left; }
  
  /* with multiple calendars */
  .ui-datepicker.ui-datepicker-multi { width:auto; }
  .ui-datepicker-multi .ui-datepicker-group { float:left; }
  .ui-datepicker-multi .ui-datepicker-group table { width:95%; margin:0 auto .4em; }
  .ui-datepicker-multi-2 .ui-datepicker-group { width:50%; }
  .ui-datepicker-multi-3 .ui-datepicker-group { width:33.3%; }
  .ui-datepicker-multi-4 .ui-datepicker-group { width:25%; }
  .ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header { border-left-width:0; }
  .ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header { border-left-width:0; }
  .ui-datepicker-multi .ui-datepicker-buttonpane { clear:left; }
  .ui-datepicker-row-break { clear:both; width:100%; }
  
  /* RTL support */
  .ui-datepicker-rtl { direction: rtl; }
  .ui-datepicker-rtl .ui-datepicker-prev { right: 2px; left: auto; }
  .ui-datepicker-rtl .ui-datepicker-next { left: 2px; right: auto; }
  .ui-datepicker-rtl .ui-datepicker-prev:hover { right: 1px; left: auto; }
  .ui-datepicker-rtl .ui-datepicker-next:hover { left: 1px; right: auto; }
  .ui-datepicker-rtl .ui-datepicker-buttonpane { clear:right; }
  .ui-datepicker-rtl .ui-datepicker-buttonpane button { float: left; }
  .ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current { float:right; }
  .ui-datepicker-rtl .ui-datepicker-group { float:right; }
  .ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header { border-right-width:0; border-left-width:1px; }
  .ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header { border-right-width:0; border-left-width:1px; }/**/
/**
   * @file
   * Aggregator theme CSS.
   */
  .feed-source .feed-icon {
    float: right;
    /* LTR */
    display: block;
  }/**/
.date-repeat-input {
    float: left; /* LTR */
    margin-right: 5px; /* LTR */
    width: auto;
  }
  .date-repeat-input select {
    min-width: 7em;
  }
  .date-repeat fieldset {
    clear: both;
    float: none;
  }
  
  .date-repeat-radios {
    margin-bottom: 1em;
  }
  
  .date-repeat-radios input[type=radio] {
    float: left;
    margin: 0.75em 0.75em 0 0;
  }
  
  .date-repeat-radios .form-wrapper {
    float: left;
  }
  
  .date-repeat-radios .form-type-checkboxes .form-type-checkbox {
    width: 15%;
    float: left;
    margin: 0;
  }
  
  .date-repeat-radios .date-repeat-radios-item {
    margin-bottom: 1em;
  }
  
  .weekly .form-type-checkboxes .form-type-checkbox {
    float: left;
    margin-right: 10px;
  }
  
  .date-repeat-input.byday-count label,
  .date-repeat-input.byday-count select,
  .date-clear.bymonthday label,
  .date-clear.bymonthday select {
    display: inline;
  }
  
  .date-repeat-input.byday-day label,
  .date-clear.bymonthday .field-suffix {
    font-weight: bold;
  }
  
  .range-of-repeat .form-radios > div {
    margin-top: 0.5em;
  }
  
  .range-of-repeat .count input[type=text] {
    margin: 0 0.5em;
  }
  
  .range-of-repeat .until .form-wrapper {
    margin: 0 0.5em;
    display: inline-block;
    vertical-align: middle;
  }
  
  .range-of-repeat .until .form-radio,
  .range-of-repeat .until .date-prefix-inline {
    margin: 0 0 1.4em 0;
    vertical-align: middle;
  }
  
  .range-of-repeat .until.widget-date_popup.label-above .form-radio,
  .range-of-repeat .until.widget-date_popup.label-above .date-prefix-inline {
    margin: 0;
    vertical-align: middle;
  }
  
  .range-of-repeat .until.widget-date_select.label-within .form-radio,
  .range-of-repeat .until.widget-date_select.label-within .date-prefix-inline {
    margin: 0;
    vertical-align: middle;
  }
  
  .range-of-repeat .until.widget-date_select.label-above .form-radio,
  .range-of-repeat .until.widget-date_select.label-above .date-prefix-inline {
    margin: 1.4em 0 0 0;
    vertical-align: middle;
  }
  
  .range-of-repeat .until .form-type-date-text .date-padding {
    padding: 0;
  }
  
  .range-of-repeat .until.widget-date_select.label-within .date-padding {
    padding: 0;
  }
  
  .range-of-repeat .until.widget-date_select.label-above .date-padding {
    padding: 0;
  }
  
  .range-of-repeat .until .form-type-date-select,
  .range-of-repeat .until .form-type-date-popup,
  .range-of-repeat .until .form-type-date-text {
    border: none;
    margin: 0;
  }/**/
div.field-widget-field-hidden.form-wrapper{display:none;}/**/
.node-unpublished {
    background-color: #fff4f4;
  }
  .preview .node {
    background-color: #ffffea;
  }
  td.revision-current {
    background: #ffc;
  }/**/
/**
   * @file
   * Comment module look and feel styling.
   */
  .indented {
    margin-left: 25px;
    /* LTR */
  }/**/
@media (min-width: 0) and (max-width: 739px) {
 .bean-bean-masonry .view-masonry-wall > .view-content > .views-row + .views-row {
      margin-top: 20px; 
    } 
}@media (min-width: 740px) {
 .bean-bean-masonry .view-masonry-wall > .view-content {
      display: grid;
      grid-gap: 12px;
      grid-template-columns: 225px 225px 225px;
      grid-auto-rows: 10px; 
    } 
    
    .bean-bean-masonry.bean-masonry-with-nicescroll .view-masonry-wall > .view-content > .views-row article .text {
      max-height: 250px;
      padding: 10px 0;
    }              
        
    .bean-bean-masonry.bean-masonry-with-nicescroll .view-masonry-wall > .view-content > .views-row article .text  .field-name-body {
      overflow: hidden;
      padding-right: 0.75em;
      box-sizing: border-box;  
    } 
}@media (min-width: 980px) {
 .bean-bean-masonry .view-masonry-wall > .view-content {  
      grid-gap: 16px;
      grid-template-columns: 302px 302px 302px; 
    } 
}@media (min-width: 1220px) {
 .bean-bean-masonry .view-masonry-wall > .view-content {  
      grid-gap: 20px;
      grid-template-columns: 380px 380px 380px; 
    } 
}@media all and (-ms-high-contrast: none) and (min-width: 740px) {
 .bean-bean-masonry .view-masonry-wall > .view-content > .views-row {
      margin-bottom: 20px; 
    }
        
    .bean-bean-masonry .view-masonry-wall > .view-content > .views-row:nth-child(3n+1) {
      clear: both;
      width: 32.20339%;
      float: left;  
      margin-right: 1.69492%; 
    }
  
    .bean-bean-masonry .view-masonry-wall > .view-content > .views-row:nth-child(3n+2) {    
      width: 32.20339%;    
      float: left;
      margin-right: 1.69492%; 
    }
      
    .bean-bean-masonry .view-masonry-wall > .view-content > .views-row:nth-child(3n+0) {
      width: 32.20339%;    
      float: right;
      margin-right: 0; 
    } 
}/**/
.ubg-bean-slideshow-wrapper {
  	position: relative;
  	top: 0;
  	left: 0;
  	overflow: hidden;
  	width: 100%;
  	height: 32em;
  }
  
  .ubg-bean-slideshow-wrapper .ubg-bean-slides-wrapper {
  	width: 100%;
  	height: 100%;
  }
  
  .ubg-bean-slideshow-wrapper .ubg-bean-slides-wrapper .ubg-bean-slide {
  	float: left;
    width: 100%;
  	height: 32em;
  }
  
  /* Einfache CSS als Fallback */
  
  .ubg-bean-slideshow-selector-wrapper {
    text-align: center;
  }
  
  .ubg-bean-slideshow-selector-display-default a.selector-item {
    display: inline-block;
    border: 1px solid #000;
    width: 1em;
    height: 1em;
  }
  
  .ubg-bean-slideshow-selector-display-list a.selector-item.selector-arrow-item {
    border: 1px solid #000;
    width: 1em;
    height: 1em;
  }
  
  .ubg-bean-slideshow-selector-display-list a.selector-item {
    display: inline-block;
  }
  
  .ubg-bean-slideshow-startpause .slideshow-play {
    display: none;
  }/**/
.cdu-circle-small-wrapper {
    position: relative;
  }
  
  .cdu-circle-small-wrapper .cdu-logo-wrapper,
  .cdu-circle-small-wrapper .logo-wrapper {
    position: absolute;  
    top: 52px;  
    left: 44px;
  }
  
  img.custom-logo {
    max-width: 200px;
    max-height: 60px;
    width: auto;
  }
  
  .cdu-circle-small-wrapper.cdu-circle-with-animation .cdu-circle {
    animation: circle-animation 60s 0s infinite linear;
  }
  
  @keyframes circle-animation {
    0% {
      transform: rotateZ(0deg);
    }
  
    100% {  
      transform: rotateZ(360deg);
    }
  }/**/
/**
   * @file
   * Styling for contextual links behaviour and structure.
   */
  /**
   * Field display.
   */
  .field__label {
    font-weight: bold;
  }
  
  .field--label-inline .field__label,
  .field--label-inline .field__items {
    float: left;
    /* LTR */
  }/**/
/* 
      Document   : ubg_form_elements
      Created on : Oct 30, 2013, 9:50:59 AM
      Author     : ubg
      Description:
          Purpose of the stylesheet follows.
  */
  
  div.form-type-currency div.form-type-textfield {
  	display: inline-block;
  	margin: 0px;
  	padding: 0px 1px;
  }
  
  div.form-type-timestamp div.form-type-textfield {
  	display: inline-block;
  	margin: 0px;
  	padding: 0px 1px;
  }
  
  div.ubg-form-elements-autocomplete-element-wrapper.processing {
    background-color: #ff9;
  }/**/
div.form-item.error,
  div.form-item.warning {
    border: 1px solid;
    background-image: none;
  }/**/
.ubg_one_click-outer {}
  .ubg_one_click li a
  {
      line-height: 25px!important;
      font-size:0px!important;
      height:25px;
      font-family: 'cdukievit'!important;
  }
  .ubg_one_click .orientation-vertical li {
      display: block;
      margin: 15px 0;
      padding-left: 0px;
  }
  
  .ubg_one_click-outer .forward-button a { 
  
  }
  .ubg_one_click-outer-horizontal .ubg_one_click li:last-child {
      margin-right: 15px!important;
  }
  
  .ubg_one_click-outer .printpage-button a {
  
  }
  
  #ubg_one_click-share-top
  {
     margin-top:15px; 
  }
  
  
  #ubg-memory-share-box .ubg_one_click-outer-vertical {
      left: -65px;
  }
  
  .view .ubg_one_click-outer-vertical {
      left: -65px;
  }
  
  
  .ubg_one_click-outer-vertical {
      position: absolute;
      left: -25px /*!important*/;
      top: 40px /*!important*/;
      width: 25px;
  }
  
  .ubg_one_click-horizontal { float: left; }
  
  .social_share_privacy_area li.help_info.display .info { display: block; }
  .social_share_privacy_area li.help_info.info_off.display .info { display: none; }
  
  /* Tooltips end */
  
  /* ------ forward button, printpage button ------ */
  
  .ubg_one_click-outer-horizontal .ubg_one_click {
      display: inline-block;
  }
  
  .ubg_one_click-outer-horizontal .pm-wrapper {
      display: inline-block;
  }
  .ubg_one_click-outer-horizontal .pm-wrapper div
  {
      margin-right: 14px;
  }
  
  .pm-wrapper div.forward-button,
  .pm-wrapper  div.printpage-button {
  
      height: 25px;
      width:43px;
      text-align:center;
  }
   .ubg_one_click-outer-vertical .pm-wrapper  div
   {
       margin-bottom:15px;
   }
   .pm-wrapper div.forward-button img,
   .pm-wrapper div.printpage-button img
  {
      position: relative;
      top:4px;
      height:13px;
  }
  .pm-wrapper div.forward-button img {
      height:10px;
  }
  .ubg_one_click-outer-horizontal div.printpage-button
  {
  
  }
  .orientation-horizontal li
  {
      padding-left: 0px;
  }
  .pm-wrapper div:hover {
      background-color: #b1b1b1;
      display: inline-block;
  }
  
  .pm-wrapper div {
      display: inline-block;
      background-color: #666666;
  }
  div.forward-button img,
  div.printpage-button img {
      height: 15px;
      width: auto;
      margin: 0 auto;
  }
      #ubg_one_click-share-bottom .ubg_one_click-outer-horizontal { display: none; } 
  /* ---- forward button end ---- */
  
  
  div#ubg_one_click-share-top div.ubg_one_click-outer-horizontal { margin: 0 0 0.63em 0; }
  
  /* ------ Share Box -------- */
  #share-bottom { display: none; }
  .ubg_one_click-outer-vertical { display: none; }@media all and (min-width: 1229px) and (min-device-width: 1229px), all and (max-device-width: 1229px) and (min-width: 1229px) and (orientation:landscape) {
 #ubg_one_click-share-bottom{ display: none; }
      .ubg_one_click-outer-horizontal { display: block; }
      .ubg_one_click-outer-vertical { display: none; } 
  
      .mediathek-content-items .ubg_one_click-outer-horizontal { display: block; }
      .mediathek-content-items .ubg_one_click-outer-vertical { display: none; }
  
      #ubg_one_click-share-top .ubg_one_click-outer-vertical {
          position: fixed;
      } 
}@media all and (max-width: 800px) {
 #ubg_one_click-share-top { display: block; }
      #ubg_one_click-share-top .ubg_one_click-outer-horizontal{display: block; }
      #ubg_one_click-share-bottom .ubg_one_click-outer-vertical { display: none; }
      #ubg_one_click-share-bottom { display: block; }  
  
      #ubg_one_click-share-bottom .ubg_one_click-horizontal { float: none; width: 100%; }
  
      #ubg_one_click-share-bottom.ubg_one_click-outer-horizontal div.forward-button {
          float: none;
          margin: 10px 0 0 0;
      }
      #ubg_one_click-share-bottom .ubg_one_click-outer-vertical {
          left:0px;
          position: relative;
          width: 45px;
          top: 0px;
          display: block;
      }
      #ubg_one_click-share-bottom .ubg_one_click-outer-horizontal
      {
          display: none;
      }
      
      #ubg_one_click-share-bottom .ubg_one_click-outer-horizontal .pm-wrapper {
      display: inline-block;
      vertical-align: top;
  }
  .printpage-button
  {
      display:none!important;
  } 
}@media all and (min-width: 800px) and (max-width: 940px) {
 .pm-wrapper div.forward-button, .pm-wrapper div.printpage-button {
  
  } 
}@media all and (min-width: 520px) and (max-width: 800px) {
 #ubg_one_click-share-bottom .ubg_one_click-outer-horizontal {
      display: block;
  } 
  
    #ubg_one_click-share-bottom .ubg_one_click-outer-vertical {
      display: none;
  }  
      
  #ubg_one_click-share-bottom .pm-wrapper
  {
      width:auto;
      background-color: transparent;
      
  }
  .ubg_one_click-outer-horizontal .pm-wrapper .forward-button
  {
     margin-left: 0px!important; 
  }
  
  
  #ubg_one_click-share-bottom .pm-wrapper div.forward-button img,#ubg_one_click-share-bottom .pm-wrapper div.printpage-button img{
  left:2px;
  } 
}.ubg_one_click-outer-horizontal .ubg_one_click-button
  {
      display:inline-block;
      padding-left:0px;
      margin-right:14px;
  }
  .ubg_one_click-outer-horizontal .ubg_one_click
  {
      margin-left:0px;
  }
  .ubg_one_click-outer-vertical .ubg_one_click
  {
  margin-left: 0em;
  }
  .ubg_one_click-outer-vertical .pm-wrapper {
      margin-left: 0em;
  }
  
  
  .ubg_one_click li.ubg_one_click-button {
      height: 25px;
      margin-bottom: 15px ;
      margin-top: 0;
      padding-left: 0px;
      list-style: outside none none;
      vertical-align: top;
  }
  
  .ubg_one_click li a
  {
      width:45px;
      display:block;
  }
  .ubg_one_click li a:before {
      content: " "!important;
      font-size:0px!important;
  }
  .ubg_one_click li.twitter a,
  .social-sharing .one_click li.one_click-button.twitter a {
      background-image: url(https://www.mit-bund.de/sites/all/modules/ubg/ubg_one_click_share/images/twitter-s.png);
      background-position: 14px 4px;
      background-repeat: no-repeat;
      background-color: #55acee;
  
  }
  .ubg_one_click li.twitter a:hover
  {
      background-color: #32bbf5;
  }
  
  .ubg_one_click li.facebook a {
      background-image: url(https://www.mit-bund.de/sites/all/modules/ubg/ubg_one_click_share/images/facebook-s.png);
      background-position: 14px 4px;
      background-repeat: no-repeat;
      background-color: #3b5998;
  
  }
  
  
  .ubg_one_click li.facebook a:hover {
      background-color: #4273c8;
  }
  
  
  .ubg_one_click .orientation-vertical li.facebook.ubg_one_click-button a
  {
       padding-left: 25px;
  }
  .ubg_one_click li.googleplus a {
      background-image: url(https://www.mit-bund.de/sites/all/modules/ubg/ubg_one_click_share/images/googleplus-s.png);
      background-position: 15px 5px;
      background-repeat: no-repeat;
      background-color: #d34836;
  }
  
  .ubg_one_click li.googleplus a:hover
  {
      background-color: #f75b44;
  }
  
  .ubg_one_click li.whatsapp a {
      background-image: url(https://www.mit-bund.de/sites/all/modules/ubg/ubg_one_click_share/images/whatsapp-s.png);
      background-repeat: no-repeat;
      background-position: 14px 4px;
      background-color: #5cbe4a;
  }
  .ubg_one_click li.whatsapp a:hover
  {
      background-color: #34af23;
  }
  .ubg_one_click li.ubg_one_click-button .share_count {
    font-size: 14px;
      height: 23px;
      line-height: 23px;
      min-width: 23px;
      padding: 0 5px;
      text-align: center;
      width: auto;
  }
  #share .ubg_one_click-outer {
      padding-top: 1em;
  }
  
  
  
  /****** New Icons *****/
  ul.ubg-one-click-icons {
    font-size: 0;
  }
  
  .ubg_one_click.ubg-one-click-icons li.ubg_one_click-button.icon a {
    background-image: none;
    color: #fff;
    font-size: 16px !important;
  } 
  
  .ubg_one_click.ubg-one-click-icons li.ubg_one_click-button.icon a .fa {
    color: inherit;
  }
  
  .ubg_one_click.ubg-one-click-icons li.ubg_one_click-button.icon a span.icon {
    width: 100%;
    height: 100%;
    vertical-align: top;
    line-height: 25px;
  } 
  
  .ubg_one_click.ubg-one-click-icons li.forward-button, 
  .ubg_one_click.ubg-one-click-icons li.printpage-button {
    background-color: #fff;
    border: 1px solid #ccc;
    color: #999;
    width: 43px;
    height: 23px;
  }
  
  .ubg_one_click.ubg-one-click-icons li.ubg_one_click-button.icon.forward-button a, 
  .ubg_one_click.ubg-one-click-icons li.ubg_one_click-button.icon.printpage-button a {
    color: #999;
  }
  
  .ubg_one_click.ubg-one-click-icons li.ubg_one_click-button.icon.forward-button a span.icon, 
  .ubg_one_click.ubg-one-click-icons li.ubg_one_click-button.icon.printpage-button a span.icon {
    line-height: 23px;
  }/**/
/**
   * @file
   * Search module theme.
   */
  /**
   * Search Results
   */
  .search-result__snippet {
    padding-left: 1em;
    /* LTR */
  }
  
  .search-result__info {
    font-size: 0.85em;
  }
  
  /**
   * Advanced Search Form
   */
  .search-advanced .criterion {
    float: left;
    /* LTR */
    margin-right: 2em;
    /* LTR */
  }
  .search-advanced .action {
    float: left;
    /* LTR */
    clear: left;
    /* LTR */
  }/**/
/* CSS-Fallback, für den Fall wenn bei der Thema nichts konfiguriert ist */
  
  .ubg-reminder-status-block div.content {
    border: 1px solid;
    padding: 0 0.5em;
  }
  
  .ubg-reminder-status-block-ok div.content {
    background-color: #f8fff0;
    border-color: #be7;
  }
  
  .ubg-reminder-status-block-warning div.content {
    background-color: #fef5f1;
    border-color: #ed541d;
  }/**/
p.ubg-share-consumer-view-form-title {
    font-size: 115%;
    font-weight: bold;
    margin: 0.15em 0em;
    display: none;
  }
  
  div.ubg-share-consumer-view-form-description {
    font-style: italic;
    margin: 0.15em 0em 0.5em 0em;
    display: none;
  }
  
  tr.ubg-share-consumer-view-preview-teaser td article {
    font-size: 75%;
    overflow: hidden;
  }
  
  tr.ubg-share-producers-table-row {
    display: none;
  }
  
  tr.ubg-share-producers-table-row.ubg-share-producers-table-headrow {
    display: table-row;
  }
  
  tr.ubg-share-producers-table-headrow.ubg-share-producers-table-row-invisible {
    font-size: 45%;
    font-style: italic;
    color: #666;
  }
  
  table tr.ubg-share-producers-table-headrow.ubg-share-producers-table-headrow-error th {
    color: #d00;
  }
  
  tr.ubg-share-producers-table-row.ubg-share-producers-table-row-0 {
    display: table-row;
  }
  
  tr.ubg-share-producers-table-row.ubg-share-producers-table-row-0.ubg-share-producers-table-row-invisible {
    display: none;
  }
  
  tr.ubg-share-producers-table-row.ubg-share-producers-table-row-visible {
    display: table-row;
  }/**/
.ubg-slideshow-link {
    display: block;
    position: relative;
    width: auto;
    height: 10em;
    background-repeat: no-repeat;
    background-size: cover;
    line-height: 0;
    overflow: hidden;
  }
  
  .ubg-slideshow-link-display-change:hover img {
    visibility: hidden;
  }
  
  .ubg-slideshow-link-display-fade img {
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
  }
  .ubg-slideshow-link-display-fade:hover img{
    -webkit-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
  }/**/
.social-sharing-outer {}
  
  .social-sharing-outer-vertical {
  	position: absolute;
  	left: -120px /*!important*/;
  	top: 40px /*!important*/;
  	width: 100px;
  }
  
  .social-sharing-horizontal { float: left; }
  
  .social_share_privacy_area {
      clear: both;
      margin: 5px 0; /* !important;*/
  	list-style-type: none;
  	padding: 0; /*!important;*/
  	width: auto;
  	height: 25px;
  	display: block;
  }
  
  .social-sharing-vertical .social_share_privacy_area { height: auto; width: 100%; margin: 0 !important; }
  
  .social_share_privacy_area li {
  	margin: 0; /*!important;*/
  	padding: 0; /*!important;*/
  	height: 21px;
  	float: left;
  }
  
  .social-sharing-vertical .social_share_privacy_area li {
  	height: auto; /*80px;*/
  	float: none;
  	width: 100%;
  	margin: 10px 0; /*!important;*/
  	padding: 10px 0; /*!important;*/
  }
  
  .social_share_privacy_area li .dummy_btn {
      float: left;
      margin: 0 0 0 5px;
      cursor: pointer;
      padding: 0;
      height: inherit;
  }
  .social-sharing-vertical .social_share_privacy_area li .dummy_btn { 
  	float: none; 
  	margin: 0 auto 10px auto; 
  	height: auto; /*65px;*/
  	text-align: center;
  }
  
  .social_share_privacy_area li .dummy_btn img {
  	height: 22px;
  	width: auto;
  }
  .social-sharing-horizontal .social_share_privacy_area li .dummy_btn img { padding-right: 15px; }
  
  .social_share_privacy_area li div iframe {
      overflow: hidden;
      height: inherit;
      width: inherit;
  }
  
  /* Facebook begin */
  .social_share_privacy_area .facebook.share-active {
      width: 210px /*160px*/;
      display: inline-block;
  }
  .social_share_privacy_area .facebook.share-active .fb_like iframe { width: 180px; }
  
  .social-sharing-vertical .social_share_privacy_area .facebook.share-active { display: block; width: 100%; }
  .social-sharing-vertical .social_share_privacy_area .facebook.share-active iframe { width: 100%; }
  /* Facebook end */
  
  
  /* Twitter begin */
  .social_share_privacy_area .twitter.share-active { width: 145px; }
  .social_share_privacy_area li.share-active div.tweet { width: 115px; }
  
  .social-sharing-vertical .social_share_privacy_area .twitter.share-active { width: 100%; }
  .social-sharing-vertical .social_share_privacy_area li.share-active div.tweet { width: 100%; }
  /* Twitter end */
  
  /* Google+ begin */
  .social_share_privacy_area .gplus.share-active { width: 100px; }
  .social_share_privacy_area li.share-active div.gplusone { width: 70px; }
  
  .social-sharing-vertical .social_share_privacy_area .gplus.share-active { width: 100%; }
  .social-sharing-vertical .social_share_privacy_area li.share-active div.gplusone { width: 100%; }
  /* Google+ end */
  
  /* Switch begin */
  .social_share_privacy_area li .switch {
      display: inline-block;
      text-indent: -9999em;
      /*background: transparent url(https://www.mit-bund.de/sites/all/modules/ubg/ubg_social_sharing/assets/images/share-switch.png) no-repeat 0 -31px  scroll;
  	width: 25px;
      height: 13px;*/
      overflow: hidden;
      float: left;
      margin: 6px 0 0;
      padding: 0;
      cursor: pointer;
  
  	background: transparent url(https://www.mit-bund.de/sites/all/modules/ubg/ubg_social_sharing/assets/images/socialshareprivacy_on_off.png) no-repeat 0 0 scroll;
      width: 23px;
      height: 12px;
  }
  .social_share_privacy_area li .switch.on {
      /*background-position: 0 -6px;*/ 
  	background-position: 0 -12px; 
  }
  
  /*.social_share_privacy_area li .switch:focus,
  .social_share_privacy_area li .switch:active {
  	background-image: url(https://www.mit-bund.de/sites/all/modules/ubg/ubg_social_sharing/assets/images/share-switch-focus.png);	
  }
  
  .social_share_privacy_area li .switch.on:focus,
  .social_share_privacy_area li .switch.on:active {
  	background-image: url(https://www.mit-bund.de/sites/all/modules/ubg/ubg_social_sharing/assets/images/share-switch-focus.png);	
  }*/
  
  .social-sharing-vertical .social_share_privacy_area li .switch {
  	display: block;
  	float: none;
  	margin: 0 auto;
  }
  /* Switch end */
  
  /* Tooltips begin */
  .social_share_privacy_area li.help_info {
      position: relative; 
  }
  
  .social_share_privacy_area li.help_info .info {
      display: none;
      position: absolute;
      padding: 10px 15px;
      margin: 0;
      font-size: 1em;
      line-height: 1.3em;
      border: 1px solid #ccc;
      -moz-box-shadow: 0 2px 3px #999;
      -webkit-box-shadow: 0 2px 3px #999;
      box-shadow: 0 2px 3px #999;
      background-color: #fff;
      color: #000;
      z-index: 500;
  }
  
  .social-sharing-horizontal .social_share_privacy_area li.help_info .info {
  	bottom: 30px;
      left: 0;
      width: 290px;	
  }
  .social-sharing-horizontal .social_share_privacy_area li.gplus.help_info .info { left: -60px; }
  
  .social-sharing-vertical .social_share_privacy_area li.help_info .info {
  	top: 0px;
      left: 100px;
      width: 200px;	
  }
  
  .social_share_privacy_area li.help_info.display .info { display: block; }
  .social_share_privacy_area li.help_info.info_off.display .info { display: none; }
  
  /* Tooltips end */
  
  /* ------ forward button ------ */
  
  .social-sharing-outer-horizontal div.forward-button {
  	float: left;
  	height: 25px;
  	margin: 10px 0 0 0;
  	vertical-align: middle;
  } 
  
  .social-sharing-outer-vertical div.forward-button {
  	width: 100px;
  	margin: 10px 0;
  	padding: 10px 0;
  	text-align: center;
  } 
  
   div.forward-button img {
  	height: 21px;
  	width: auto;
  	margin: 0 auto;
   }
  
  /* ---- forward button end ---- *//**/
/**
   * @file
   */
  
  #edit-lifetime-container .form-item-days,
  #edit-lifetime-container .form-item-hours,
  #edit-lifetime-container .form-item-minutes {
    float: left;
    margin-right: 3%;
    margin-bottom: 2em;
  }
  
  #edit-lifetime-container .form-item-delete-submissions {
    clear: both;
  }
  
  #edit-lifetime-container .form-item-delete-submissions label {
    font-weight: bold;
  }
  #edit-lifetime-container .form-item-delete-submissions .description {
    margin-top: 0.7em;
  }/**/
.views-exposed-form .views-exposed-widget {
    float: left; /* LTR */
    padding: .5em 1em 0 0; /* LTR */
  }
  
  .views-exposed-form .views-exposed-widget .form-submit {
    margin-top: 1.6em;
  }
  
  .views-exposed-form .form-item,
  .views-exposed-form .form-submit {
    margin-top: 0;
    margin-bottom: 0;
  }
  
  .views-exposed-form label {
    font-weight: bold;
  }
  
  .views-exposed-widgets {
    margin-bottom: .5em;
  }
  
  /* table style column align */
  .views-align-left {
    text-align: left;
  }
  .views-align-right {
    text-align: right;
  }
  .views-align-center {
    text-align: center;
  }
  
  /* Remove the border on tbody that system puts in */
  .views-view-grid tbody {
    border-top: none;
  }
  
  .view .progress-disabled {
    float: none;
  }/**/
/**
   * @file
   * Lazyloader admin CSS
   */
  
  #edit-lazyloader-icon {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  
  #edit-lazyloader-icon .form-item {
    position: relative;
    padding-left: 20px;
    margin:0 10px;
  }
  
  #edit-lazyloader-icon .form-item input {
    position: absolute;
    left: 0;
    top: 5px;
  }/**/
/**
   * @file
   * Base styles for the user module.
   */
  div.password-confirm {
    visibility: hidden;
  }/**/
/**
   * @file
   * Theme styling for the user module.
   */
  /**
   * Password Strength Indicator.
   */
  .password-strength {
    float: right;
    /* LTR */
    margin-top: 1.2em;
    width: 17em;
  }
  
  .password-strength-title {
    float: left;
    /* LTR */
  }
  
  .password-strength-text {
    float: right;
    /* LTR */
    font-weight: bold;
  }
  
  .password-indicator {
    clear: both;
    height: 0.3em;
    width: 100%;
    background-color: #c4c4c4;
  }
  .password-indicator .indicator {
    height: 100%;
    width: 0%;
    background-color: #47c965;
  }
  
  /**
   * Password Confirm.
   */
  div.password-confirm {
    float: right;
    /* LTR */
    clear: both;
    width: 17em;
    margin-top: 1.5em;
  }
  
  /**
   * Password Confirm Inputs.
   */
  .form-type-password-confirm input {
    width: 16em;
  }
  
  /**
   * Password Suggestions.
   */
  .password-suggestions {
    margin: 0.7em 0;
    padding: 0.2em 0.5em;
    border: 1px solid #b4b4b4;
  }
  
  /*
   * User Profile
   */
  .user-profile-item__label {
    font-weight: bold;
  }
  
  /* Generated by user.module but used by profile.module. */
  .profile {
    clear: both;
    margin: 1em 0;
  }
  .profile .user-picture {
    float: right;
    /* LTR */
    margin: 0 1em 1em 0;
    /* LTR */
  }
  .profile h3 {
    border-bottom: 1px solid #ccc;
  }
  .profile dl {
    margin: 0 0 1.5em 0;
  }
  .profile dt {
    margin: 0 0 0.2em 0;
    font-weight: bold;
  }
  .profile dd {
    margin: 0 0 1em 0;
  }/**/
/*
   * jQuery UI CSS Framework 1.8.7
   *
   * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
   * Dual licensed under the MIT or GPL Version 2 licenses.
   * http://jquery.org/license
   *
   * http://docs.jquery.com/UI/Theming/API
   */
  
  /* Layout helpers
  ----------------------------------*/
  .ui-helper-hidden { display: none; }
  .ui-helper-hidden-accessible { position: absolute !important; clip: rect(1px 1px 1px 1px); clip: rect(1px,1px,1px,1px); }
  .ui-helper-reset { margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none; }
  .ui-helper-clearfix:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
  .ui-helper-clearfix { display: inline-block; }
  /* required comment for clearfix to work in Opera \*/
  * html .ui-helper-clearfix { height:1%; }
  .ui-helper-clearfix { display:block; }
  /* end clearfix */
  .ui-helper-zfix { width: 100%; height: 100%; top: 0; left: 0; position: absolute; opacity: 0; filter:Alpha(Opacity=0); }
  
  
  /* Interaction Cues
  ----------------------------------*/
  .ui-state-disabled { cursor: default !important; }
  
  
  /* Icons
  ----------------------------------*/
  
  /* states and images */
  .ui-icon { display: block; text-indent: -99999px; overflow: hidden; background-repeat: no-repeat; }
  
  
  /* Misc visuals
  ----------------------------------*/
  
  /* Overlays */
  .ui-widget-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }/**/
/*
   * jQuery UI CSS Framework 1.8.7
   *
   * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
   * Dual licensed under the MIT or GPL Version 2 licenses.
   * http://jquery.org/license
   *
   * http://docs.jquery.com/UI/Theming/API
   *
   * To view and modify this theme, visit http://jqueryui.com/themeroller/
   */
  
  
  /* Component containers
  ----------------------------------*/
  .ui-widget { font-family: Verdana,Arial,sans-serif/*{ffDefault}*/; font-size: 1.1em/*{fsDefault}*/; }
  .ui-widget .ui-widget { font-size: 1em; }
  .ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button { font-family: Verdana,Arial,sans-serif/*{ffDefault}*/; font-size: 1em; }
  .ui-widget-content { border: 1px solid #aaaaaa/*{borderColorContent}*/; background: #ffffff/*{bgColorContent}*/ url(https://www.mit-bund.de/misc/ui/images/ui-bg_flat_75_ffffff_40x100.png)/*{bgImgUrlContent}*/ 50%/*{bgContentXPos}*/ 50%/*{bgContentYPos}*/ repeat-x/*{bgContentRepeat}*/; color: #222222/*{fcContent}*/; }
  .ui-widget-content a { color: #222222/*{fcContent}*/; }
  .ui-widget-header { border: 1px solid #aaaaaa/*{borderColorHeader}*/; background: #cccccc/*{bgColorHeader}*/ url(https://www.mit-bund.de/misc/ui/images/ui-bg_highlight-soft_75_cccccc_1x100.png)/*{bgImgUrlHeader}*/ 50%/*{bgHeaderXPos}*/ 50%/*{bgHeaderYPos}*/ repeat-x/*{bgHeaderRepeat}*/; color: #222222/*{fcHeader}*/; font-weight: bold; }
  .ui-widget-header a { color: #222222/*{fcHeader}*/; }
  
  /* Interaction states
  ----------------------------------*/
  .ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default { border: 1px solid #d3d3d3/*{borderColorDefault}*/; background: #e6e6e6/*{bgColorDefault}*/ url(https://www.mit-bund.de/misc/ui/images/ui-bg_glass_75_e6e6e6_1x400.png)/*{bgImgUrlDefault}*/ 50%/*{bgDefaultXPos}*/ 50%/*{bgDefaultYPos}*/ repeat-x/*{bgDefaultRepeat}*/; font-weight: normal/*{fwDefault}*/; color: #555555/*{fcDefault}*/; }
  .ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited { color: #555555/*{fcDefault}*/; text-decoration: none; }
  .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 #999999/*{borderColorHover}*/; background: #dadada/*{bgColorHover}*/ url(https://www.mit-bund.de/misc/ui/images/ui-bg_glass_75_dadada_1x400.png)/*{bgImgUrlHover}*/ 50%/*{bgHoverXPos}*/ 50%/*{bgHoverYPos}*/ repeat-x/*{bgHoverRepeat}*/; font-weight: normal/*{fwDefault}*/; color: #212121/*{fcHover}*/; }
  .ui-state-hover a, .ui-state-hover a:hover { color: #212121/*{fcHover}*/; text-decoration: none; }
  .ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active { border: 1px solid #aaaaaa/*{borderColorActive}*/; background: #ffffff/*{bgColorActive}*/ url(https://www.mit-bund.de/misc/ui/images/ui-bg_glass_65_ffffff_1x400.png)/*{bgImgUrlActive}*/ 50%/*{bgActiveXPos}*/ 50%/*{bgActiveYPos}*/ repeat-x/*{bgActiveRepeat}*/; font-weight: normal/*{fwDefault}*/; color: #212121/*{fcActive}*/; }
  .ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited { color: #212121/*{fcActive}*/; text-decoration: none; }
  .ui-widget :active { outline: none; }
  
  /* Interaction Cues
  ----------------------------------*/
  .ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight  {border: 1px solid #fcefa1/*{borderColorHighlight}*/; background: #fbf9ee/*{bgColorHighlight}*/ url(https://www.mit-bund.de/misc/ui/images/ui-bg_glass_55_fbf9ee_1x400.png)/*{bgImgUrlHighlight}*/ 50%/*{bgHighlightXPos}*/ 50%/*{bgHighlightYPos}*/ repeat-x/*{bgHighlightRepeat}*/; color: #363636/*{fcHighlight}*/; }
  .ui-state-highlight a, .ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a { color: #363636/*{fcHighlight}*/; }
  .ui-state-error, .ui-widget-content .ui-state-error, .ui-widget-header .ui-state-error {border: 1px solid #cd0a0a/*{borderColorError}*/; background: #fef1ec/*{bgColorError}*/ url(https://www.mit-bund.de/misc/ui/images/ui-bg_glass_95_fef1ec_1x400.png)/*{bgImgUrlError}*/ 50%/*{bgErrorXPos}*/ 50%/*{bgErrorYPos}*/ repeat-x/*{bgErrorRepeat}*/; color: #cd0a0a/*{fcError}*/; }
  .ui-state-error a, .ui-widget-content .ui-state-error a, .ui-widget-header .ui-state-error a { color: #cd0a0a/*{fcError}*/; }
  .ui-state-error-text, .ui-widget-content .ui-state-error-text, .ui-widget-header .ui-state-error-text { color: #cd0a0a/*{fcError}*/; }
  .ui-priority-primary, .ui-widget-content .ui-priority-primary, .ui-widget-header .ui-priority-primary { font-weight: bold; }
  .ui-priority-secondary, .ui-widget-content .ui-priority-secondary,  .ui-widget-header .ui-priority-secondary { opacity: .7; filter:Alpha(Opacity=70); font-weight: normal; }
  .ui-state-disabled, .ui-widget-content .ui-state-disabled, .ui-widget-header .ui-state-disabled { opacity: .35; filter:Alpha(Opacity=35); background-image: none; }
  
  /* Icons
  ----------------------------------*/
  
  /* states and images */
  .ui-icon { width: 16px; height: 16px; background-image: url(https://www.mit-bund.de/misc/ui/images/ui-icons_222222_256x240.png)/*{iconsContent}*/; }
  .ui-widget-content .ui-icon {background-image: url(https://www.mit-bund.de/misc/ui/images/ui-icons_222222_256x240.png)/*{iconsContent}*/; }
  .ui-widget-header .ui-icon {background-image: url(https://www.mit-bund.de/misc/ui/images/ui-icons_222222_256x240.png)/*{iconsHeader}*/; }
  .ui-state-default .ui-icon { background-image: url(https://www.mit-bund.de/misc/ui/images/ui-icons_888888_256x240.png)/*{iconsDefault}*/; }
  .ui-state-hover .ui-icon, .ui-state-focus .ui-icon {background-image: url(https://www.mit-bund.de/misc/ui/images/ui-icons_454545_256x240.png)/*{iconsHover}*/; }
  .ui-state-active .ui-icon {background-image: url(https://www.mit-bund.de/misc/ui/images/ui-icons_454545_256x240.png)/*{iconsActive}*/; }
  .ui-state-highlight .ui-icon {background-image: url(https://www.mit-bund.de/misc/ui/images/ui-icons_2e83ff_256x240.png)/*{iconsHighlight}*/; }
  .ui-state-error .ui-icon, .ui-state-error-text .ui-icon {background-image: url(https://www.mit-bund.de/misc/ui/images/ui-icons_cd0a0a_256x240.png)/*{iconsError}*/; }
  
  /* positioning */
  .ui-icon-carat-1-n { background-position: 0 0; }
  .ui-icon-carat-1-ne { background-position: -16px 0; }
  .ui-icon-carat-1-e { background-position: -32px 0; }
  .ui-icon-carat-1-se { background-position: -48px 0; }
  .ui-icon-carat-1-s { background-position: -64px 0; }
  .ui-icon-carat-1-sw { background-position: -80px 0; }
  .ui-icon-carat-1-w { background-position: -96px 0; }
  .ui-icon-carat-1-nw { background-position: -112px 0; }
  .ui-icon-carat-2-n-s { background-position: -128px 0; }
  .ui-icon-carat-2-e-w { background-position: -144px 0; }
  .ui-icon-triangle-1-n { background-position: 0 -16px; }
  .ui-icon-triangle-1-ne { background-position: -16px -16px; }
  .ui-icon-triangle-1-e { background-position: -32px -16px; }
  .ui-icon-triangle-1-se { background-position: -48px -16px; }
  .ui-icon-triangle-1-s { background-position: -64px -16px; }
  .ui-icon-triangle-1-sw { background-position: -80px -16px; }
  .ui-icon-triangle-1-w { background-position: -96px -16px; }
  .ui-icon-triangle-1-nw { background-position: -112px -16px; }
  .ui-icon-triangle-2-n-s { background-position: -128px -16px; }
  .ui-icon-triangle-2-e-w { background-position: -144px -16px; }
  .ui-icon-arrow-1-n { background-position: 0 -32px; }
  .ui-icon-arrow-1-ne { background-position: -16px -32px; }
  .ui-icon-arrow-1-e { background-position: -32px -32px; }
  .ui-icon-arrow-1-se { background-position: -48px -32px; }
  .ui-icon-arrow-1-s { background-position: -64px -32px; }
  .ui-icon-arrow-1-sw { background-position: -80px -32px; }
  .ui-icon-arrow-1-w { background-position: -96px -32px; }
  .ui-icon-arrow-1-nw { background-position: -112px -32px; }
  .ui-icon-arrow-2-n-s { background-position: -128px -32px; }
  .ui-icon-arrow-2-ne-sw { background-position: -144px -32px; }
  .ui-icon-arrow-2-e-w { background-position: -160px -32px; }
  .ui-icon-arrow-2-se-nw { background-position: -176px -32px; }
  .ui-icon-arrowstop-1-n { background-position: -192px -32px; }
  .ui-icon-arrowstop-1-e { background-position: -208px -32px; }
  .ui-icon-arrowstop-1-s { background-position: -224px -32px; }
  .ui-icon-arrowstop-1-w { background-position: -240px -32px; }
  .ui-icon-arrowthick-1-n { background-position: 0 -48px; }
  .ui-icon-arrowthick-1-ne { background-position: -16px -48px; }
  .ui-icon-arrowthick-1-e { background-position: -32px -48px; }
  .ui-icon-arrowthick-1-se { background-position: -48px -48px; }
  .ui-icon-arrowthick-1-s { background-position: -64px -48px; }
  .ui-icon-arrowthick-1-sw { background-position: -80px -48px; }
  .ui-icon-arrowthick-1-w { background-position: -96px -48px; }
  .ui-icon-arrowthick-1-nw { background-position: -112px -48px; }
  .ui-icon-arrowthick-2-n-s { background-position: -128px -48px; }
  .ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; }
  .ui-icon-arrowthick-2-e-w { background-position: -160px -48px; }
  .ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; }
  .ui-icon-arrowthickstop-1-n { background-position: -192px -48px; }
  .ui-icon-arrowthickstop-1-e { background-position: -208px -48px; }
  .ui-icon-arrowthickstop-1-s { background-position: -224px -48px; }
  .ui-icon-arrowthickstop-1-w { background-position: -240px -48px; }
  .ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; }
  .ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; }
  .ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; }
  .ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; }
  .ui-icon-arrowreturn-1-w { background-position: -64px -64px; }
  .ui-icon-arrowreturn-1-n { background-position: -80px -64px; }
  .ui-icon-arrowreturn-1-e { background-position: -96px -64px; }
  .ui-icon-arrowreturn-1-s { background-position: -112px -64px; }
  .ui-icon-arrowrefresh-1-w { background-position: -128px -64px; }
  .ui-icon-arrowrefresh-1-n { background-position: -144px -64px; }
  .ui-icon-arrowrefresh-1-e { background-position: -160px -64px; }
  .ui-icon-arrowrefresh-1-s { background-position: -176px -64px; }
  .ui-icon-arrow-4 { background-position: 0 -80px; }
  .ui-icon-arrow-4-diag { background-position: -16px -80px; }
  .ui-icon-extlink { background-position: -32px -80px; }
  .ui-icon-newwin { background-position: -48px -80px; }
  .ui-icon-refresh { background-position: -64px -80px; }
  .ui-icon-shuffle { background-position: -80px -80px; }
  .ui-icon-transfer-e-w { background-position: -96px -80px; }
  .ui-icon-transferthick-e-w { background-position: -112px -80px; }
  .ui-icon-folder-collapsed { background-position: 0 -96px; }
  .ui-icon-folder-open { background-position: -16px -96px; }
  .ui-icon-document { background-position: -32px -96px; }
  .ui-icon-document-b { background-position: -48px -96px; }
  .ui-icon-note { background-position: -64px -96px; }
  .ui-icon-mail-closed { background-position: -80px -96px; }
  .ui-icon-mail-open { background-position: -96px -96px; }
  .ui-icon-suitcase { background-position: -112px -96px; }
  .ui-icon-comment { background-position: -128px -96px; }
  .ui-icon-person { background-position: -144px -96px; }
  .ui-icon-print { background-position: -160px -96px; }
  .ui-icon-trash { background-position: -176px -96px; }
  .ui-icon-locked { background-position: -192px -96px; }
  .ui-icon-unlocked { background-position: -208px -96px; }
  .ui-icon-bookmark { background-position: -224px -96px; }
  .ui-icon-tag { background-position: -240px -96px; }
  .ui-icon-home { background-position: 0 -112px; }
  .ui-icon-flag { background-position: -16px -112px; }
  .ui-icon-calendar { background-position: -32px -112px; }
  .ui-icon-cart { background-position: -48px -112px; }
  .ui-icon-pencil { background-position: -64px -112px; }
  .ui-icon-clock { background-position: -80px -112px; }
  .ui-icon-disk { background-position: -96px -112px; }
  .ui-icon-calculator { background-position: -112px -112px; }
  .ui-icon-zoomin { background-position: -128px -112px; }
  .ui-icon-zoomout { background-position: -144px -112px; }
  .ui-icon-search { background-position: -160px -112px; }
  .ui-icon-wrench { background-position: -176px -112px; }
  .ui-icon-gear { background-position: -192px -112px; }
  .ui-icon-heart { background-position: -208px -112px; }
  .ui-icon-star { background-position: -224px -112px; }
  .ui-icon-link { background-position: -240px -112px; }
  .ui-icon-cancel { background-position: 0 -128px; }
  .ui-icon-plus { background-position: -16px -128px; }
  .ui-icon-plusthick { background-position: -32px -128px; }
  .ui-icon-minus { background-position: -48px -128px; }
  .ui-icon-minusthick { background-position: -64px -128px; }
  .ui-icon-close { background-position: -80px -128px; }
  .ui-icon-closethick { background-position: -96px -128px; }
  .ui-icon-key { background-position: -112px -128px; }
  .ui-icon-lightbulb { background-position: -128px -128px; }
  .ui-icon-scissors { background-position: -144px -128px; }
  .ui-icon-clipboard { background-position: -160px -128px; }
  .ui-icon-copy { background-position: -176px -128px; }
  .ui-icon-contact { background-position: -192px -128px; }
  .ui-icon-image { background-position: -208px -128px; }
  .ui-icon-video { background-position: -224px -128px; }
  .ui-icon-script { background-position: -240px -128px; }
  .ui-icon-alert { background-position: 0 -144px; }
  .ui-icon-info { background-position: -16px -144px; }
  .ui-icon-notice { background-position: -32px -144px; }
  .ui-icon-help { background-position: -48px -144px; }
  .ui-icon-check { background-position: -64px -144px; }
  .ui-icon-bullet { background-position: -80px -144px; }
  .ui-icon-radio-off { background-position: -96px -144px; }
  .ui-icon-radio-on { background-position: -112px -144px; }
  .ui-icon-pin-w { background-position: -128px -144px; }
  .ui-icon-pin-s { background-position: -144px -144px; }
  .ui-icon-play { background-position: 0 -160px; }
  .ui-icon-pause { background-position: -16px -160px; }
  .ui-icon-seek-next { background-position: -32px -160px; }
  .ui-icon-seek-prev { background-position: -48px -160px; }
  .ui-icon-seek-end { background-position: -64px -160px; }
  .ui-icon-seek-start { background-position: -80px -160px; }
  /* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
  .ui-icon-seek-first { background-position: -80px -160px; }
  .ui-icon-stop { background-position: -96px -160px; }
  .ui-icon-eject { background-position: -112px -160px; }
  .ui-icon-volume-off { background-position: -128px -160px; }
  .ui-icon-volume-on { background-position: -144px -160px; }
  .ui-icon-power { background-position: 0 -176px; }
  .ui-icon-signal-diag { background-position: -16px -176px; }
  .ui-icon-signal { background-position: -32px -176px; }
  .ui-icon-battery-0 { background-position: -48px -176px; }
  .ui-icon-battery-1 { background-position: -64px -176px; }
  .ui-icon-battery-2 { background-position: -80px -176px; }
  .ui-icon-battery-3 { background-position: -96px -176px; }
  .ui-icon-circle-plus { background-position: 0 -192px; }
  .ui-icon-circle-minus { background-position: -16px -192px; }
  .ui-icon-circle-close { background-position: -32px -192px; }
  .ui-icon-circle-triangle-e { background-position: -48px -192px; }
  .ui-icon-circle-triangle-s { background-position: -64px -192px; }
  .ui-icon-circle-triangle-w { background-position: -80px -192px; }
  .ui-icon-circle-triangle-n { background-position: -96px -192px; }
  .ui-icon-circle-arrow-e { background-position: -112px -192px; }
  .ui-icon-circle-arrow-s { background-position: -128px -192px; }
  .ui-icon-circle-arrow-w { background-position: -144px -192px; }
  .ui-icon-circle-arrow-n { background-position: -160px -192px; }
  .ui-icon-circle-zoomin { background-position: -176px -192px; }
  .ui-icon-circle-zoomout { background-position: -192px -192px; }
  .ui-icon-circle-check { background-position: -208px -192px; }
  .ui-icon-circlesmall-plus { background-position: 0 -208px; }
  .ui-icon-circlesmall-minus { background-position: -16px -208px; }
  .ui-icon-circlesmall-close { background-position: -32px -208px; }
  .ui-icon-squaresmall-plus { background-position: -48px -208px; }
  .ui-icon-squaresmall-minus { background-position: -64px -208px; }
  .ui-icon-squaresmall-close { background-position: -80px -208px; }
  .ui-icon-grip-dotted-vertical { background-position: 0 -224px; }
  .ui-icon-grip-dotted-horizontal { background-position: -16px -224px; }
  .ui-icon-grip-solid-vertical { background-position: -32px -224px; }
  .ui-icon-grip-solid-horizontal { background-position: -48px -224px; }
  .ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; }
  .ui-icon-grip-diagonal-se { background-position: -80px -224px; }
  
  
  /* Misc visuals
  ----------------------------------*/
  
  /* Corner radius */
  .ui-corner-tl { -moz-border-radius-topleft: 4px/*{cornerRadius}*/; -webkit-border-top-left-radius: 4px/*{cornerRadius}*/; border-top-left-radius: 4px/*{cornerRadius}*/; }
  .ui-corner-tr { -moz-border-radius-topright: 4px/*{cornerRadius}*/; -webkit-border-top-right-radius: 4px/*{cornerRadius}*/; border-top-right-radius: 4px/*{cornerRadius}*/; }
  .ui-corner-bl { -moz-border-radius-bottomleft: 4px/*{cornerRadius}*/; -webkit-border-bottom-left-radius: 4px/*{cornerRadius}*/; border-bottom-left-radius: 4px/*{cornerRadius}*/; }
  .ui-corner-br { -moz-border-radius-bottomright: 4px/*{cornerRadius}*/; -webkit-border-bottom-right-radius: 4px/*{cornerRadius}*/; border-bottom-right-radius: 4px/*{cornerRadius}*/; }
  .ui-corner-top { -moz-border-radius-topleft: 4px/*{cornerRadius}*/; -webkit-border-top-left-radius: 4px/*{cornerRadius}*/; border-top-left-radius: 4px/*{cornerRadius}*/; -moz-border-radius-topright: 4px/*{cornerRadius}*/; -webkit-border-top-right-radius: 4px/*{cornerRadius}*/; border-top-right-radius: 4px/*{cornerRadius}*/; }
  .ui-corner-bottom { -moz-border-radius-bottomleft: 4px/*{cornerRadius}*/; -webkit-border-bottom-left-radius: 4px/*{cornerRadius}*/; border-bottom-left-radius: 4px/*{cornerRadius}*/; -moz-border-radius-bottomright: 4px/*{cornerRadius}*/; -webkit-border-bottom-right-radius: 4px/*{cornerRadius}*/; border-bottom-right-radius: 4px/*{cornerRadius}*/; }
  .ui-corner-right {  -moz-border-radius-topright: 4px/*{cornerRadius}*/; -webkit-border-top-right-radius: 4px/*{cornerRadius}*/; border-top-right-radius: 4px/*{cornerRadius}*/; -moz-border-radius-bottomright: 4px/*{cornerRadius}*/; -webkit-border-bottom-right-radius: 4px/*{cornerRadius}*/; border-bottom-right-radius: 4px/*{cornerRadius}*/; }
  .ui-corner-left { -moz-border-radius-topleft: 4px/*{cornerRadius}*/; -webkit-border-top-left-radius: 4px/*{cornerRadius}*/; border-top-left-radius: 4px/*{cornerRadius}*/; -moz-border-radius-bottomleft: 4px/*{cornerRadius}*/; -webkit-border-bottom-left-radius: 4px/*{cornerRadius}*/; border-bottom-left-radius: 4px/*{cornerRadius}*/; }
  .ui-corner-all { -moz-border-radius: 4px/*{cornerRadius}*/; -webkit-border-radius: 4px/*{cornerRadius}*/; border-radius: 4px/*{cornerRadius}*/; }
  
  /* Overlays */
  .ui-widget-overlay { background: #aaaaaa/*{bgColorOverlay}*/ url(https://www.mit-bund.de/misc/ui/images/ui-bg_flat_0_aaaaaa_40x100.png)/*{bgImgUrlOverlay}*/ 50%/*{bgOverlayXPos}*/ 50%/*{bgOverlayYPos}*/ repeat-x/*{bgOverlayRepeat}*/; opacity: .3;filter:Alpha(Opacity=30)/*{opacityOverlay}*/; }
  .ui-widget-shadow { margin: -8px/*{offsetTopShadow}*/ 0 0 -8px/*{offsetLeftShadow}*/; padding: 8px/*{thicknessShadow}*/; background: #aaaaaa/*{bgColorShadow}*/ url(https://www.mit-bund.de/misc/ui/images/ui-bg_flat_0_aaaaaa_40x100.png)/*{bgImgUrlShadow}*/ 50%/*{bgShadowXPos}*/ 50%/*{bgShadowYPos}*/ repeat-x/*{bgShadowRepeat}*/; opacity: .3;filter:Alpha(Opacity=30)/*{opacityShadow}*/; -moz-border-radius: 8px/*{cornerRadiusShadow}*/; -webkit-border-radius: 8px/*{cornerRadiusShadow}*/; border-radius: 8px/*{cornerRadiusShadow}*/; }/**/
/*
   * jQuery UI Autocomplete 1.8.7
   *
   * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
   * Dual licensed under the MIT or GPL Version 2 licenses.
   * http://jquery.org/license
   *
   * http://docs.jquery.com/UI/Autocomplete#theming
   */
  .ui-autocomplete { position: absolute; cursor: default; }	
  
  /* workarounds */
  * html .ui-autocomplete { width:1px; } /* without this, the menu expands to 100% in IE6 */
  
  /*
   * jQuery UI Menu 1.8.7
   *
   * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
   * Dual licensed under the MIT or GPL Version 2 licenses.
   * http://jquery.org/license
   *
   * http://docs.jquery.com/UI/Menu#theming
   */
  .ui-menu {
  	list-style:none;
  	padding: 2px;
  	margin: 0;
  	display:block;
  	float: left;
  }
  .ui-menu .ui-menu {
  	margin-top: -3px;
  }
  .ui-menu .ui-menu-item {
  	margin:0;
  	padding: 0;
  	zoom: 1;
  	float: left;
  	clear: left;
  	width: 100%;
  }
  .ui-menu .ui-menu-item a {
  	text-decoration:none;
  	display:block;
  	padding:.2em .4em;
  	line-height:1.5;
  	zoom:1;
  }
  .ui-menu .ui-menu-item a.ui-state-hover,
  .ui-menu .ui-menu-item a.ui-state-active {
  	font-weight: normal;
  	margin: -1px;
  }/**/
/**
   * @file
   *   Adds some styles to the standard Drupal autocomplete widget.
   */
  .apachesolr_autocomplete {
  }
  .apachesolr_autocomplete.message {
    font-size:80%;
    color:#888;
  }
  .apachesolr_autocomplete.count {
    float:right;
  }
  div.apachesolr_autocomplete.suggestion {
    display:inline;
    float:left;
  }
  div.ac_results li {
    list-style:none;
    background-image: none !important;
  }/**/
/**
   * Colorbox Core Style:
   * The following CSS is consistent between example themes and should not be altered.
   */
  #colorbox,
  #cboxOverlay,
  #cboxWrapper {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999;
    overflow: hidden;
  }
  #cboxOverlay {
    position: fixed;
    width: 100%;
    height: 100%;
  }
  #cboxMiddleLeft,
  #cboxBottomLeft {
    clear: left;
  }
  #cboxContent {
    position: relative;
  }
  #cboxLoadedContent {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  #cboxTitle {
    margin: 0;
  }
  #cboxLoadingOverlay,
  #cboxLoadingGraphic {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  /**
   * These elements are buttons, and may need to have additional
   * styles reset to avoid unwanted base styles.
   */
  #cboxPrevious,
  #cboxNext,
  #cboxClose,
  #cboxSlideshow {
    border: 0;
    padding: 0;
    margin: 0;
    overflow: visible;
    width: auto;
    background: none;
    cursor: pointer;
  }
  /**
   * Avoid outlines on :active (mouseclick),
   * but preserve outlines on :focus (tabbed navigating)
   */
  #cboxPrevious:active,
  #cboxNext:active,
  #cboxClose:active,
  #cboxSlideshow:active {
    outline: 0;
  }
  .cboxPhoto {
    float: left;
    margin: auto;
    border: 0;
    display: block;
    max-width: 100%;
    max-height: 100%;
  }
  .cboxIframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
  }
  /* Reset box sizing to content-box if theme is using border-box. */
  #colorbox,
  #cboxContent,
  #cboxLoadedContent {
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
  }
  
  /**
   * Colorbox module default style:
   * The styles are ordered & tabbed in a way that represents
   * the nesting of the generated HTML.
   */
  #cboxOverlay {
    background: #000;
  }
  #colorbox {
    outline: 0;
  }
  #cboxWrapper {
    background: #fff;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
  }
  #cboxTopLeft {
    width: 15px;
    height: 15px;
  }
  #cboxTopCenter {
    height: 15px;
  }
  #cboxTopRight {
    width: 15px;
    height: 15px;
  }
  #cboxBottomLeft {
    width: 15px;
    height: 10px;
  }
  #cboxBottomCenter {
    height: 10px;
  }
  #cboxBottomRight {
    width: 15px;
    height: 10px;
  }
  #cboxMiddleLeft {
    width: 15px;
  }
  #cboxMiddleRight {
    width: 15px;
  }
  #cboxContent {
    background: #fff;
    overflow: hidden;
  }
  #cboxError {
    padding: 50px;
    border: 1px solid #ccc;
  }
  #cboxLoadedContent {
    margin-bottom: 28px;
  }
  #cboxTitle {
    position: absolute;
    background: rgba(255, 255, 255, 0.7);
    bottom: 28px;
    left: 0;
    color: #535353;
    width: 100%;
    padding: 4px 6px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  #cboxCurrent {
    position: absolute;
    bottom: 4px;
    left: 60px;
    color: #949494;
  }
  .cboxSlideshow_on #cboxSlideshow {
    position: absolute;
    bottom: 0px;
    right: 30px;
    background: url(https://www.mit-bund.de/sites/all/modules/colorbox/styles/default/images/controls.png) no-repeat -75px -50px;
    width: 25px;
    height: 25px;
    text-indent: -9999px;
  }
  .cboxSlideshow_on #cboxSlideshow:hover {
    background-position: -101px -50px;
  }
  .cboxSlideshow_off #cboxSlideshow {
    position: absolute;
    bottom: 0px;
    right: 30px;
    background: url(https://www.mit-bund.de/sites/all/modules/colorbox/styles/default/images/controls.png) no-repeat -25px -50px;
    width: 25px;
    height: 25px;
    text-indent: -9999px;
  }
  .cboxSlideshow_off #cboxSlideshow:hover {
    background-position: -49px -50px;
  }
  #cboxPrevious {
    position: absolute;
    bottom: 0;
    left: 0;
    background: url(https://www.mit-bund.de/sites/all/modules/colorbox/styles/default/images/controls.png) no-repeat -75px 0px;
    width: 25px;
    height: 25px;
    text-indent: -9999px;
  }
  #cboxPrevious:hover {
    background-position: -75px -25px;
  }
  #cboxNext {
    position: absolute;
    bottom: 0;
    left: 27px;
    background: url(https://www.mit-bund.de/sites/all/modules/colorbox/styles/default/images/controls.png) no-repeat -50px 0px;
    width: 25px;
    height: 25px;
    text-indent: -9999px;
  }
  #cboxNext:hover {
    background-position: -50px -25px;
  }
  #cboxLoadingOverlay {
    background: #fff;
  }
  #cboxLoadingGraphic {
    background: url(https://www.mit-bund.de/sites/all/modules/colorbox/styles/default/images/loading_animation.gif) no-repeat center center;
  }
  #cboxClose {
    position: absolute;
    bottom: 0;
    right: 0;
    background: url(https://www.mit-bund.de/sites/all/modules/colorbox/styles/default/images/controls.png) no-repeat -25px 0px;
    width: 25px;
    height: 25px;
    text-indent: -9999px;
  }
  #cboxClose:hover {
    background-position: -25px -25px;
  }/**/
.ctools-locked {
    color: red;
    border: 1px solid red;
    padding: 1em;
  }
  
  .ctools-owns-lock {
    background: #FFFFDD none repeat scroll 0 0;
    border: 1px solid #F0C020;
    padding: 1em;
  }
  
  a.ctools-ajaxing,
  input.ctools-ajaxing,
  button.ctools-ajaxing,
  select.ctools-ajaxing {
    padding-right: 18px !important;
    background: url(https://www.mit-bund.de/sites/all/modules/ctools/images/status-active.gif) right center no-repeat;
  }
  
  div.ctools-ajaxing {
    float: left;
    width: 18px;
    background: url(https://www.mit-bund.de/sites/all/modules/ctools/images/status-active.gif) center center no-repeat;
  }/**/
div.panel-pane div.admin-links {
    font-size: xx-small;
    margin-right: 1em;
  }
  
  div.panel-pane div.admin-links li a {
    color: #ccc;
  }
  
  div.panel-pane div.admin-links li {
    padding-bottom: 2px;
    background: white;
    z-index: 201;
  }
  
  div.panel-pane div.admin-links:hover a,
  div.panel-pane div.admin-links-hover a {
    color: #000;
  }
  
  div.panel-pane div.admin-links a:before {
    content: "[";
  }
  
  div.panel-pane div.admin-links a:after {
    content: "]";
  }
  
  div.panel-pane div.panel-hide {
    display: none;
  }
  
  /** For IE we add the class via js; for other browsers we rely on :hover **/
  div.panel-pane div.panel-hide-hover,
  div.panel-pane:hover div.panel-hide {
    display: block;
    position: absolute;
    z-index: 200;
    margin-top: -1.5em;
  }
  
  div.panel-pane div.feed a {
    float: right;
  }/**/
@font-face {
    font-family: 'fontello';
    src: url(https://www.mit-bund.de/sites/all/libraries/fontello/font/fontello.eot?47996077);
    src: url(https://www.mit-bund.de/sites/all/libraries/fontello/font/fontello.eot?47996077#iefix) format('embedded-opentype'),
         url(https://www.mit-bund.de/sites/all/libraries/fontello/font/fontello.woff?47996077) format('woff'),
         url(https://www.mit-bund.de/sites/all/libraries/fontello/font/fontello.ttf?47996077) format('truetype'),
         url(https://www.mit-bund.de/sites/all/libraries/fontello/font/fontello.svg?47996077#fontello) format('svg');
    font-weight: normal;
    font-style: normal;
  } 
 /* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
  /* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
  /*@font-face {
      font-family: 'fontello';
      src: url(https://www.mit-bund.de/sites/all/libraries/fontello/font/fontello.svg?47996077#fontello) format('svg');
    } 
@media screen and (-webkit-min-device-pixel-ratio:0) {
  
}*/
   
   [class^="icon-"]:before, [class*=" icon-"]:before {
    font-family: "fontello";
    font-style: normal;
    font-weight: normal;
    speak: none;
   
    display: inline-block;
    text-decoration: inherit;
    width: 1em;
    margin-right: .2em;
    text-align: center;
    /* opacity: .8; */
   
    /* For safety - reset parent styles, that can break glyph codes*/
    font-variant: normal;
    text-transform: none;
   
    /* fix buttons height, for twitter bootstrap */
    line-height: 1em;
   
    /* Animation center compensation - margins should be symmetric */
    /* remove if not needed */
    margin-left: .2em;
   
    /* you can be more comfortable with increased icons size */
    /* font-size: 120%; */
   
    /* Font smoothing. That was taken from TWBS */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
   
    /* Uncomment for 3D effect */
    /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
  }
   
  .fonticon-glass:before { content: '\e800'; } /* '' */
  .fonticon-xing:before { content: '\e801'; } /* '' */
  .fonticon-android:before { content: '\e802'; } /* '' */
  .fonticon-angellist:before { content: '\e803'; } /* '' */
  .fonticon-apple:before { content: '\e804'; } /* '' */
  .fonticon-behance:before { content: '\e805'; } /* '' */
  .fonticon-behance-squared:before { content: '\e806'; } /* '' */
  .fonticon-facebook-squared:before { content: '\e807'; } /* '' */
  .fonticon-facebook-official:before { content: '\e808'; } /* '' */
  .fonticon-flickr:before { content: '\e809'; } /* '' */
  .fonticon-forumbee:before { content: '\e80a'; } /* '' */
  .fonticon-foursquare:before { content: '\e80b'; } /* '' */
  .fonticon-jsfiddle:before { content: '\e80c'; } /* '' */
  .fonticon-lastfm:before { content: '\e80d'; } /* '' */
  .fonticon-lastfm-squared:before { content: '\e80e'; } /* '' */
  .fonticon-leanpub:before { content: '\e80f'; } /* '' */
  .fonticon-linkedin-squared:before { content: '\e810'; } /* '' */
  .fonticon-renren:before { content: '\e811'; } /* '' */
  .fonticon-sellsy:before { content: '\e812'; } /* '' */
  .fonticon-shirtsinbulk:before { content: '\e813'; } /* '' */
  .fonticon-simplybuilt:before { content: '\e814'; } /* '' */
  .fonticon-skyatlas:before { content: '\e815'; } /* '' */
  .fonticon-twitch:before { content: '\e816'; } /* '' */
  .fonticon-twitter-squared:before { content: '\e817'; } /* '' */
  .fonticon-twitter:before { content: '\e818'; } /* '' */
  .fonticon-vimeo-squared:before { content: '\e819'; } /* '' */
  .fonticon-vine:before { content: '\e81a'; } /* '' */
  .fonticon-transgender-alt:before { content: '\e81b'; } /* '' */
  .fonticon-venus-double:before { content: '\e81c'; } /* '' */
  .fonticon-mars-double:before { content: '\e81d'; } /* '' */
  .fonticon-venus-mars:before { content: '\e81e'; } /* '' */
  .fonticon-mars-stroke:before { content: '\e81f'; } /* '' */
  .fonticon-mars-stroke-v:before { content: '\e820'; } /* '' */
  .fonticon-mars-stroke-h:before { content: '\e821'; } /* '' */
  .fonticon-neuter:before { content: '\e822'; } /* '' */
  .fonticon-cc-visa:before { content: '\e823'; } /* '' */
  .fonticon-cc-mastercard:before { content: '\e824'; } /* '' */
  .fonticon-cc-discover:before { content: '\e825'; } /* '' */
  .fonticon-cc-amex:before { content: '\e826'; } /* '' */
  .fonticon-cc-paypal:before { content: '\e827'; } /* '' */
  .fonticon-cc-stripe:before { content: '\e828'; } /* '' */
  .fonticon-adn:before { content: '\e829'; } /* '' */
  .fonticon-bitbucket:before { content: '\e82a'; } /* '' */
  .fonticon-bitbucket-squared:before { content: '\e82b'; } /* '' */
  .fonticon-buysellads:before { content: '\e82c'; } /* '' */
  .fonticon-cc:before { content: '\e82d'; } /* '' */
  .fonticon-codeopen:before { content: '\e82e'; } /* '' */
  .fonticon-connectdevelop:before { content: '\e82f'; } /* '' */
  .fonticon-css3:before { content: '\e830'; } /* '' */
  .fonticon-dashcube:before { content: '\e831'; } /* '' */
  .fonticon-delicious:before { content: '\e832'; } /* '' */
  .fonticon-deviantart:before { content: '\e833'; } /* '' */
  .fonticon-digg:before { content: '\e834'; } /* '' */
  .fonticon-dribbble:before { content: '\e835'; } /* '' */
  .fonticon-dropbox:before { content: '\e836'; } /* '' */
  .fonticon-drupal:before { content: '\e837'; } /* '' */
  .fonticon-facebook:before { content: '\e838'; } /* '' */
  .fonticon-git-squared:before { content: '\e839'; } /* '' */
  .fonticon-git:before { content: '\e83a'; } /* '' */
  .fonticon-github:before { content: '\e83b'; } /* '' */
  .fonticon-github-squared:before { content: '\e83c'; } /* '' */
  .fonticon-github-circled:before { content: '\e83d'; } /* '' */
  .fonticon-gittip:before { content: '\e83e'; } /* '' */
  .fonticon-google:before { content: '\e83f'; } /* '' */
  .fonticon-gplus:before { content: '\e840'; } /* '' */
  .fonticon-gplus-squared:before { content: '\e841'; } /* '' */
  .fonticon-gwallet:before { content: '\e842'; } /* '' */
  .fonticon-hacker-news:before { content: '\e843'; } /* '' */
  .fonticon-html5:before { content: '\e844'; } /* '' */
  .fonticon-instagram:before { content: '\e845'; } /* '' */
  .fonticon-ioxhost:before { content: '\e846'; } /* '' */
  .fonticon-joomla:before { content: '\e847'; } /* '' */
  .fonticon-linux:before { content: '\e848'; } /* '' */
  .fonticon-linkedin:before { content: '\e849'; } /* '' */
  .fonticon-maxcdn:before { content: '\e84a'; } /* '' */
  .fonticon-meanpath:before { content: '\e84b'; } /* '' */
  .fonticon-openid:before { content: '\e84c'; } /* '' */
  .fonticon-pagelines:before { content: '\e84d'; } /* '' */
  .fonticon-paypal:before { content: '\e84e'; } /* '' */
  .fonticon-pied-piper-squared:before { content: '\e84f'; } /* '' */
  .fonticon-pied-piper-alt:before { content: '\e850'; } /* '' */
  .fonticon-pinterest:before { content: '\e851'; } /* '' */
  .fonticon-pinterest-circled:before { content: '\e852'; } /* '' */
  .fonticon-pinterest-squared:before { content: '\e853'; } /* '' */
  .fonticon-qq:before { content: '\e854'; } /* '' */
  .fonticon-reddit:before { content: '\e855'; } /* '' */
  .fonticon-reddit-squared:before { content: '\e856'; } /* '' */
  .fonticon-skype:before { content: '\e857'; } /* '' */
  .fonticon-slack:before { content: '\e858'; } /* '' */
  .fonticon-slideshare:before { content: '\e859'; } /* '' */
  .fonticon-soundcloud:before { content: '\e85a'; } /* '' */
  .fonticon-spotify:before { content: '\e85b'; } /* '' */
  .fonticon-music:before { content: '\e85c'; } /* '' */
  .fonticon-search:before { content: '\e85d'; } /* '' */
  .fonticon-mail:before { content: '\e85e'; } /* '' */
  .fonticon-mail-alt:before { content: '\e85f'; } /* '' */
  .fonticon-mail-squared:before { content: '\e860'; } /* '' */
  .fonticon-heart:before { content: '\e861'; } /* '' */
  .fonticon-heart-empty:before { content: '\e862'; } /* '' */
  .fonticon-star:before { content: '\e863'; } /* '' */
  .fonticon-star-empty:before { content: '\e864'; } /* '' */
  .fonticon-star-half:before { content: '\e865'; } /* '' */
  .fonticon-star-half-alt:before { content: '\e866'; } /* '' */
  .fonticon-user:before { content: '\e867'; } /* '' */
  .fonticon-user-plus:before { content: '\e868'; } /* '' */
  .fonticon-user-times:before { content: '\e869'; } /* '' */
  .fonticon-users:before { content: '\e86a'; } /* '' */
  .fonticon-male:before { content: '\e86b'; } /* '' */
  .fonticon-female:before { content: '\e86c'; } /* '' */
  .fonticon-child:before { content: '\e86d'; } /* '' */
  .fonticon-ic_web_black_24px:before { content: '\e86e'; } /* '' */
  .fonticon-video:before { content: '\e86f'; } /* '' */
  .fonticon-videocam:before { content: '\e870'; } /* '' */
  .fonticon-picture:before { content: '\e871'; } /* '' */
  .fonticon-camera:before { content: '\e872'; } /* '' */
  .fonticon-camera-alt:before { content: '\e873'; } /* '' */
  .fonticon-th-large:before { content: '\e874'; } /* '' */
  .fonticon-th:before { content: '\e875'; } /* '' */
  .fonticon-th-list:before { content: '\e876'; } /* '' */
  .fonticon-ok:before { content: '\e877'; } /* '' */
  .fonticon-ok-circled:before { content: '\e878'; } /* '' */
  .fonticon-ok-circled2:before { content: '\e879'; } /* '' */
  .fonticon-ok-squared:before { content: '\e87a'; } /* '' */
  .fonticon-cancel:before { content: '\e87b'; } /* '' */
  .fonticon-cancel-circled:before { content: '\e87c'; } /* '' */
  .fonticon-ic_access_time_black_24px:before { content: '\e87d'; } /* '' */
  .fonticon-plus:before { content: '\e87e'; } /* '' */
  .fonticon-plus-circled:before { content: '\e87f'; } /* '' */
  .fonticon-plus-squared:before { content: '\e880'; } /* '' */
  .fonticon-plus-squared-alt:before { content: '\e881'; } /* '' */
  .fonticon-minus:before { content: '\e882'; } /* '' */
  .fonticon-minus-circled:before { content: '\e883'; } /* '' */
  .fonticon-minus-squared:before { content: '\e884'; } /* '' */
  .fonticon-minus-squared-alt:before { content: '\e885'; } /* '' */
  .fonticon-help:before { content: '\e886'; } /* '' */
  .fonticon-help-circled:before { content: '\e887'; } /* '' */
  .fonticon-info-circled:before { content: '\e888'; } /* '' */
  .fonticon-info:before { content: '\e889'; } /* '' */
  .fonticon-home:before { content: '\e88a'; } /* '' */
  .fonticon-link:before { content: '\e88b'; } /* '' */
  .fonticon-unlink:before { content: '\e88c'; } /* '' */
  .fonticon-link-ext:before { content: '\e88d'; } /* '' */
  .fonticon-link-ext-alt:before { content: '\e88e'; } /* '' */
  .fonticon-attach:before { content: '\e88f'; } /* '' */
  .fonticon-lock:before { content: '\e890'; } /* '' */
  .fonticon-lock-open:before { content: '\e891'; } /* '' */
  .fonticon-lock-open-alt:before { content: '\e892'; } /* '' */
  .fonticon-pin:before { content: '\e893'; } /* '' */
  .fonticon-eye:before { content: '\e894'; } /* '' */
  .fonticon-eye-off:before { content: '\e895'; } /* '' */
  .fonticon-tag:before { content: '\e896'; } /* '' */
  .fonticon-tags:before { content: '\e897'; } /* '' */
  .fonticon-bookmark:before { content: '\e898'; } /* '' */
  .fonticon-bookmark-empty:before { content: '\e899'; } /* '' */
  .fonticon-flag:before { content: '\e89a'; } /* '' */
  .fonticon-flag-empty:before { content: '\e89b'; } /* '' */
  .fonticon-flag-checkered:before { content: '\e89c'; } /* '' */
  .fonticon-thumbs-up:before { content: '\e89d'; } /* '' */
  .fonticon-thumbs-down:before { content: '\e89e'; } /* '' */
  .fonticon-thumbs-up-alt:before { content: '\e89f'; } /* '' */
  .fonticon-thumbs-down-alt:before { content: '\e8a0'; } /* '' */
  .fonticon-download:before { content: '\e8a1'; } /* '' */
  .fonticon-upload:before { content: '\e8a2'; } /* '' */
  .fonticon-download-cloud:before { content: '\e8a3'; } /* '' */
  .fonticon-upload-cloud:before { content: '\e8a4'; } /* '' */
  .fonticon-reply:before { content: '\e8a5'; } /* '' */
  .fonticon-reply-all:before { content: '\e8a6'; } /* '' */
  .fonticon-forward:before { content: '\e8a7'; } /* '' */
  .fonticon-quote-left:before { content: '\e8a8'; } /* '' */
  .fonticon-quote-right:before { content: '\e8a9'; } /* '' */
  .fonticon-code:before { content: '\e8aa'; } /* '' */
  .fonticon-export:before { content: '\e8ab'; } /* '' */
  .fonticon-export-alt:before { content: '\e8ac'; } /* '' */
  .fonticon-share:before { content: '\e8ad'; } /* '' */
  .fonticon-share-squared:before { content: '\e8ae'; } /* '' */
  .fonticon-pencil:before { content: '\e8af'; } /* '' */
  .fonticon-pencil-squared:before { content: '\e8b0'; } /* '' */
  .fonticon-edit:before { content: '\e8b1'; } /* '' */
  .fonticon-print:before { content: '\e8b2'; } /* '' */
  .fonticon-retweet:before { content: '\e8b3'; } /* '' */
  .fonticon-keyboard:before { content: '\e8b4'; } /* '' */
  .fonticon-gamepad:before { content: '\e8b5'; } /* '' */
  .fonticon-comment:before { content: '\e8b6'; } /* '' */
  .fonticon-chat:before { content: '\e8b7'; } /* '' */
  .fonticon-comment-empty:before { content: '\e8b8'; } /* '' */
  .fonticon-chat-empty:before { content: '\e8b9'; } /* '' */
  .fonticon-bell:before { content: '\e8ba'; } /* '' */
  .fonticon-bell-alt:before { content: '\e8bb'; } /* '' */
  .fonticon-bell-off:before { content: '\e8bc'; } /* '' */
  .fonticon-bell-off-empty:before { content: '\e8bd'; } /* '' */
  .fonticon-attention-alt:before { content: '\e8be'; } /* '' */
  .fonticon-attention:before { content: '\e8bf'; } /* '' */
  .fonticon-attention-circled:before { content: '\e8c0'; } /* '' */
  .fonticon-location:before { content: '\e8c1'; } /* '' */
  .fonticon-direction:before { content: '\e8c2'; } /* '' */
  .fonticon-compass:before { content: '\e8c3'; } /* '' */
  .fonticon-trash:before { content: '\e8c4'; } /* '' */
  .fonticon-trash-empty:before { content: '\e8c5'; } /* '' */
  .fonticon-doc:before { content: '\e8c6'; } /* '' */
  .fonticon-docs:before { content: '\e8c7'; } /* '' */
  .fonticon-doc-text:before { content: '\e8c8'; } /* '' */
  .fonticon-doc-inv:before { content: '\e8c9'; } /* '' */
  .fonticon-doc-text-inv:before { content: '\e8ca'; } /* '' */
  .fonticon-file-pdf:before { content: '\e8cb'; } /* '' */
  .fonticon-file-word:before { content: '\e8cc'; } /* '' */
  .fonticon-file-excel:before { content: '\e8cd'; } /* '' */
  .fonticon-file-powerpoint:before { content: '\e8ce'; } /* '' */
  .fonticon-file-image:before { content: '\e8cf'; } /* '' */
  .fonticon-file-archive:before { content: '\e8d0'; } /* '' */
  .fonticon-file-audio:before { content: '\e8d1'; } /* '' */
  .fonticon-file-video:before { content: '\e8d2'; } /* '' */
  .fonticon-file-code:before { content: '\e8d3'; } /* '' */
  .fonticon-folder:before { content: '\e8d4'; } /* '' */
  .fonticon-folder-open:before { content: '\e8d5'; } /* '' */
  .fonticon-folder-empty:before { content: '\e8d6'; } /* '' */
  .fonticon-folder-open-empty:before { content: '\e8d7'; } /* '' */
  .fonticon-box:before { content: '\e8d8'; } /* '' */
  .fonticon-rss:before { content: '\e8d9'; } /* '' */
  .fonticon-rss-squared:before { content: '\e8da'; } /* '' */
  .fonticon-phone:before { content: '\e8db'; } /* '' */
  .fonticon-phone-squared:before { content: '\e8dc'; } /* '' */
  .fonticon-fax:before { content: '\e8dd'; } /* '' */
  .fonticon-menu:before { content: '\e8de'; } /* '' */
  .fonticon-cog:before { content: '\e8df'; } /* '' */
  .fonticon-cog-alt:before { content: '\e8e0'; } /* '' */
  .fonticon-wrench:before { content: '\e8e1'; } /* '' */
  .fonticon-sliders:before { content: '\e8e2'; } /* '' */
  .fonticon-basket:before { content: '\e8e3'; } /* '' */
  .fonticon-cart-plus:before { content: '\e8e4'; } /* '' */
  .fonticon-cart-arrow-down:before { content: '\e8e5'; } /* '' */
  .fonticon-calendar:before { content: '\e8e6'; } /* '' */
  .fonticon-calendar-empty:before { content: '\e8e7'; } /* '' */
  .fonticon-login:before { content: '\e8e8'; } /* '' */
  .fonticon-logout:before { content: '\e8e9'; } /* '' */
  .fonticon-mic:before { content: '\e8ea'; } /* '' */
  .fonticon-mute:before { content: '\e8eb'; } /* '' */
  .fonticon-volume-off:before { content: '\e8ec'; } /* '' */
  .fonticon-volume-down:before { content: '\e8ed'; } /* '' */
  .fonticon-volume-up:before { content: '\e8ee'; } /* '' */
  .fonticon-headphones:before { content: '\e8ef'; } /* '' */
  .fonticon-clock:before { content: '\e8f0'; } /* '' */
  .fonticon-lightbulb:before { content: '\e8f1'; } /* '' */
  .fonticon-block:before { content: '\e8f2'; } /* '' */
  .fonticon-resize-full:before { content: '\e8f3'; } /* '' */
  .fonticon-resize-full-alt:before { content: '\e8f4'; } /* '' */
  .fonticon-resize-small:before { content: '\e8f5'; } /* '' */
  .fonticon-resize-vertical:before { content: '\e8f6'; } /* '' */
  .fonticon-resize-horizontal:before { content: '\e8f7'; } /* '' */
  .fonticon-move:before { content: '\e8f8'; } /* '' */
  .fonticon-zoom-in:before { content: '\e8f9'; } /* '' */
  .fonticon-zoom-out:before { content: '\e8fa'; } /* '' */
  .fonticon-down-circled2:before { content: '\e8fb'; } /* '' */
  .fonticon-up-circled2:before { content: '\e8fc'; } /* '' */
  .fonticon-left-circled2:before { content: '\e8fd'; } /* '' */
  .fonticon-right-circled2:before { content: '\e8fe'; } /* '' */
  .fonticon-down-dir:before { content: '\e8ff'; } /* '' */
  .fonticon-up-dir:before { content: '\e900'; } /* '' */
  .fonticon-left-dir:before { content: '\e901'; } /* '' */
  .fonticon-right-dir:before { content: '\e902'; } /* '' */
  .fonticon-down-open:before { content: '\e903'; } /* '' */
  .fonticon-left-open:before { content: '\e904'; } /* '' */
  .fonticon-right-open:before { content: '\e905'; } /* '' */
  .fonticon-up-open:before { content: '\e906'; } /* '' */
  .fonticon-angle-left:before { content: '\e907'; } /* '' */
  .fonticon-angle-right:before { content: '\e908'; } /* '' */
  .fonticon-angle-up:before { content: '\e909'; } /* '' */
  .fonticon-angle-down:before { content: '\e90a'; } /* '' */
  .fonticon-angle-circled-left:before { content: '\e90b'; } /* '' */
  .fonticon-angle-circled-right:before { content: '\e90c'; } /* '' */
  .fonticon-angle-circled-up:before { content: '\e90d'; } /* '' */
  .fonticon-angle-circled-down:before { content: '\e90e'; } /* '' */
  .fonticon-angle-double-left:before { content: '\e90f'; } /* '' */
  .fonticon-angle-double-right:before { content: '\e910'; } /* '' */
  .fonticon-angle-double-up:before { content: '\e911'; } /* '' */
  .fonticon-angle-double-down:before { content: '\e912'; } /* '' */
  .fonticon-down:before { content: '\e913'; } /* '' */
  .fonticon-left:before { content: '\e914'; } /* '' */
  .fonticon-right:before { content: '\e915'; } /* '' */
  .fonticon-up:before { content: '\e916'; } /* '' */
  .fonticon-down-big:before { content: '\e917'; } /* '' */
  .fonticon-left-big:before { content: '\e918'; } /* '' */
  .fonticon-right-big:before { content: '\e919'; } /* '' */
  .fonticon-up-big:before { content: '\e91a'; } /* '' */
  .fonticon-right-hand:before { content: '\e91b'; } /* '' */
  .fonticon-left-hand:before { content: '\e91c'; } /* '' */
  .fonticon-up-hand:before { content: '\e91d'; } /* '' */
  .fonticon-down-hand:before { content: '\e91e'; } /* '' */
  .fonticon-left-circled:before { content: '\e91f'; } /* '' */
  .fonticon-right-circled:before { content: '\e920'; } /* '' */
  .fonticon-up-circled:before { content: '\e921'; } /* '' */
  .fonticon-down-circled:before { content: '\e922'; } /* '' */
  .fonticon-cw:before { content: '\e923'; } /* '' */
  .fonticon-ccw:before { content: '\e924'; } /* '' */
  .fonticon-arrows-cw:before { content: '\e925'; } /* '' */
  .fonticon-level-up:before { content: '\e926'; } /* '' */
  .fonticon-level-down:before { content: '\e927'; } /* '' */
  .fonticon-shuffle:before { content: '\e928'; } /* '' */
  .fonticon-exchange:before { content: '\e929'; } /* '' */
  .fonticon-history:before { content: '\e92a'; } /* '' */
  .fonticon-expand:before { content: '\e92b'; } /* '' */
  .fonticon-collapse:before { content: '\e92c'; } /* '' */
  .fonticon-expand-right:before { content: '\e92d'; } /* '' */
  .fonticon-collapse-left:before { content: '\e92e'; } /* '' */
  .fonticon-play:before { content: '\e92f'; } /* '' */
  .fonticon-play-circled:before { content: '\e930'; } /* '' */
  .fonticon-play-circled2:before { content: '\e931'; } /* '' */
  .fonticon-stop:before { content: '\e932'; } /* '' */
  .fonticon-pause:before { content: '\e933'; } /* '' */
  .fonticon-to-end:before { content: '\e934'; } /* '' */
  .fonticon-to-end-alt:before { content: '\e935'; } /* '' */
  .fonticon-to-start:before { content: '\e936'; } /* '' */
  .fonticon-to-start-alt:before { content: '\e937'; } /* '' */
  .fonticon-fast-fw:before { content: '\e938'; } /* '' */
  .fonticon-fast-bw:before { content: '\e939'; } /* '' */
  .fonticon-eject:before { content: '\e93a'; } /* '' */
  .fonticon-target:before { content: '\e93b'; } /* '' */
  .fonticon-signal:before { content: '\e93c'; } /* '' */
  .fonticon-wifi:before { content: '\e93d'; } /* '' */
  .fonticon-award:before { content: '\e93e'; } /* '' */
  .fonticon-desktop:before { content: '\e93f'; } /* '' */
  .fonticon-laptop:before { content: '\e940'; } /* '' */
  .fonticon-tablet:before { content: '\e941'; } /* '' */
  .fonticon-mobile:before { content: '\e942'; } /* '' */
  .fonticon-inbox:before { content: '\e943'; } /* '' */
  .fonticon-globe:before { content: '\e944'; } /* '' */
  .fonticon-sun:before { content: '\e945'; } /* '' */
  .fonticon-cloud:before { content: '\e946'; } /* '' */
  .fonticon-flash:before { content: '\e947'; } /* '' */
  .fonticon-moon:before { content: '\e948'; } /* '' */
  .fonticon-umbrella:before { content: '\e949'; } /* '' */
  .fonticon-flight:before { content: '\e94a'; } /* '' */
  .fonticon-fighter-jet:before { content: '\e94b'; } /* '' */
  .fonticon-paper-plane:before { content: '\e94c'; } /* '' */
  .fonticon-paper-plane-empty:before { content: '\e94d'; } /* '' */
  .fonticon-space-shuttle:before { content: '\e94e'; } /* '' */
  .fonticon-leaf:before { content: '\e94f'; } /* '' */
  .fonticon-font:before { content: '\e950'; } /* '' */
  .fonticon-bold:before { content: '\e951'; } /* '' */
  .fonticon-medium:before { content: '\e952'; } /* '' */
  .fonticon-italic:before { content: '\e953'; } /* '' */
  .fonticon-header:before { content: '\e954'; } /* '' */
  .fonticon-paragraph:before { content: '\e955'; } /* '' */
  .fonticon-text-height:before { content: '\e956'; } /* '' */
  .fonticon-text-width:before { content: '\e957'; } /* '' */
  .fonticon-align-left:before { content: '\e958'; } /* '' */
  .fonticon-align-center:before { content: '\e959'; } /* '' */
  .fonticon-align-right:before { content: '\e95a'; } /* '' */
  .fonticon-align-justify:before { content: '\e95b'; } /* '' */
  .fonticon-list:before { content: '\e95c'; } /* '' */
  .fonticon-indent-left:before { content: '\e95d'; } /* '' */
  .fonticon-indent-right:before { content: '\e95e'; } /* '' */
  .fonticon-list-bullet:before { content: '\e95f'; } /* '' */
  .fonticon-list-numbered:before { content: '\e960'; } /* '' */
  .fonticon-strike:before { content: '\e961'; } /* '' */
  .fonticon-underline:before { content: '\e962'; } /* '' */
  .fonticon-superscript:before { content: '\e963'; } /* '' */
  .fonticon-subscript:before { content: '\e964'; } /* '' */
  .fonticon-table:before { content: '\e965'; } /* '' */
  .fonticon-columns:before { content: '\e966'; } /* '' */
  .fonticon-crop:before { content: '\e967'; } /* '' */
  .fonticon-scissors:before { content: '\e968'; } /* '' */
  .fonticon-paste:before { content: '\e969'; } /* '' */
  .fonticon-briefcase:before { content: '\e96a'; } /* '' */
  .fonticon-suitcase:before { content: '\e96b'; } /* '' */
  .fonticon-ellipsis:before { content: '\e96c'; } /* '' */
  .fonticon-ellipsis-vert:before { content: '\e96d'; } /* '' */
  .fonticon-off:before { content: '\e96e'; } /* '' */
  .fonticon-road:before { content: '\e96f'; } /* '' */
  .fonticon-list-alt:before { content: '\e970'; } /* '' */
  .fonticon-qrcode:before { content: '\e971'; } /* '' */
  .fonticon-barcode:before { content: '\e972'; } /* '' */
  .fonticon-book:before { content: '\e973'; } /* '' */
  .fonticon-ajust:before { content: '\e974'; } /* '' */
  .fonticon-tint:before { content: '\e975'; } /* '' */
  .fonticon-toggle-off:before { content: '\e976'; } /* '' */
  .fonticon-toggle-on:before { content: '\e977'; } /* '' */
  .fonticon-check:before { content: '\e978'; } /* '' */
  .fonticon-check-empty:before { content: '\e979'; } /* '' */
  .fonticon-circle:before { content: '\e97a'; } /* '' */
  .fonticon-circle-empty:before { content: '\e97b'; } /* '' */
  .fonticon-circle-thin:before { content: '\e97c'; } /* '' */
  .fonticon-circle-notch:before { content: '\e97d'; } /* '' */
  .fonticon-dot-circled:before { content: '\e97e'; } /* '' */
  .fonticon-asterisk:before { content: '\e97f'; } /* '' */
  .fonticon-gift:before { content: '\e980'; } /* '' */
  .fonticon-fire:before { content: '\e981'; } /* '' */
  .fonticon-magnet:before { content: '\e982'; } /* '' */
  .fonticon-chart-bar:before { content: '\e983'; } /* '' */
  .fonticon-chart-area:before { content: '\e984'; } /* '' */
  .fonticon-chart-pie:before { content: '\e985'; } /* '' */
  .fonticon-chart-line:before { content: '\e986'; } /* '' */
  .fonticon-ticket:before { content: '\e987'; } /* '' */
  .fonticon-credit-card:before { content: '\e988'; } /* '' */
  .fonticon-floppy:before { content: '\e989'; } /* '' */
  .fonticon-megaphone:before { content: '\e98a'; } /* '' */
  .fonticon-hdd:before { content: '\e98b'; } /* '' */
  .fonticon-key:before { content: '\e98c'; } /* '' */
  .fonticon-fork:before { content: '\e98d'; } /* '' */
  .fonticon-rocket:before { content: '\e98e'; } /* '' */
  .fonticon-bug:before { content: '\e98f'; } /* '' */
  .fonticon-certificate:before { content: '\e990'; } /* '' */
  .fonticon-tasks:before { content: '\e991'; } /* '' */
  .fonticon-filter:before { content: '\e992'; } /* '' */
  .fonticon-beaker:before { content: '\e993'; } /* '' */
  .fonticon-magic:before { content: '\e994'; } /* '' */
  .fonticon-cab:before { content: '\e995'; } /* '' */
  .fonticon-taxi:before { content: '\e996'; } /* '' */
  .fonticon-truck:before { content: '\e997'; } /* '' */
  .fonticon-bus:before { content: '\e998'; } /* '' */
  .fonticon-bicycle:before { content: '\e999'; } /* '' */
  .fonticon-motorcycle:before { content: '\e99a'; } /* '' */
  .fonticon-train:before { content: '\e99b'; } /* '' */
  .fonticon-subway:before { content: '\e99c'; } /* '' */
  .fonticon-ship:before { content: '\e99d'; } /* '' */
  .fonticon-money:before { content: '\e99e'; } /* '' */
  .fonticon-euro:before { content: '\e99f'; } /* '' */
  .fonticon-pound:before { content: '\e9a0'; } /* '' */
  .fonticon-dollar:before { content: '\e9a1'; } /* '' */
  .fonticon-rupee:before { content: '\e9a2'; } /* '' */
  .fonticon-yen:before { content: '\e9a3'; } /* '' */
  .fonticon-rouble:before { content: '\e9a4'; } /* '' */
  .fonticon-shekel:before { content: '\e9a5'; } /* '' */
  .fonticon-try:before { content: '\e9a6'; } /* '' */
  .fonticon-won:before { content: '\e9a7'; } /* '' */
  .fonticon-bitcoin:before { content: '\e9a8'; } /* '' */
  .fonticon-viacoin:before { content: '\e9a9'; } /* '' */
  .fonticon-sort:before { content: '\e9aa'; } /* '' */
  .fonticon-sort-down:before { content: '\e9ab'; } /* '' */
  .fonticon-sort-up:before { content: '\e9ac'; } /* '' */
  .fonticon-sort-alt-up:before { content: '\e9ad'; } /* '' */
  .fonticon-sort-alt-down:before { content: '\e9ae'; } /* '' */
  .fonticon-user-secret:before { content: '\e9af'; } /* '' */
  .fonticon-sort-name-down:before { content: '\e9b0'; } /* '' */
  .fonticon-sort-number-up:before { content: '\e9b1'; } /* '' */
  .fonticon-sort-number-down:before { content: '\e9b2'; } /* '' */
  .fonticon-hammer:before { content: '\e9b3'; } /* '' */
  .fonticon-gauge:before { content: '\e9b4'; } /* '' */
  .fonticon-sitemap:before { content: '\e9b5'; } /* '' */
  .fonticon-spinner:before { content: '\e9b6'; } /* '' */
  .fonticon-coffee:before { content: '\e9b7'; } /* '' */
  .fonticon-food:before { content: '\e9b8'; } /* '' */
  .fonticon-beer:before { content: '\e9b9'; } /* '' */
  .fonticon-user-md:before { content: '\e9ba'; } /* '' */
  .fonticon-stethoscope:before { content: '\e9bb'; } /* '' */
  .fonticon-heartbeat:before { content: '\e9bc'; } /* '' */
  .fonticon-ambulance:before { content: '\e9bd'; } /* '' */
  .fonticon-medkit:before { content: '\e9be'; } /* '' */
  .fonticon-h-sigh:before { content: '\e9bf'; } /* '' */
  .fonticon-bed:before { content: '\e9c0'; } /* '' */
  .fonticon-hospital:before { content: '\e9c1'; } /* '' */
  .fonticon-building:before { content: '\e9c2'; } /* '' */
  .fonticon-building-filled:before { content: '\e9c3'; } /* '' */
  .fonticon-bank:before { content: '\e9c4'; } /* '' */
  .fonticon-smile:before { content: '\e9c5'; } /* '' */
  .fonticon-frown:before { content: '\e9c6'; } /* '' */
  .fonticon-meh:before { content: '\e9c7'; } /* '' */
  .fonticon-anchor:before { content: '\e9c8'; } /* '' */
  .fonticon-terminal:before { content: '\e9c9'; } /* '' */
  .fonticon-eraser:before { content: '\e9ca'; } /* '' */
  .fonticon-puzzle:before { content: '\e9cb'; } /* '' */
  .fonticon-shield:before { content: '\e9cc'; } /* '' */
  .fonticon-extinguisher:before { content: '\e9cd'; } /* '' */
  .fonticon-bullseye:before { content: '\e9ce'; } /* '' */
  .fonticon-wheelchair:before { content: '\e9cf'; } /* '' */
  .fonticon-language:before { content: '\e9d0'; } /* '' */
  .fonticon-graduation-cap:before { content: '\e9d1'; } /* '' */
  .fonticon-paw:before { content: '\e9d2'; } /* '' */
  .fonticon-spoon:before { content: '\e9d3'; } /* '' */
  .fonticon-cube:before { content: '\e9d4'; } /* '' */
  .fonticon-cubes:before { content: '\e9d5'; } /* '' */
  .fonticon-recycle:before { content: '\e9d6'; } /* '' */
  .fonticon-tree:before { content: '\e9d7'; } /* '' */
  .fonticon-database:before { content: '\e9d8'; } /* '' */
  .fonticon-server:before { content: '\e9d9'; } /* '' */
  .fonticon-lifebuoy:before { content: '\e9da'; } /* '' */
  .fonticon-rebel:before { content: '\e9db'; } /* '' */
  .fonticon-empire:before { content: '\e9dc'; } /* '' */
  .fonticon-bomb:before { content: '\e9dd'; } /* '' */
  .fonticon-soccer-ball:before { content: '\e9de'; } /* '' */
  .fonticon-tty:before { content: '\e9df'; } /* '' */
  .fonticon-binoculars:before { content: '\e9e0'; } /* '' */
  .fonticon-plug:before { content: '\e9e1'; } /* '' */
  .fonticon-newspaper:before { content: '\e9e2'; } /* '' */
  .fonticon-calc:before { content: '\e9e3'; } /* '' */
  .fonticon-copyright:before { content: '\e9e4'; } /* '' */
  .fonticon-at:before { content: '\e9e5'; } /* '' */
  .fonticon-eyedropper:before { content: '\e9e6'; } /* '' */
  .fonticon-brush:before { content: '\e9e7'; } /* '' */
  .fonticon-birthday:before { content: '\e9e8'; } /* '' */
  .fonticon-diamond:before { content: '\e9e9'; } /* '' */
  .fonticon-street-view:before { content: '\e9ea'; } /* '' */
  .fonticon-venus:before { content: '\e9eb'; } /* '' */
  .fonticon-mars:before { content: '\e9ec'; } /* '' */
  .fonticon-mercury:before { content: '\e9ed'; } /* '' */
  .fonticon-transgender:before { content: '\e9ee'; } /* '' */
  .fonticon-stackexchange:before { content: '\e9ef'; } /* '' */
  .fonticon-stackoverflow:before { content: '\e9f0'; } /* '' */
  .fonticon-steam:before { content: '\e9f1'; } /* '' */
  .fonticon-steam-squared:before { content: '\e9f2'; } /* '' */
  .fonticon-stumbleupon:before { content: '\e9f3'; } /* '' */
  .fonticon-stumbleupon-circled:before { content: '\e9f4'; } /* '' */
  .fonticon-tencent-weibo:before { content: '\e9f5'; } /* '' */
  .fonticon-trello:before { content: '\e9f6'; } /* '' */
  .fonticon-tumblr:before { content: '\e9f7'; } /* '' */
  .fonticon-tumblr-squared:before { content: '\e9f8'; } /* '' */
  .fonticon-vkontakte:before { content: '\e9f9'; } /* '' */
  .fonticon-whatsapp:before { content: '\e9fa'; } /* '' */
  .fonticon-wechat:before { content: '\e9fb'; } /* '' */
  .fonticon-weibo:before { content: '\e9fc'; } /* '' */
  .fonticon-windows:before { content: '\e9fd'; } /* '' */
  .fonticon-wordpress:before { content: '\e9fe'; } /* '' */
  .fonticon-ic_dvr_black_24px:before { content: '\e9ff'; } /* '' */
  .fonticon-xing-squared:before { content: '\ea00'; } /* '' */
  .fonticon-yelp:before { content: '\ea01'; } /* '' */
  .fonticon-youtube:before { content: '\ea02'; } /* '' */
  .fonticon-yahoo:before { content: '\ea03'; } /* '' */
  .fonticon-youtube-squared:before { content: '\ea04'; } /* '' */
  .fonticon-youtube-play:before { content: '\ea05'; } /* '' */
  .fonticon-blank:before { content: '\ea06'; } /* '' */
  .fonticon-lemon:before { content: '\ea07'; } /* '' */
  .fonticon-ic_exit_to_app_black_24px:before { content: '\ea08'; } /* '' */
  .fonticon-ic_format_size_black_24px:before { content: '\ea09'; } /* '' */
  .fonticon-ic_keyboard_return_black_24px:before { content: '\ea0a'; } /* '' */
  .fonticon-ic_more_black_24px:before { content: '\ea0b'; } /* '' */
  .fonticon-ic_reorder_black_24px:before { content: '\ea0c'; } /* '' */
  .fonticon-plus-box:before { content: '\ea0d'; } /* '' */
  .fonticon-ic_receipt_black_24px:before { content: '\ea0e'; } /* '' */
  .fonticon-vector-arrange-below:before { content: '\ea0f'; } /* '' */
  .fonticon-map-marker-radius:before { content: '\ea10'; } /* '' */
  .fonticon-palette:before { content: '\ea11'; } /* '' */
  .fonticon-arrange-send-backward:before { content: '\ea12'; } /* '' */
  .fonticon-arrange-bring-forward:before { content: '\ea13'; } /* '' */
  .fonticon-filter-variant:before { content: '\ea14'; } /* '' */
  .fonticon-ic_format_color_text_black_24px:before { content: '\ea15'; } /* '' */
  .fonticon-ic_aspect_ratio_black_24px:before { content: '\ea16'; } /* '' */
  .fonticon-ic_remove_red_eye_black_24px:before { content: '\ea17'; } /* '' */
  .fonticon-ic_view_stream_black_24px:before { content: '\ea18'; } /* '' */
  .fonticon-ic_view_day_black_24px:before { content: '\ea19'; } /* '' */
  .fonticon-ic_view_carousel_black_24px:before { content: '\ea1a'; } /* '' */
  .fonticon-ic_view_quilt_black_24px:before { content: '\ea1b'; } /* '' */
  .fonticon-ic_view_array_black_24px:before { content: '\ea1c'; } /* '' */
  .fonticon-ic_view_compact_black_24px:before { content: '\ea1d'; } /* '' */
  .fonticon-ic_art_track_black_24px:before { content: '\ea1e'; } /* '' */
  .fonticon-ic_done_black_24px:before { content: '\ea1f'; } /* '' */
  .fonticon-ic_clear_black_24px:before { content: '\ea20'; } /* '' */
  .fonticon-ic_delete_black_24px:before { content: '\ea21'; } /* '' */
  .fonticon-ic_cached_black_24px:before { content: '\ea22'; } /* '' */
  .fonticon-ic_reply_black_24px:before { content: '\ea23'; } /* '' */
  .fonticon-ic_sort_by_alpha_black_24px:before { content: '\ea24'; } /* '' */
  .fonticon-ic_add_black_24px:before { content: '\ea25'; } /* '' */
  .fonticon-ic_folder_black_24px:before { content: '\ea26'; } /* '' */
  .fonticon-ic_view_list_black_24px:before { content: '\ea27'; } /* '' */
  .fonticon-ic_view_module_black_24px:before { content: '\ea28'; } /* '' */
  .fonticon-comment-alert:before { content: '\ea29'; } /* '' */
  .fonticon-comment-check:before { content: '\ea2a'; } /* '' */
  .fonticon-library-plus:before { content: '\ea2b'; } /* '' */
  .fonticon-minus-1:before { content: '\ea2c'; } /* '' */
  .fonticon-block-helper:before { content: '\ea2d'; } /* '' */
  .fonticon-cancel-circled2:before { content: '\ea2e'; } /* '' */
  .fonticon-drawing-box:before { content: '\ea2f'; } /* '' *//**/
/**
   * Cookie-Banner
   * 
   * @author Attila N├®meth
   * 26.03.2020
   */
  .ubg-cookies-banner {
    z-index: 9900; }
    .ubg-cookies-banner.ubg-cookies-banner-overlay {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0; }
      .ubg-cookies-banner.ubg-cookies-banner-overlay .scrim {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #0000007f;
        z-index: 9901; }
      .ubg-cookies-banner.ubg-cookies-banner-overlay .banner {
        position: absolute;
        top: 3em;
        left: 0;
        right: 0;
        bottom: 3em;
        margin: 0 2em;
        border: 1px solid #000;
        background-color: #fff;
        z-index: 9902;
        overflow: auto; }
    .ubg-cookies-banner.ubg-cookies-banner-bottom {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      height: 80%; }
      .ubg-cookies-banner.ubg-cookies-banner-bottom .banner {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        max-height: 100%;
        overflow: auto;
        border-width: 1px 0 0 0;
        border-color: #000;
        border-style: solid;
        background-color: #fff;
        z-index: 9902; }
    .ubg-cookies-banner .form .ubg-cookies-submit.ubg-cookies-submit-select {
      display: none; }
    .ubg-cookies-banner .form .cookie-details-container {
      display: none;
      margin-left: 1em;
      padding-left: 1em;
      border-left: 1px solid #aaa; }
    
  div.ubg-cookies-reset-banner-wrapper {
    display: none;
  }/**/
/* 
      UBG Privacy
      Author     : Attila Németh, UBG
      03.05.2018
  */
  
  .ubg-privacy-googleanalytics-label .form-type-checkbox p,
  .ubg-privacy-piwik-label .form-type-checkbox p {
    display: inline-block;
  }/**/
/* @group Node edit form styles */
  
  .settings-group {
    clear: both;
    margin-top: 1.5em;
  }
  
  .settings-group > img {
    float: left;
    margin-bottom: 2em;
    margin-right: 2em;
  }
  
  .settings-group .group-label {
    font-weight: bold;
    margin-bottom: 0.75em;
  }
  
  .settings-group .form-item {
    padding: 0;
  }
  
  .settings-group .form-item label {
    font-weight: normal;
  }
  
  .settings-group .form-item label.option {
    font-size: 1em;
    vertical-align: middle;
  }
  
  .settings-group .form-item div.description {
    font-size: 0.87em;
    margin-top: 0;
  }
  
  .settings-group .form-inline {
    float: left;
  }
  
  .settings-group .form-inline label {
    display: none;
  }
  
  .settings-group .form-inline select {
    margin: 2em 1em 0 0;
  }
  
  .settings-group .form-inline.label label {
    display: block;
    position: absolute;
  }
  
  .settings-group .form-select.enhanced {
    margin-right: 1em;
  }
  
  .no-overflow {
    overflow: hidden;
  }
  
  .field-name-media-gallery-format .form-type-radio label.option,
  .field-name-media-gallery-lightbox-extras .form-type-checkbox label.option {
    font-size: 0.94em;
    line-height: 1.2em;
  }
  
  .field-name-media-gallery-format .form-type-radio label.option .description {
    color: #666666;
    display: block;
    font-size: 0.86em;
  }
  
  .no-label label,
  .no-group-label > .form-item > label {
    display: none;
  }
  
  .setting-icon {
    background: url(https://www.mit-bund.de/sites/all/modules/media_gallery/images/gallery-icon-sprite.png) no-repeat left top transparent;
    display: block;
    float: left;
    height: 44px;
    margin: 0 0.5em;
    width: 42px;
  }
  
  .settings-group .setting-icon {
    height: 109px;
    width: 104px;
  }
  
  .gallery-settings .setting-icon {
    background-position: -442px -57px;
  }
  
  .presentation-settings .setting-icon {
    background-position: 0 -57px;
  }
  
  .block-settings .setting-icon {
    background-position: -331px -57px;
  }
  
  .galleries-settings .setting-icon {
    background-position: -552px -57px;
  }
  
  /* @end */
  
  /* @group Galleries form styles */
  
  .form-media-gallery-collection .field-name-field-license {
    clear: both;
  }
  
  #edit-media-gallery-lightbox-extras {
    margin-left: 2em;
    margin-top: -1em;
  }
  
  .presentation-settings .setting-icon.display-page {
    background-position: -221px -57px;
  }
  
  .presentation-settings .setting-icon.display-lightbox {
    background-position: 0 -57px;
  }
  
  .presentation-settings .setting-icon.display-extras {
    background-position: -110px -57px;
  }
  
  /* @end */
  
  /* @group Gallery thumbnail styles */
  
  .media-gallery-collection a.media-gallery-thumb,
  .media-gallery-media a.media-gallery-thumb,
  .media-gallery-thumb img {
    display: block;
    overflow: hidden;
    position: relative;
  }
  
  .media-gallery-media > .field-items > .field-item {
    float: left;
    position: relative;
  }
  
  .media-gallery-media .media-gallery-item-wrapper {
    margin: 0.5em;
    position: relative;
  }
  
  .media-gallery-media .media-gallery-item {
    background: #FFFFFF;
    border: 1px solid #666666;
    padding: 2%;
  }
  
  .meta-wrapper,
  .meta-wrapper:link,
  .meta-wrapper:hover,
  .meta-wrapper:visited,
  .meta-wrapper:active {
    font-size: 0.8462em;
    line-height: 1.5em;
    min-height: 3em;
    vertical-align: top;
  }
  
  .meta-wrapper .media-title * .field-item,
  .meta-wrapper .media-title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
    -moz-binding: url(https://www.mit-bund.de/sites/all/modules/media_gallery/ellipsis.xml#ellipsis);
  }
  
  .meta-wrapper {
    display: block;
    padding: 0 9%;
  }
  
  .meta-wrapper.hover {
    line-height: 1em;
    padding: 0;
  }
  
  .meta-wrapper .media-description span {
    white-space: nowrap;
  }
  
  .media-license {
    display: block;
    float: right;
    font-size: 0;
    line-height: 14px;
  }
  
  .media-gallery-media .media-license {
    float: left;
    margin: 4px 0 0;
  }
  
  .media-license span {
    background: url(https://www.mit-bund.de/sites/all/modules/media_gallery/images/creative-commons-sprite.png) no-repeat left top transparent;
    display: inline-block;
    font-size: 1em;
    height: 0;
    padding: 7px;
    width: 0;
  }
  
  .media-license span + span {
    margin-left: 3px;
  }
  
  .media-license.dark .copyright {
    background-position: -95px -1px;
  }
  
  .media-license.dark .attribution {
    background-position: -2px -1px;
  }
  
  .media-license.dark .non-commercial {
    background-position: -25px -1px;
  }
  
  .media-license.dark .share-alike {
    background-position: -49px -1px;
  }
  
  .media-license.dark .no-deriv {
    background-position: -72px -1px;
  }
  
  .media-license.light .copyright {
    background-position: -95px -51px;
  }
  
  .media-license.light .attribution {
    background-position: -2px -51px;
  }
  
  .media-license.light .non-commercial {
    background-position: -25px -51px;
  }
  
  .media-license.light .share-alike {
    background-position: -49px -51px;
  }
  
  .media-license.light .no-deriv {
    background-position: -72px -51px;
  }
  
  .media-license.medium .copyright {
    background-position: -95px -26px;
  }
  
  .media-license.medium .attribution {
    background-position: -2px -26px;
  }
  
  .media-license.medium .non-commercial {
    background-position: -25px -26px;
  }
  
  .media-license.medium .share-alike {
    background-position: -49px -26px;
  }
  
  .media-license.medium .no-deriv {
    background-position: -72px -26px;
  }
  
  .meta-wrapper.hover {
    color: #666;
    display: none;
    left: -2px;
    line-height: 1.25em;
    margin: -7px 0 0;
    min-height: 0;
    min-width: 100%;
    position: absolute;
    *right: -2px;
    top: 100%;
    z-index: 1;
  }
  
  .meta-wrapper.hover .slider {
    background: url(https://www.mit-bund.de/sites/all/modules/media_gallery/images/hover-bubble.png) no-repeat left top transparent;
    display: block;
  }
  
  .meta-wrapper.hover .slider.top {
    padding-left: 53px;
  }
  
  .meta-wrapper.hover .slider.top-inner {
    background-position: right -48px;
    height: 14px;
  }
  
  .meta-wrapper.hover .slider.meta-outer {
    background: url(https://www.mit-bund.de/sites/all/modules/media_gallery/images/hover-bubble-middle.png) repeat-y left top transparent;
    padding-left: 0.5em;
  }
  
  .meta-wrapper.hover .slider.meta-inner {
    background: url(https://www.mit-bund.de/sites/all/modules/media_gallery/images/hover-bubble-middle.png) repeat-y right top transparent;
    padding-right: 0.5em;
  }
  
  .meta-wrapper.hover .slider.bottom {
    background-position: left -42px;
    padding-left: 53px;
  }
  
  .meta-wrapper.hover .slider.bottom-inner {
    background-position: right bottom;
    height: 5px;
  }
  
  .meta-wrapper .media-title {
    display: block;
    font-size: 12px;
    font-weight: bold;
    height: 1.5em;
    line-height: 1.5em;
    white-space: nowrap;
  }
  
  .meta-wrapper.hover .media-title {
    color: #000;
  }
  
  .meta-wrapper.hover .media-title a,
  .meta-wrapper.hover .media-title a:hover {
    color: #000;
  }
  
  .media-gallery-item-wrapper:hover .meta-wrapper.hover,
  .media-collection-item-wrapper:hover + .meta-wrapper.hover,
  .meta-wrapper.hover:hover {
    display: block;
  }
  
  .meta-inner span {
    display: block;
  }
  
  .media-description span {
    display: inline;
    line-height: 1em;
  }
  
  /* @end */
  
  /* @group Gridding styles */
  
  .media-gallery-media {
  
  }
  
  .mg-col {
    display: inline-block;
    margin: 0 -0.5em 3em;
    width: 100%;
  }
  
  .mg-col > .field-items {
    width: 100%;
  }
  
  a.media-gallery-thumb img,
  .media-gallery-detail img {
    height: auto;
    overflow: auto;
    width: 100%;
  }
  
  /**
   * The following widths are inflected with !important to
   * prevent users in the ThemeBuilder from destroying the
   * presentation of their galleries if they alter the width
   * of items with the .field class.
   */
  .mg-col-1 > .field-items > .field-item,
  .mg-col-1 .mg-gallery,
  .media-gallery-detail .field-items > .field-item {
    width: 100% !important;
  }
  
  .mg-col-2 > .field-items > .field-item,
  .mg-col-2 .mg-gallery {
    width: 50% !important;
  }
  
  .mg-col-3 > .field-items > .field-item,
  .mg-col-3 .mg-gallery {
    width: 33.3% !important;
  }
  
  .mg-col-4 > .field-items > .field-item,
  .mg-col-4 .mg-gallery {
    width: 24.96% !important;
  }
  
  .mg-col-5 > .field-items > .field-item,
  .mg-col-5 .mg-gallery {
    width: 20% !important;
  }
  
  .mg-col-6 > .field-items > .field-item,
  .mg-col-6 .mg-gallery {
    width: 16.6666666665% !important;
  }
  
  .mg-col-7 > .field-items > .field-item,
  .mg-col-7 .mg-gallery {
    width: 14.2857142857% !important;
  }
  
  .mg-col-8 > .field-items > .field-item,
  .mg-col-8 .mg-gallery {
    width: 12.5% !important;
  }
  
  .mg-col-9 > .field-items > .field-item,
  .mg-col-9 .mg-gallery {
    width: 11.1111111111% !important;
  }
  
  .mg-col-10 > .field-items > .field-item,
  .mg-col-10 .mg-gallery {
    width: 10% !important;
  }
  
  .mg-col .mg-gallery.mg-teaser {
    float: left;
  }
  
  .mg-col .mg-gallery.mg-teaser,
  .mg-col .mg-gallery.mg-teaser .content {
    margin: 0;
    outline: none;
    position: relative;
  }
  
  .mg-col .mg-gallery.mg-teaser h2 {
    display: none;
  }
  
  .mg-col .mg-gallery.mg-teaser .float-overflow {
    margin: 0.5em;
    overflow: visible;
    position: relative;
  }
  
  /* @end */
  
  /* @group Detail page styles */
  
  .media-gallery-detail-wrapper {
    margin-top: 1em;
  }
  
  .media-gallery-detail {
    float: left;
    margin-right: 1em;
    line-height: normal;
    max-width: 70%;
  }
  
  .media-gallery-detail-wrapper .field-name-media-description .field-item {
    word-wrap: break-word;
  }
  
  .media-gallery-detail-info {
    clear: both;
    display: inline-block;
    margin-top: 0.5em;
    position: relative;
    overflow: hidden;
    width: 100%;
  }
  
  .media-gallery-detail-info .media-license {
    position: absolute;
    top: 0;
    right: 0;
  }
  
  .media-gallery-detail-info + .media-gallery-detail-info {
    margin-top: 1em;
  }
  
  .media-gallery-detail-image-info-wrapper {
    clear: right;
    float: right;
  }
  
  .media-gallery-image-count {
    padding-right: 1em;
  }
  
  /* @end */
  
  /* @group Lightbox styles */
  
  #cboxSlideshow {
    right: 40px;
  }
  
  .mg-lightbox-wrapper {
    color: #666666;
  }
  
  .mg-lightbox-wrapper a,
  .lightbox-stack a {
    color: #0074BD;
  }
  
  .mg-lightbox-wrapper a:link,
  .mg-lightbox-wrapper a:visited,
  .mg-lightbox-wrapper a:active,
  .mg-lightbox-wrapper a:hover,
  .lightbox-stack a:link,
  .lightbox-stack a:visited,
  .lightbox-stack a:active,
  .lightbox-stack a:hover{
    color: #0074BD;
  }
  
  .mg-lightbox-wrapper a:hover,
  .lightbox-stack a:hover {
    text-decoration: underline;
  }
  
  .mg-lightbox-wrapper .lightbox-title {
    font-size: 1.8em;
    font-weight: bold;
    padding-bottom: 0.2em;
    padding-top: 0.2em;
  }
  
  .mg-lightbox-detail {
    float: left;
    padding-right: 320px;
  }
  
  .mg-lightbox-description {
    width: 300px;
    margin-left: -300px;
    float: left;
  }
  
  .lightbox-stack {
    min-width: 250px;
  }
  
  /* @end */
  
  /* @group Gallery of Galleries styles */
  
  .media-collection-item-wrapper {
    padding: 9%;
    position: relative;
  }
  
  .stack-image {
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0;
  }
  
  .media-collection-item-wrapper .media-gallery-item {
    border: none;
    position: relative;
  }
  
  .mg-gallery img.stack-image,
  .mg-gallery .media-gallery-thumb img {
    border: 0;
    padding: 0;
  }
  
  /* @end */
  
  /* @group Gallery node styles */
  
  .colorbox-supplemental-links {
    display: none;
  }
  
  /* @end */
  
  /* @group Overrides */
  
  a.contextual-links-trigger {
    background-position: 2px -18px;
  }
  
  a.contextual-links-trigger:hover,
  div.contextual-links-active a.contextual-links-trigger {
    background-position: 2px 0;
  }
  
  /* remove extra padding around the iframe */
  .ui-dialog .media-modal-frame {
    padding: 0 !important;
  }
  
  /* @end *//**/
