/* CSS Document */
@font-face {
  font-family: 'Conv_gill-sans-std';
  src: url("../fonts/gill-sans/gill-sans-std.eot");
  src: url("../fonts/gill-sans/gill-sans-std.eot?#iefix") format("embedded-opentype"), url("../fonts/gill-sans/gill-sans-std.woff") format("woff"), url("../fonts/gill-sans/gill-sans-std.ttf") format("truetype"), url("../fonts/gill-sans/gill-sans-std.svg#OpenSansRegular") format("svg");
  font-weight: normal;
  font-style: normal; }
/* Breakpoint Mixin
Source: http://www.sitepoint.com/sass-mixins-kickstart-project/
*/
/* Usage Example

 @include breakpoint(medium) {
    color: blue;h
  }
}
*/
/*! normalize.css v3.0.0 | MIT License | git.io/normalize */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/**
 * Remove default margin.
 */
body {
  margin: 0; }

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined in IE 8/9.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block; }

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */ }

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

/**
 * Address `[hidden]` styling not present in IE 8/9.
 * Hide the `template` element in IE, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none; }

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background: transparent; }

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

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9, Safari 5, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted; }

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

/**
 * Address styling not present in Safari 5 and Chrome.
 */
dfn {
  font-style: italic; }

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari 5, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000; }

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%; }

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

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9.
 */
img {
  border: 0; }

/**
 * Correct overflow displayed oddly in IE 9.
 */
svg:not(:root) {
  overflow: hidden; }

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari 5.
 */
figure {
  margin: 1em 40px; }

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0; }

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto; }

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em; }

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */ }

/**
 * Address `overflow` set to `hidden` in IE 8/9/10.
 */
button {
  overflow: visible; }

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8+, and Opera
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none; }

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */ }

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default; }

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal; }

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto; }

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

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

/**
 * 1. Correct `color` not being inherited in IE 8/9.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Remove default vertical scrollbar in IE 8/9.
 */
textarea {
  overflow: auto; }

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold; }

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0; }

td,
th {
  padding: 0; }

/*
 * @font-face mixin
 * @include font-face('family', '../fonts/', 'myfontname');
 */
/* egs
a {
    font-weight: bold;
    text-decoration: none;
    color: #c00;

    @include attention() {
        outline: none;
        color: #09f;
    }

}

.btn {
    background-color: #09f;

    @include attention() {
        background-color: darken(#09f, 10%);
    }

}
Source: http://sassmeister.com/gist/d7f40eb288ab1e3e85d3
*/
@font-face {
  font-family: 'IcoMoon';
  src: url("../../../media/jui/fonts/IcoMoon.eot");
  src: url("../../../media/jui/fonts/IcoMoon.eot?#iefix") format("embedded-opentype"), url("../../../media/jui/fonts/IcoMoon.woff") format("woff"), url("../../../media/jui/fonts/IcoMoon.ttf") format("truetype"), url("../../../media/jui/fonts/IcoMoon.svg#IcoMoon") format("svg");
  font-weight: normal;
  font-style: normal; }
[data-icon]:before {
  font-family: 'IcoMoon';
  content: attr(data-icon);
  speak: none; }

[class^="icon-"],
[class*=" icon-"] {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: .25em;
  line-height: 14px; }

[class^="icon-"]:before,
[class*=" icon-"]:before {
  font-family: 'IcoMoon';
  font-style: normal;
  speak: none; }

[class^="icon-"].disabled,
[class*=" icon-"].disabled {
  font-weight: normal; }

.icon-joomla:before {
  content: "\e200"; }

.icon-chevron-up:before,
.icon-uparrow:before,
.icon-arrow-up:before {
  content: "\e005"; }

.icon-chevron-right:before,
.icon-rightarrow:before,
.icon-arrow-right:before {
  content: "\e006"; }

.icon-chevron-down:before,
.icon-downarrow:before,
.icon-arrow-down:before {
  content: "\e007"; }

.icon-chevron-left:before,
.icon-leftarrow:before,
.icon-arrow-left:before {
  content: "\e008"; }

.icon-arrow-first:before {
  content: "\e003"; }

.icon-arrow-last:before {
  content: "\e004"; }

.icon-arrow-up-2:before {
  content: "\e009"; }

.icon-arrow-right-2:before {
  content: "\e00a"; }

.icon-arrow-down-2:before {
  content: "\e00b"; }

.icon-arrow-left-2:before {
  content: "\e00c"; }

.icon-arrow-up-3:before {
  content: "\e00f"; }

.icon-arrow-right-3:before {
  content: "\e010"; }

.icon-arrow-down-3:before {
  content: "\e011"; }

.icon-arrow-left-3:before {
  content: "\e012"; }

.icon-menu-2:before {
  content: "\e00e"; }

.icon-arrow-up-4:before {
  content: "\e201"; }

.icon-arrow-right-4:before {
  content: "\e202"; }

.icon-arrow-down-4:before {
  content: "\e203"; }

.icon-arrow-left-4:before {
  content: "\e204"; }

.icon-share:before,
.icon-redo:before {
  content: "\27"; }

.icon-undo:before {
  content: "\28"; }

.icon-forward-2:before {
  content: "\e205"; }

.icon-backward-2:before,
.icon-reply:before {
  content: "\e206"; }

.icon-unblock:before,
.icon-refresh:before,
.icon-redo-2:before {
  content: "\6c"; }

.icon-undo-2:before {
  content: "\e207"; }

.icon-move:before {
  content: "\7a"; }

.icon-expand:before {
  content: "\66"; }

.icon-contract:before {
  content: "\67"; }

.icon-expand-2:before {
  content: "\68"; }

.icon-contract-2:before {
  content: "\69"; }

.icon-play:before {
  content: "\e208"; }

.icon-pause:before {
  content: "\e209"; }

.icon-stop:before {
  content: "\e210"; }

.icon-previous:before,
.icon-backward:before {
  content: "\7c"; }

.icon-next:before,
.icon-forward:before {
  content: "\7b"; }

.icon-first:before {
  content: "\7d"; }

.icon-last:before {
  content: "\e000"; }

.icon-play-circle:before {
  content: "\e00d"; }

.icon-pause-circle:before {
  content: "\e211"; }

.icon-stop-circle:before {
  content: "\e212"; }

.icon-backward-circle:before {
  content: "\e213"; }

.icon-forward-circle:before {
  content: "\e214"; }

.icon-loop:before {
  content: "\e001"; }

.icon-shuffle:before {
  content: "\e002"; }

.icon-search:before {
  content: "\53"; }

.icon-zoom-in:before {
  content: "\64"; }

.icon-zoom-out:before {
  content: "\65"; }

.icon-apply:before,
.icon-edit:before,
.icon-pencil:before {
  content: "\2b"; }

.icon-pencil-2:before {
  content: "\2c"; }

.icon-brush:before {
  content: "\3b"; }

.icon-save-new:before,
.icon-plus-2:before {
  content: "\5d"; }

.icon-minus-sign:before,
.icon-minus-2:before {
  content: "\5e"; }

.icon-delete:before,
.icon-remove:before,
.icon-cancel-2:before {
  content: "\49"; }

.icon-publish:before,
.icon-save:before,
.icon-ok:before,
.icon-checkmark:before {
  content: "\47"; }

.icon-new:before,
.icon-plus:before {
  content: "\2a"; }

.icon-plus-circle:before {
  content: "\e215"; }

.icon-minus:before,
.icon-not-ok:before {
  content: "\4b"; }

.icon-ban-circle:before,
.icon-minus-circle:before {
  content: "\e216"; }

.icon-unpublish:before,
.icon-cancel:before {
  content: "\4a"; }

.icon-cancel-circle:before {
  content: "\e217"; }

.icon-checkmark-2:before {
  content: "\e218"; }

.icon-checkmark-circle:before {
  content: "\e219"; }

.icon-info:before {
  content: "\e220"; }

.icon-info-2:before,
.icon-info-circle:before {
  content: "\e221"; }

.icon-question:before,
.icon-question-sign:before,
.icon-help:before {
  content: "\45"; }

.icon-question-2:before,
.icon-question-circle:before {
  content: "\e222"; }

.icon-notification:before {
  content: "\e223"; }

.icon-notification-2:before,
.icon-notification-circle:before {
  content: "\e224"; }

.icon-pending:before,
.icon-warning:before {
  content: "\48"; }

.icon-warning-2:before,
.icon-warning-circle:before {
  content: "\e225"; }

.icon-checkbox-unchecked:before {
  content: "\3d"; }

.icon-checkin:before,
.icon-checkbox:before,
.icon-checkbox-checked:before {
  content: "\3e"; }

.icon-checkbox-partial:before {
  content: "\3f"; }

.icon-square:before {
  content: "\e226"; }

.icon-radio-unchecked:before {
  content: "\e227"; }

.icon-radio-checked:before,
.icon-generic:before {
  content: "\e228"; }

.icon-circle:before {
  content: "\e229"; }

.icon-signup:before {
  content: "\e230"; }

.icon-grid:before,
.icon-grid-view:before {
  content: "\58"; }

.icon-grid-2:before,
.icon-grid-view-2:before {
  content: "\59"; }

.icon-menu:before {
  content: "\5a"; }

.icon-list:before,
.icon-list-view:before {
  content: "\31"; }

.icon-list-2:before {
  content: "\e231"; }

.icon-menu-3:before {
  content: "\e232"; }

.icon-folder-open:before,
.icon-folder:before {
  content: "\2d"; }

.icon-folder-close:before,
.icon-folder-2:before {
  content: "\2e"; }

.icon-folder-plus:before {
  content: "\e234"; }

.icon-folder-minus:before {
  content: "\e235"; }

.icon-folder-3:before {
  content: "\e236"; }

.icon-folder-plus-2:before {
  content: "\e237"; }

.icon-folder-remove:before {
  content: "\e238"; }

.icon-file:before {
  content: "\e016"; }

.icon-file-2:before {
  content: "\e239"; }

.icon-file-add:before,
.icon-file-plus:before {
  content: "\29"; }

.icon-file-minus:before {
  content: "\e017"; }

.icon-file-check:before {
  content: "\e240"; }

.icon-file-remove:before {
  content: "\e241"; }

.icon-save-copy:before,
.icon-copy:before {
  content: "\e018"; }

.icon-stack:before {
  content: "\e242"; }

.icon-tree:before {
  content: "\e243"; }

.icon-tree-2:before {
  content: "\e244"; }

.icon-paragraph-left:before {
  content: "\e246"; }

.icon-paragraph-center:before {
  content: "\e247"; }

.icon-paragraph-right:before {
  content: "\e248"; }

.icon-paragraph-justify:before {
  content: "\e249"; }

.icon-screen:before {
  content: "\e01c"; }

.icon-tablet:before {
  content: "\e01d"; }

.icon-mobile:before {
  content: "\e01e"; }

.icon-box-add:before {
  content: "\51"; }

.icon-box-remove:before {
  content: "\52"; }

.icon-download:before {
  content: "\e021"; }

.icon-upload:before {
  content: "\e022"; }

.icon-home:before {
  content: "\21"; }

.icon-home-2:before {
  content: "\e250"; }

.icon-out-2:before,
.icon-new-tab:before {
  content: "\e024"; }

.icon-out-3:before,
.icon-new-tab-2:before {
  content: "\e251"; }

.icon-link:before {
  content: "\e252"; }

.icon-picture:before,
.icon-image:before {
  content: "\2f"; }

.icon-pictures:before,
.icon-images:before {
  content: "\30"; }

.icon-palette:before,
.icon-color-palette:before {
  content: "\e014"; }

.icon-camera:before {
  content: "\55"; }

.icon-camera-2:before,
.icon-video:before {
  content: "\e015"; }

.icon-play-2:before,
.icon-video-2:before,
.icon-youtube:before {
  content: "\56"; }

.icon-music:before {
  content: "\57"; }

.icon-user:before {
  content: "\22"; }

.icon-users:before {
  content: "\e01f"; }

.icon-vcard:before {
  content: "\6d"; }

.icon-address:before {
  content: "\70"; }

.icon-share-alt:before,
.icon-out:before {
  content: "\26"; }

.icon-enter:before {
  content: "\e257"; }

.icon-exit:before {
  content: "\e258"; }

.icon-comment:before,
.icon-comments:before {
  content: "\24"; }

.icon-comments-2:before {
  content: "\25"; }

.icon-quote:before,
.icon-quotes-left:before {
  content: "\60"; }

.icon-quote-2:before,
.icon-quotes-right:before {
  content: "\61"; }

.icon-quote-3:before,
.icon-bubble-quote:before {
  content: "\e259"; }

.icon-phone:before {
  content: "\e260"; }

.icon-phone-2:before {
  content: "\e261"; }

.icon-envelope:before,
.icon-mail:before {
  content: "\4d"; }

.icon-envelope-opened:before,
.icon-mail-2:before {
  content: "\4e"; }

.icon-unarchive:before,
.icon-drawer:before {
  content: "\4f"; }

.icon-archive:before,
.icon-drawer-2:before {
  content: "\50"; }

.icon-briefcase:before {
  content: "\e020"; }

.icon-tag:before {
  content: "\e262"; }

.icon-tag-2:before {
  content: "\e263"; }

.icon-tags:before {
  content: "\e264"; }

.icon-tags-2:before {
  content: "\e265"; }

.icon-options:before,
.icon-cog:before {
  content: "\38"; }

.icon-cogs:before {
  content: "\37"; }

.icon-screwdriver:before,
.icon-tools:before {
  content: "\36"; }

.icon-wrench:before {
  content: "\3a"; }

.icon-equalizer:before {
  content: "\39"; }

.icon-dashboard:before {
  content: "\78"; }

.icon-switch:before {
  content: "\e266"; }

.icon-filter:before {
  content: "\54"; }

.icon-purge:before,
.icon-trash:before {
  content: "\4c"; }

.icon-checkedout:before,
.icon-lock:before,
.icon-locked:before {
  content: "\23"; }

.icon-unlock:before {
  content: "\e267"; }

.icon-key:before {
  content: "\5f"; }

.icon-support:before {
  content: "\46"; }

.icon-database:before {
  content: "\62"; }

.icon-scissors:before {
  content: "\e268"; }

.icon-health:before {
  content: "\6a"; }

.icon-wand:before {
  content: "\6b"; }

.icon-eye-open:before,
.icon-eye:before {
  content: "\3c"; }

.icon-eye-close:before,
.icon-eye-blocked:before,
.icon-eye-2:before {
  content: "\e269"; }

.icon-clock:before {
  content: "\6e"; }

.icon-compass:before {
  content: "\6f"; }

.icon-broadcast:before,
.icon-connection:before,
.icon-wifi:before {
  content: "\e01b"; }

.icon-book:before {
  content: "\e271"; }

.icon-lightning:before,
.icon-flash:before {
  content: "\79"; }

.icon-print:before,
.icon-printer:before {
  content: "\e013"; }

.icon-feed:before {
  content: "\71"; }

.icon-calendar:before {
  content: "\43"; }

.icon-calendar-2:before {
  content: "\44"; }

.icon-calendar-3:before {
  content: "\e273"; }

.icon-pie:before {
  content: "\77"; }

.icon-bars:before {
  content: "\76"; }

.icon-chart:before {
  content: "\75"; }

.icon-power-cord:before {
  content: "\32"; }

.icon-cube:before {
  content: "\33"; }

.icon-puzzle:before {
  content: "\34"; }

.icon-attachment:before,
.icon-paperclip:before,
.icon-flag-2:before {
  content: "\72"; }

.icon-lamp:before {
  content: "\74"; }

.icon-pin:before,
.icon-pushpin:before {
  content: "\73"; }

.icon-location:before {
  content: "\63"; }

.icon-shield:before {
  content: "\e274"; }

.icon-flag:before {
  content: "\35"; }

.icon-flag-3:before {
  content: "\e275"; }

.icon-bookmark:before {
  content: "\e023"; }

.icon-bookmark-2:before {
  content: "\e276"; }

.icon-heart:before {
  content: "\e277"; }

.icon-heart-2:before {
  content: "\e278"; }

.icon-thumbs-up:before {
  content: "\5b"; }

.icon-thumbs-down:before {
  content: "\5c"; }

.icon-unfeatured:before,
.icon-asterisk:before,
.icon-star-empty:before {
  content: "\40"; }

.icon-star-2:before {
  content: "\41"; }

.icon-featured:before,
.icon-default:before,
.icon-star:before {
  content: "\42"; }

.icon-smiley:before,
.icon-smiley-happy:before {
  content: "\e279"; }

.icon-smiley-2:before,
.icon-smiley-happy-2:before {
  content: "\e280"; }

.icon-smiley-sad:before {
  content: "\e281"; }

.icon-smiley-sad-2:before {
  content: "\e282"; }

.icon-smiley-neutral:before {
  content: "\e283"; }

.icon-smiley-neutral-2:before {
  content: "\e284"; }

.icon-cart:before {
  content: "\e019"; }

.icon-basket:before {
  content: "\e01a"; }

.icon-credit:before {
  content: "\e286"; }

.icon-credit-2:before {
  content: "\e287"; }

.icon-expired:before {
  content: "\4b"; }

body {
  font-size: 16px;
  font-family: sans-serif;
  color: #646464; }

h1 {
  font-size: 3.8em;
  letter-spacing: -0.03em;
  margin: 0; }

p {
  line-height: 1.5; }

.pagination .pagination-list {
  display: block; }
  .pagination .pagination-list li {
    display: inline-block; }
    .pagination .pagination-list li a {
      background: #bbb;
      padding: 10px;
      margin: 0 5px;
      color: white;
      line-height: 1em;
      display: block;
      text-decoration: none; }
      .pagination .pagination-list li a span {
        line-height: 1em; }
      .pagination .pagination-list li a:hover {
        background: #aaa; }
  .pagination .pagination-list li.disabled a {
    color: #bbb;
    background: #f1f3f4; }
    .pagination .pagination-list li.disabled a:hover {
      background: #f1f3f4; }

html {
  box-sizing: border-box; }

* {
  margin: 0;
  padding: 0; }

*, *:before, *:after {
  box-sizing: inherit; }

body {
  width: 100%;
  padding: 0;
  margin: 0;
  background: white !important;
  display: flex;
  flex-wrap: wrap;
  min-height: 100vh;
  justify-content: space-between;
  flex-direction: column; }
  body .body {
    display: block;
    width: 100%; }

.header_topbar {
  width: 100%;
  z-index: 999; }
  @media (min-width: 768px) {
    .header_topbar {
      position: absolute;
      top: 0;
      background: url(../../../images/swooshv3.png);
      background-repeat: repeat-x;
      height: 175px; } }

.topbar {
  width: 100%;
  background: #1f784d;
  padding: 0 25px;
  border-bottom: 1px solid rgba(233, 221, 197, 0.5); }
  @media (min-width: 992px) {
    .topbar {
      background: none; } }
  @media (min-width: 992px) {
    .topbar {
      padding: 5px 100px; } }
  .topbar .custom {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
    min-height: 30px;
    color: #E9DDC5; }
    @media (min-width: 992px) {
      .topbar .custom {
        flex-direction: row; } }
    .topbar .custom .tagline {
      font-family: 'Lato', sans-serif;
      font-weight: 900;
      font-size: 1.25rem;
      margin: 5px 0px; }
      @media (min-width: 992px) {
        .topbar .custom .tagline {
          margin: 0px; } }
    .topbar .custom .contact {
      font-family: 'Lato', sans-serif;
      font-weight: 300;
      font-size: 1.25rem;
      text-transform: uppercase;
      margin: 5px 0px; }
      @media (min-width: 992px) {
        .topbar .custom .contact {
          margin: 0px; } }
      .topbar .custom .contact .location {
        font-size: 1.5rem;
        font-weight: 900; }
      .topbar .custom .contact .separator {
        margin: 0px 10px; }
      .topbar .custom .contact .phone_number {
        font-weight: 900; }

header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  background: #1f784d;
  min-height: 50px;
  padding: 0 25px; }
  @media (min-width: 992px) {
    header {
      background: none; } }
  @media (min-width: 992px) {
    header {
      padding: 0px 100px;
      flex-direction: row;
      align-items: center; } }
  header .custom a {
    text-decoration: none;
    display: inline-block; }
  header .custom h1 {
    font-size: 5rem;
    font-family: 'Conv_gill-sans-std';
    color: #E9DDC5;
    letter-spacing: 0;
    text-shadow: 2px -2px black, 3px -3px black, 4px -4px black, 5px -5px black;
    position: relative;
    top: 10px; }

nav {
  display: flex;
  width: 100%;
  max-height: 300px;
  justify-content: flex-end; }
  nav .nav {
    display: none; }
    @media (min-width: 992px) {
      nav .nav {
        display: flex;
        list-style-type: none; } }
  nav li {
    margin: 0px 10px; }
    nav li:first-child {
      margin-left: 0px; }
    nav li:last-child {
      margin-right: 0px; }
    nav li a {
      text-decoration: none;
      color: #E9DDC5;
      position: relative;
      font-size: 1.25rem;
      font-weight: 400;
      font-family: 'Lato', sans-serif; }
      @media (min-width: 1200px) {
        nav li a {
          font-size: 1.5rem; } }
  nav .current a {
    text-decoration: underline;
    font-size: 1.25rem;
    font-weight: 400;
    font-family: 'Lato', sans-serif; }
    @media (min-width: 1200px) {
      nav .current a {
        font-size: 1.5rem; } }
  nav .accordeonck {
    height: 0; }
    nav .accordeonck ul li {
      width: 100%; }
    @media (min-width: 992px) {
      nav .accordeonck {
        display: none; } }
    nav .accordeonck #accordeonck94 {
      box-shadow: none !important;
      display: none; }
      nav .accordeonck #accordeonck94 li {
        border: none; }

.menucontrolbox {
  width: 50px;
  padding: 0;
  display: flex;
  align-items: center; }
  .menucontrolbox svg {
    width: 50px; }
  @media (min-width: 452px) {
    .menucontrolbox {
      padding: 0;
      z-index: 40;
      height: 40px; } }
  @media (min-width: 992px) {
    .menucontrolbox {
      padding: 10px 0;
      text-align: center;
      width: 20%; } }
  @media (min-width: 992px) {
    .menucontrolbox {
      width: 50px;
      display: none; } }

#menucontrol:checked ~ nav {
  display: block;
  position: relative;
  overflow: visible;
  height: auto; }
  #menucontrol:checked ~ nav .accordeonck {
    z-index: 999;
    display: block;
    background: white;
    border: none;
    height: auto; }
  #menucontrol:checked ~ nav .accordeonck:not(.accordeonck) {
    height: auto;
    position: relative;
    border: none; }
  #menucontrol:checked ~ nav #accordeonck94 {
    display: block;
    border-bottom: 1px dotted #bbb;
    padding: 0;
    box-shadow: none !important; }
  #menucontrol:checked ~ nav li {
    width: 100%;
    display: block;
    position: relative;
    padding: 5px 0; }
    @media (min-width: 768px) {
      #menucontrol:checked ~ nav li {
        display: inline-block;
        padding: 0; } }
    @media (min-width: 992px) {
      #menucontrol:checked ~ nav li {
        padding: 0 2.5px 0;
        margin-left: 0; } }
  @media (min-width: 992px) {
    #menucontrol:checked ~ nav {
      position: absolute;
      left: calc(3% + 152px);
      width: calc(97% - 152px);
      padding: 11px 10px;
      margin-top: 39px;
      z-index: 40;
      border-bottom: none;
      overflow: hidden; } }
  @media (min-width: 992px) {
    #menucontrol:checked ~ nav {
      position: relative;
      width: auto;
      display: flex;
      margin-top: 14px;
      border-bottom: none;
      height: auto;
      padding: 0;
      right: 0;
      left: 0;
      background: none; } }
  @media (min-width: 1200px) {
    #menucontrol:checked ~ nav {
      margin-top: 30px; } }

.menucontrolbutton {
  margin: 20px 0;
  cursor: pointer;
  width: 50px;
  font-size: 1em;
  -webkit-transition: color 0.8s ease;
  -moz-transition: color 0.8s ease;
  -ms-transition: color 0.8s ease;
  -o-transition: color 0.8s ease;
  transition: color 0.8s ease;
  color: #646464; }
  @media (min-width: 768px) {
    .menucontrolbutton:hover, .menucontrolbutton:active, .menucontrolbutton:focus {
      color: white; } }
  .menucontrolbutton svg {
    height: 20px;
    width: 20px;
    margin: 0 10px -3px 0; }
    @media (min-width: 992px) {
      .menucontrolbutton svg {
        fill: white; } }
  @media (min-width: 992px) {
    .menucontrolbutton {
      color: white; } }

#menucontrol, #menucontrol2 {
  display: none; }

#menucontrol2:checked ~ #sub-aside {
  display: block;
  position: relative;
  overflow: visible;
  height: auto;
  padding: 10px;
  border-top: 5px solid white; }
  #menucontrol2:checked ~ #sub-aside li {
    border-color: white; }
    #menucontrol2:checked ~ #sub-aside li a {
      color: white; }
      @media (min-width: 992px) {
        #menucontrol2:checked ~ #sub-aside li a {
          color: black; } }
    @media (min-width: 992px) {
      #menucontrol2:checked ~ #sub-aside li {
        border-color: black; } }
  @media (min-width: 452px) {
    #menucontrol2:checked ~ #sub-aside {
      padding: 0 10px 0 0; } }
  @media (min-width: 768px) {
    #menucontrol2:checked ~ #sub-aside {
      border-bottom: none;
      overflow: hidden; } }
  @media (min-width: 992px) {
    #menucontrol2:checked ~ #sub-aside {
      border-bottom: none;
      height: auto;
      background: none;
      padding-right: 70px; } }

#menucontrol2 {
  display: none; }

.sector-menu {
  padding: 10px 20px;
  text-align: left; }
  .sector-menu label {
    color: white; }
  @media (min-width: 768px) {
    .sector-menu {
      width: 100%;
      display: none; } }

.hero {
  display: none; }
  @media (min-width: 768px) {
    .hero {
      display: block; } }
  .hero img {
    width: 100%; }

.top {
  display: block;
  width: 100%;
  max-height: 300px;
  background: #eee; }

main #system-message-container #system-message {
  padding: 10px 20px; }
  main #system-message-container #system-message .alert {
    display: flex;
    align-items: center; }
    main #system-message-container #system-message .alert .close,
    main #system-message-container #system-message .alert .alert-heading {
      margin-right: 10px; }
main .gallery, main .item-page, main .blog {
  padding: 25px; }
  @media (min-width: 992px) {
    main .gallery, main .item-page, main .blog {
      padding: 25px 100px; } }
main .item-page .photo_holder {
  display: flex;
  flex-direction: column;
  float: none; }
  @media (min-width: 992px) {
    main .item-page .photo_holder {
      float: right; } }
  main .item-page .photo_holder img {
    margin-bottom: 10px;
    width: 320px; }
main .item-page h2 {
  margin-bottom: 10px;
  color: #1F784D;
  font-size: 2.25rem; }
main .item-page h4 {
  margin-bottom: 10px;
  color: #1F784D;
  font-size: 1.25rem; }
main .item-page p {
  margin-bottom: 10px; }
main .item-page a {
  color: #1F784D; }
main .item-page ul {
  list-style-type: none;
  margin-left: 0; }
  main .item-page ul li {
    margin-bottom: 5px; }
    main .item-page ul li:last-child {
      margin-bottom: 0px; }
main .item-page .information_wrapper {
  display: flex;
  flex-direction: column; }
  @media (min-width: 992px) {
    main .item-page .information_wrapper {
      flex-flow: row wrap;
      justify-content: space-between; } }
  main .item-page .information_wrapper .information {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%; }
    @media (min-width: 1200px) {
      main .item-page .information_wrapper .information {
        width: 48%; } }
    @media (min-width: 1500px) {
      main .item-page .information_wrapper .information {
        width: 24%; } }
    main .item-page .information_wrapper .information h4 {
      color: #1F784D;
      font-size: 1.4rem;
      text-align: center;
      margin: 10px 0px; }
    main .item-page .information_wrapper .information img {
      width: 200px; }
    main .item-page .information_wrapper .information p {
      text-align: center;
      font-family: 'Lato', sans-serif;
      font-weight: 300; }
main .item-page .creativecontactform_wrapper {
  width: 100%; }
  @media (min-width: 992px) {
    main .item-page .creativecontactform_wrapper {
      width: 50%; } }
  main .item-page .creativecontactform_wrapper .creativecontactform_title {
    color: #1F784D;
    font-weight: 700;
    font-size: 1.5rem;
    font-family: 'Lato', sans-serif; }
  main .item-page .creativecontactform_wrapper .creativecontactform_field_name {
    margin: 0px;
    font-family: 'Lato', sans-serif;
    font-size: 1.05rem;
    margin-bottom: 5px;
    color: #646464; }
  main .item-page .creativecontactform_wrapper .creativecontactform_send {
    background: #1F784D;
    color: white;
    border: 1px solid #1F784D;
    box-shadow: none;
    text-shadow: none;
    width: 50% !important; }
    @media (min-width: 992px) {
      main .item-page .creativecontactform_wrapper .creativecontactform_send {
        width: 25% !important; } }
    main .item-page .creativecontactform_wrapper .creativecontactform_send:hover {
      background: white;
      color: #1F784D;
      width: 50% !important;
      box-shadow: none;
      text-shadow: none; }
      @media (min-width: 992px) {
        main .item-page .creativecontactform_wrapper .creativecontactform_send:hover {
          width: 25% !important; } }

.bottom {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 25px;
  background: #E9DDC5; }
  @media (min-width: 1200px) {
    .bottom {
      padding: 25px 100px;
      flex-direction: row;
      justify-content: space-between; } }
  .bottom .newsflash {
    width: 100%;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.18);
    margin-bottom: 10px;
    background: white; }
    @media (min-width: 1200px) {
      .bottom .newsflash {
        width: 48.5%;
        margin-bottom: 0px; } }
    .bottom .newsflash figure {
      margin: 0; }
    .bottom .newsflash img {
      max-width: 100%;
      width: 100%; }
    .bottom .newsflash h4 {
      color: #1F784D;
      font-size: 1.5rem;
      padding: 10px 20px; }
    .bottom .newsflash p {
      line-height: 1.5;
      font-size: 1.075rem;
      padding: 10px 20px; }
    .bottom .newsflash a.readmore {
      text-decoration: none;
      color: #1F784D;
      padding: 10px 20px; }
  .bottom .creativecontactform_wrapper {
    width: auto;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.18) !important;
    padding: 20px;
    margin: 0px; }
    @media (min-width: 1200px) {
      .bottom .creativecontactform_wrapper {
        width: 48.5%; } }
    .bottom .creativecontactform_wrapper .creativecontactform_title {
      color: #1F784D;
      font-weight: 700;
      font-size: 1.5rem;
      font-family: 'Lato', sans-serif; }
      @media (min-width: 992px) {
        .bottom .creativecontactform_wrapper .creativecontactform_title {
          font-size: 2.5rem; } }
    .bottom .creativecontactform_wrapper .creativecontactform_pre_text {
      border-top: none;
      margin: 10px 0px;
      font-family: 'Lato', sans-serif;
      color: black;
      font-size: 1.1rem; }
    .bottom .creativecontactform_wrapper .creativecontactform_field_name {
      margin: 0px;
      font-family: 'Lato', sans-serif;
      font-size: 1.05rem;
      margin-bottom: 5px;
      color: #646464; }
    .bottom .creativecontactform_wrapper .creativecontactform_send {
      background: #1F784D;
      color: white;
      border: 1px solid #1F784D;
      box-shadow: none;
      text-shadow: none;
      width: 25% !important; }
      .bottom .creativecontactform_wrapper .creativecontactform_send:hover {
        background: white;
        color: #1F784D;
        width: 25% !important;
        box-shadow: none;
        text-shadow: none; }

.bottom_tagline {
  padding: 0px 25px 25px 25px;
  background: #E9DDC5; }
  .bottom_tagline h3 {
    text-align: center;
    color: #663333;
    font-family: 'Pacifico', cursive;
    font-size: 4rem;
    font-weight: 100; }

.anseve_form fieldset {
  border: none; }
  .anseve_form fieldset input, .anseve_form fieldset textarea {
    width: 50%;
    margin: 5px 0;
    border: 1px dotted #ccc;
    padding: 5px 10px;
    line-height: 1em; }
  .anseve_form fieldset button {
    display: block;
    background: #f1f3f4;
    border: 1px dotted #ccc;
    padding: 5px; }
    @media (min-width: 992px) {
      .anseve_form fieldset button {
        width: 30%;
        margin: 0;
        margin-left: auto; } }

.gallery {
  /* display: flex; */
  flex-wrap: wrap;
  justify-content: space-between; }
  .gallery .jg_row .jg_photo {
    border: none; }
  @media (min-width: 452px) {
    .gallery .jg_row {
      width: 48%; } }
  @media (min-width: 992px) {
    .gallery .jg_row {
      width: 30%; } }
  @media (min-width: 992px) {
    .gallery .jg_row:last-child:nth-child(2), .gallery .jg_row:last-child:nth-child(5), .gallery .jg_row:last-child:nth-child(8) {
      margin: 0 auto 0 5%; } }
  .gallery .jg_back, .gallery .jg_category, .gallery .pagination {
    width: 100%; }

#adminForm {
  width: 100%; }
  #adminForm .tab-content #editor {
    margin-top: 25px; }
  #adminForm .tab-content #images {
    display: none;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 15px 0;
    width: 100%; }
    #adminForm .tab-content #images .control-group {
      width: 100%; }
    @media (min-width: 992px) {
      #adminForm .tab-content #images .control-group {
        width: 20%;
        padding: 10px 0; }
        #adminForm .tab-content #images .control-group .inputbox {
          width: 100%; }
        #adminForm .tab-content #images .control-group .media-preview {
          width: 30px; }
        #adminForm .tab-content #images .control-group #jform_images_image_intro, #adminForm .tab-content #images .control-group #jform_images_image_fulltext {
          width: calc(100% - 120px); }
        #adminForm .tab-content #images .control-group .input-prepend {
          display: flex;
          flex-wrap: wrap; }
          #adminForm .tab-content #images .control-group .input-prepend .btn {
            margin-left: 5px; }
        #adminForm .tab-content #images .control-group .control-label {
          padding-bottom: 5px; }
      #adminForm .tab-content #images .control-group:first-child, #adminForm .tab-content #images .control-group:nth-child(5) {
        width: 32%; } }
  #adminForm .tab-content #publishing {
    display: none;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 10px; }
    #adminForm .tab-content #publishing .control-group {
      width: 100%; }
    @media (min-width: 992px) {
      #adminForm .tab-content #publishing .control-group {
        width: 20%; }
      #adminForm .tab-content #publishing .control-group:first-child {
        width: 32%; } }
  #adminForm .tab-content #metadata {
    display: flex;
    justify-content: space-between;
    padding-top: 10px; }
    #adminForm .tab-content #metadata .control-group {
      width: 48%; }
      #adminForm .tab-content #metadata .control-group textarea {
        width: 100%; }
  #adminForm .tab-content #attrib-fields-0 {
    display: none; }
  #adminForm .tab-content a:not(.tab-pane a) {
    color: white;
    display: inline-block; }
  #adminForm .tab-content select {
    width: 100%; }
  #adminForm fieldset {
    padding: 30px;
    border: none; }
  #adminForm .btn-toolbar {
    display: block;
    padding-left: 30px;
    position: relative; }
    #adminForm .btn-toolbar .btn-group {
      width: auto;
      display: inline-block;
      margin: 0 auto 0 0 !important; }
      #adminForm .btn-toolbar .btn-group button {
        border: none;
        background: #6e6f72;
        padding: 10px;
        color: white; }
        #adminForm .btn-toolbar .btn-group button i {
          color: white; }
        #adminForm .btn-toolbar .btn-group button:hover {
          background: #184885; }
        #adminForm .btn-toolbar .btn-group button span {
          margin-right: 10px; }
    #adminForm .btn-toolbar .btn-group:nth-child(3) {
      display: block; }
  #adminForm .chzn-single {
    border: 1px solid #6e6f72;
    padding: 5px 10px;
    background: white !important;
    border-radius: 0 !important;
    height: 33px;
    border-radius: 0;
    width: 200px; }
    #adminForm .chzn-single div b {
      margin-top: 5px; }
  #adminForm .chzn-drop {
    width: 200px; }
  #adminForm .chzn-results {
    padding-left: 0 !important; }
    #adminForm .chzn-results .active-result {
      font-size: 16px !important; }
  #adminForm #filter-bar {
    display: flex;
    justify-content: space-between;
    width: 100%; }
    #adminForm #filter-bar .btn-group {
      width: inherit; }
  #adminForm .pagination li {
    display: inline-block; }

.jg_userpanelview {
  width: 100%; }
  .jg_userpanelview .jg-quick-edit-row .row-fluid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; }
      .jg_userpanelview .jg-quick-edit-row .row-fluid .span3 .img-polaroid {
        margin: 20px; }
      .jg_userpanelview .jg-quick-edit-row .row-fluid .span3 a {
        margin: 20px;
        display: block; }
        .jg_userpanelview .jg-quick-edit-row .row-fluid .span3 a .img-polaroid {
          margin: 0; }
    .jg_userpanelview .jg-quick-edit-row .row-fluid .span9 {
      width: calc(100% - 175px);
      margin-top: 20px; }
      .jg_userpanelview .jg-quick-edit-row .row-fluid .span9 label, .jg_userpanelview .jg-quick-edit-row .row-fluid .span9 .jg-editor-wrapper {
        width: 100%; }
      .jg_userpanelview .jg-quick-edit-row .row-fluid .span9 .span3, .jg_userpanelview .jg-quick-edit-row .row-fluid .span9 .span9 {
        margin: 5px 0; }
        .jg_userpanelview .jg-quick-edit-row .row-fluid .span9 .span3 input, .jg_userpanelview .jg-quick-edit-row .row-fluid .span9 .span9 input {
          width: 100%; }
  .jg_userpanelview .jg_up_head .btn-group {
    display: flex;
    flex-direction: row; }

[id^="jg-title-row"] td {
  width: 10%; }
[id^="jg-title-row"] td:first-child {
  width: 2%; }
[id^="jg-title-row"] td:nth-child(2) {
  width: 11%; }
[id^="jg-title-row"] td:nth-child(3) {
  width: 4%; }
[id^="jg-title-row"] td:nth-child(4) {
  width: 45%; }
[id^="jg-title-row"] td:nth-child(5) {
  width: 20%; }
[id^="jg-title-row"] td:nth-child(6) {
  width: 20%; }
  [id^="jg-title-row"] td:nth-child(6) .pull-left {
    width: 30px;
    display: inline-block; }

#imageList thead th {
  width: 10%; }
#imageList thead th:first-child {
  width: 2%; }
#imageList thead th:nth-child(2) {
  width: 11%;
  text-align: left; }
#imageList thead th:nth-child(3) {
  width: 4%; }
#imageList thead th:nth-child(4) {
  width: 45%;
  text-align: left; }
#imageList thead th:nth-child(5) {
  width: 20%;
  text-align: left; }
#imageList thead th:nth-child(6) {
  width: 10%;
  text-align: left; }

#editor .span6 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 10px; }
#editor #jform_title {
  width: 45%; }

#jform_publish_up, #jform_publish_down {
  width: calc(100% - 40px); }

.icon-cog {
  display: none; }
  .icon-cog:before {
    display: none; }

.dropdown-menu {
  list-style-type: none;
  padding-left: 0 !important; }
  .dropdown-menu .edit-icon span {
    margin-right: 15px; }

#versionsModal {
  width: 100%; }

#editor-xtd-buttons {
  width: 100%; }

.mceLayout, .wf-editor-container {
  width: 100% !important; }

#jform_articletext {
  width: 100% !important; }

#editor-xtd-buttons {
  margin: 5px;
  padding-left: 0 !important; }
  #editor-xtd-buttons a {
    background: #184885;
    padding: 10px;
    color: white !important;
    margin-right: 5px;
    text-decoration: none; }
    #editor-xtd-buttons a:hover {
      background: #6e6f72; }

.edit-icon {
  margin-left: 0 !important;
  list-style: none;
  margin: 10px 0px; }
  .edit-icon:before {
    display: none; }

.wf-editor-tabs li {
  margin-left: 0 !important; }
  .wf-editor-tabs li:before {
    display: none; }

.tab-content .tab-pane:not(#editor) a {
  color: #6e6f72;
  text-decoration: none; }
  .tab-content .tab-pane:not(#editor) a:hover {
    color: #185885; }

.nav-tabs {
  display: block;
  padding: 0; }
  .nav-tabs li {
    display: inline-block;
    padding: 0 5px; }
    .nav-tabs li a {
      background: #184885;
      color: white;
      padding: 10px;
      text-decoration: none; }
      .nav-tabs li a:hover {
        background: #6e6f72; }
  .nav-tabs .active a {
    background: #f7c116; }

.media-preview {
  display: none; }

.gallery #imageList {
  display: block;
  width: 100%; }
  .gallery #imageList thead {
    background: #184885;
    color: white;
    padding: 5px;
    display: block; }
    .gallery #imageList thead a {
      color: white;
      text-decoration: none; }

.cms {
  z-index: 9999;
  padding: 15px 30px;
  background: #646464;
  width: 100%;
  text-align: center;
  position: absolute; }
  .cms .nav {
    display: block;
    list-style-type: none; }
    .cms .nav li {
      display: inline-block; }
      .cms .nav li a {
        padding: 0 10px;
        border-left: 2px solid #eee;
        text-decoration: none;
        color: #eee; }
        .cms .nav li a:hover {
          color: #c8c8c8; }
    .cms .nav li:first-child a {
      border-left: none;
      padding-left: 0; }

div.login {
  padding-left: 50px;
  margin-top: 20px; }
  div.login form fieldset {
    border: none; }
  div.login form input[type="text"],
  div.login form input[type="password"],
  div.login form button {
    padding: 5px 10px;
    border-radius: 4px;
    border: 1px solid #CCC;
    margin-bottom: 10px; }

#editor-xtd-buttons,
#metadata {
  display: none !important; }

#member-profile fieldset {
  display: none;
  border: none;
  padding: 25px; }
  @media (min-width: 992px) {
    #member-profile fieldset {
      padding: 25px 100px; } }
  #member-profile fieldset:first-child {
    display: block; }
  #member-profile fieldset legend {
    font-size: 1.5rem;
    font-family: 'Lato', sans-serif;
    margin-bottom: -10px; }
  #member-profile fieldset .control-group {
    margin-bottom: 10px; }
    #member-profile fieldset .control-group:last-child {
      margin-bottom: 0px; }
  #member-profile fieldset .control-label {
    margin-bottom: 2px; }
  #member-profile fieldset .controls input {
    padding: 5px 10px; }
#member-profile .btn {
  background: #1F784D;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border: none;
  margin-bottom: 10px; }
  #member-profile .btn[type="submit"] {
    margin-left: 25px; }
    @media (min-width: 992px) {
      #member-profile .btn[type="submit"] {
        margin-left: 100px; } }

footer {
  padding: 25px;
  display: flex; }
  @media (min-width: 992px) {
    footer {
      padding: 25px 100px; } }
  footer .custom {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center; }
    @media (min-width: 992px) {
      footer .custom {
        display: grid;
      	grid-template-columns: 1fr 1fr 1fr 1fr;
      }
	}
    footer .custom div p {
		word-break: break-word;
      	grid-column: span 1;
    }
    footer .custom div a {
      grid-column: 1;
    }
    .fhio-wrap {
      display: grid;
      grid-template-columns: 75% 25%;
      grid-template-rows: auto max-content;
      row-gap: 5px;
	}
    .fhio-address {
      grid-column: 2 !important;
      grid-row-start: 1;
      grid-row-end: 3;
      border-left: 2px solid #dbdbdb;
      padding-left: 5px;
    }
    footer .custom img {
      max-width: 100%; }
    footer .custom div {
      margin: 0 auto;
      margin-bottom: 10px;	
	}
      footer .custom div:last-child {
        margin-bottom: 0px; }
      @media (min-width: 992px) {
        footer .custom div {
          margin-bottom: 0px; } }

.sub-footer {
  background: #1F784D;
  padding: 25px; }
  .sub-footer .custom {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: white; }
    @media (min-width: 992px) {
      .sub-footer .custom {
        flex-direction: row; } }
    .sub-footer .custom a {
      color: #E9DDC5;
      text-decoration: none;
      font-weight: 900; }
    .sub-footer .custom .copyright {
      display: flex;
      align-content: center;
      flex-direction: column; }
      @media (min-width: 992px) {
        .sub-footer .custom .copyright {
          flex-direction: row; } }
  @media (min-width: 992px) {
    .sub-footer {
      padding: 25px 100px; } }

/*# sourceMappingURL=style.css.map */
#content .item-page ol {
  margin-left: 20px;
  margin-bottom: 15px;
}
#content .item-page ol li {
  margin-bottom: 5px;
}
#content .item-page ol li:last-child {
  margin-bottom: 0px;
}

#SingleUploadForm input, #SingleUploadForm textarea, #SingleUploadForm select {
  padding: 8px 16px;
  width: 50%;
}

#SingleUploadForm textarea {
	height: 100px;
}

#SingleUploadForm input[type^="file"] {
	padding: 0px;
  	margin-bottom: 10px;
}
#SingleUploadForm .control-group {
  margin-bottom: 10px;
}

.jg-uploader,
#single_imgauthor-lbl {
	display: none;
}

.jg_userpanelview .jg-quick-edit-row .row-fluid .span3 a .img-polaroid {
	width: 100%;
}

[id^="jg-title-row"] td:nth-child(4) {
    width: 28%;
}

[id^="jg-title-row"] td:nth-child(6) {
    width: 11%;
}

#imageList thead th:nth-child(4) {
    width: 28%;
    text-align: left;
}

.pull-left.jg-show-editing-units {
    float: left;
}

@media (min-width: 768px) {
    .slides {
        height: 450px;        
    }
}
@media (min-width: 1200px) {
    .slides {
        height: 550px;
    }
}
@media (min-width: 1500px) {
    .slides {
        height: 650px;
    }
}

[id^="accordeonck"] {
    padding: 0 !important;
    margin: 0 !important;
    background: none !important;
    box-shadow: none !important;
    border: none !important;
    border-radius: none !important;
}

[id^="accordeonck"] li {
    margin: 0;
}

[id^="accordeonck"] li a:hover {
    background: #1F784D !important;
    color: white !important;
}
