@charset "UTF-8";
/* The Coding Designer's Survival Kit
 * A framework for designing websites in the browser.
 *
 * Much love to:
 * Sass, Compass, HTML5 Boilerplate, Modernizr, Formalize, and more
 *
 * Available at http://thecodingdesigner.com
 * twitter: http://twitter.com/canarymason */
/* -------------------------------------------------------------------------------------
 * -------------------------------------------------------------------------------------- */
/* This CSS was authored using Sass & Compass
 * Download the source files here:
 * https://github.com/canarymason/The-Coding-Designers-Survival-Kit
 * Learn more about Sass & Compass at http://compass-style.org/ */
/* normalize.css 2012-03-11T12:53 UTC - http://github.com/necolas/normalize.css */
/* =============================================================================
   HTML5 display definitions
   ========================================================================== */
/*
 * Corrects block display not defined in IE6/7/8/9 & FF3
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
summary {
  display: block;
}

/*
 * Corrects inline-block display not defined in IE6/7/8/9 & FF3
 */
audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}

/*
 * Prevents modern browsers from displaying 'audio' without controls
 * Remove excess height in iOS5 devices
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/*
 * Addresses styling for 'hidden' attribute not present in IE7/8/9, FF3, S4
 * Known issue: no IE6 support
 */
[hidden] {
  display: none;
}

/* =============================================================================
   Base
   ========================================================================== */
/*
 * 1. Corrects text resizing oddly in IE6/7 when body font-size is set using em units
 *    http://clagnut.com/blog/348/#c790
 * 2. Prevents iOS text size adjust after orientation change, without disabling user zoom
 *    www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/
 */
html {
  font-size: 100%;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 2 */
}

/*
 * Addresses font-family inconsistency between 'textarea' and other form elements.
 */
html,
button,
input,
select,
textarea {
  font-family: sans-serif;
}

/*
 * Addresses margins handled incorrectly in IE6/7
 */
body {
  margin: 0;
}

/* =============================================================================
   Links
   ========================================================================== */
/*
 * Addresses outline displayed oddly in Chrome
 */
a:focus {
  outline: thin dotted;
}

/*
 * Improves readability when focused and also mouse hovered in all browsers
 * people.opera.com/patrickl/experiments/keyboard/test
 */
a:hover,
a:active {
  outline: 0;
}

/* =============================================================================
   Typography
   ========================================================================== */
/*
 * Addresses font sizes and margins set differently in IE6/7
 * Addresses font sizes within 'section' and 'article' in FF4+, Chrome, S5
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

h2 {
  font-size: 1.5em;
  margin: 0.83em 0;
}

h3 {
  font-size: 1.17em;
  margin: 1em 0;
}

h4 {
  font-size: 1em;
  margin: 1.33em 0;
}

h5 {
  font-size: 0.83em;
  margin: 1.67em 0;
}

h6 {
  font-size: 0.75em;
  margin: 2.33em 0;
}

/*
 * Addresses styling not present in IE7/8/9, S5, Chrome
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/*
 * Addresses style set to 'bolder' in FF3+, S4/5, Chrome
*/
b,
strong {
  font-weight: bold;
}

blockquote {
  margin: 1em 40px;
}

/*
 * Addresses styling not present in S5, Chrome
 */
dfn {
  font-style: italic;
}

/*
 * Addresses styling not present in IE6/7/8/9
 */
mark {
  background: #ff0;
  color: #000;
}

/*
 * Addresses margins set differently in IE6/7
 */
p,
pre {
  margin: 1em 0;
}

/*
 * Corrects font family set oddly in IE6, S4/5, Chrome
 * en.wikipedia.org/wiki/User:Davidgothberg/Test59
 */
pre,
code,
kbd,
samp {
  font-family: monospace, serif;
  _font-family: 'courier new', monospace;
  font-size: 1em;
}

/*
 * Improves readability of pre-formatted text in all browsers
 */
pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

/*
 * 1. Addresses CSS quotes not supported in IE6/7
 * 2. Addresses quote property not supported in S4
 */
/* 1 */
q {
  quotes: none;
}

/* 2 */
q:before,
q:after {
  content: '';
  content: none;
}

small {
  font-size: 75%;
}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* =============================================================================
   Lists
   ========================================================================== */
/*
 * Addresses margins set differently in IE6/7
 */
dl,
menu,
ol,
ul {
  margin: 1em 0;
}

dd {
  margin: 0 0 0 40px;
}

/*
 * Addresses paddings set differently in IE6/7
 */
menu,
ol,
ul {
  padding: 0 0 0 40px;
}

/*
 * Corrects list images handled incorrectly in IE7
 */
nav ul,
nav ol {
  list-style: none;
  list-style-image: none;
}

/* =============================================================================
   Embedded content
   ========================================================================== */
/*
 * 1. Removes border when inside 'a' element in IE6/7/8/9, FF3
 * 2. Improves image quality when scaled in IE7
 *    code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/
 */
img {
  border: 0;
  /* 1 */
  -ms-interpolation-mode: bicubic;
  /* 2 */
}

/*
 * Corrects overflow displayed oddly in IE9
 */
svg:not(:root) {
  overflow: hidden;
}

/* =============================================================================
   Figures
   ========================================================================== */
/*
 * Addresses margin not present in IE6/7/8/9, S5, O11
 */
figure {
  margin: 0;
}

/* =============================================================================
   Forms
   ========================================================================== */
/*
 * Corrects margin displayed oddly in IE6/7
 */
form {
  margin: 0;
}

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

/*
 * 1. Corrects color not being inherited in IE6/7/8/9
 * 2. Corrects text not wrapping in FF3
 * 3. Corrects alignment displayed oddly in IE6/7
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  white-space: normal;
  /* 2 */
  *margin-left: -7px;
  /* 3 */
}

/*
 * 1. Corrects font size not being inherited in all browsers
 * 2. Addresses margins set differently in IE6/7, FF3+, S5, Chrome
 * 3. Improves appearance and consistency in all browsers
 */
button,
input,
select,
textarea {
  font-size: 100%;
  /* 1 */
  margin: 0;
  /* 2 */
  vertical-align: baseline;
  /* 3 */
  *vertical-align: middle;
  /* 3 */
}

/*
 * Addresses FF3/4 setting line-height on 'input' using !important in the UA stylesheet
 */
button,
input {
  line-height: normal;
  /* 1 */
}

/*
 * 1. Improves usability and consistency of cursor style between image-type 'input' and others
 * 2. Corrects inability to style clickable 'input' types in iOS
 * 3. Removes inner spacing in IE7 without affecting normal text inputs
 *    Known issue: inner spacing remains in IE6
 */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  cursor: pointer;
  /* 1 */
  -webkit-appearance: button;
  /* 2 */
  *overflow: visible;
  /* 3 */
}

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

/*
 * 1. Addresses box sizing set to content-box in IE8/9
 * 2. Removes excess padding in IE8/9
 * 3. Removes excess padding in IE7
      Known issue: excess padding remains in IE6
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
  *height: 13px;
  /* 3 */
  *width: 13px;
  /* 3 */
}

/*
 * 1. Addresses appearance set to searchfield in S5, Chrome
 * 2. Addresses box-sizing set to border-box in S5, 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;
}

/*
 * Removes inner padding and search cancel button in S5, Chrome on OS X
 */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

/*
 * Removes inner padding and border in FF3+
 * www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/*
 * 1. Removes default vertical scrollbar in IE6/7/8/9
 * 2. Improves readability and alignment in all browsers
 */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
}

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

img, input[type=email], input[type=url], input[type=tel], input[type=text], input[type=date], input[type=datetime], input[type=datetime-local], input[type=month], input[type=week], input[type=time], input[type=number], input[type=range], input[type=search], input[type=color], textarea, input:not([type="radio"]), table {
  max-width: 100%;
}

address, cite, q, dfn, i {
  font-style: italic;
}

dfn, b {
  font-weight: bold;
}

/*.weforum.sidebar .hub-curator-welcome .hub-welcome {
  font-family: handsean, cursive;
}*/

pre, code, kbd, tt {
  font-family: Consolas, Menlo, "Courier New", monospace, monospace;
  _font-family: Consolas, Menlo, "Courier New", monospace, monospace;
}

h1, .weforum.main .weforum-layout-list .field-name-title .field-item,
.weforum.main .weforum-layout-list .field-name-title .field-item a, h2, .node-page.view-mode-full .field-name-field-page-title, .stream-display .view-feeds .view-header a,
.stream-display .view-feeds .view-empty a, .stream-display .view-feeds .views-field-field-tibbr-twitter a,
.stream-display .view-feeds .views-field-field-tibbr-facebook a, .page-node-651 #webform-component-hub label, h3, h4, .view-number-of-initatives-in-a-hub .views-field-group-audience,
.view-number-of-initatives-in-a-hub .views-field-group-audience-1, h5, h6 {
  font-family: "HelveticaNeue45Light", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
}

.weforum-layout-list
{
  background: white;    
}

/* Only use the fancy ampersand in <h#> tags */
h1 .amp, h2 .amp, h3 .amp, h4 .amp, h5 .amp, h6 .amp {
  font-size: 1em;
  font-family: "HelveticaNeue45Light", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-style: italic;
}

.hidden, #touch-menu-btn, .touch .pane-hubs-panel-pane-2 {
  display: none !important;
  visibility: hidden;
}

/* import font files using @font-face, if not using a service such as typekit */
/*@font-face {
  font-family: "handsean";
  src: url('../fonts/handsean.woff') format('woff'), url('../fonts/handsean.ttf') format('truetype'), url('../fonts/handsean.otf') format('opentype');
}*/

@font-face {
  font-family: "HelveticaNeue45Light";
  src: url('../fonts/ae1656aa-5f8f-4905-aed0-93e667bd6e4a.eot?iefix');
  src: url('../fonts/ae1656aa-5f8f-4905-aed0-93e667bd6e4a.eot?iefix?#iefix') format('eot'), url('../fonts/530dee22-e3c1-4e9f-bf62-c31d510d9656.woff') format('woff'), url('../fonts/688ab72b-4deb-4e15-a088-89166978d469.ttf') format('truetype'), url('../fonts/7816f72f-f47e-4715-8cd7-960e3723846a.svg#7816f72f-f47e-4715-8cd7-960e3723846a') format('svg');
}

@font-face {
  font-family: "HelveticaNeue46Light";
  src: url('../fonts/a4f9f319-dec9-4afc-8b50-e18cc1b61cb4.eot?iefix');
  src: url('../fonts/a4f9f319-dec9-4afc-8b50-e18cc1b61cb4.eot?iefix?#iefix') format('eot'), url('../fonts/8e9ee02b-f337-4f13-ad6c-969d6d6536c8.woff') format('woff'), url('../fonts/beddbbc6-203e-4f36-8960-3f5ca22af567.ttf') format('truetype'), url('../fonts/af177436-d9e8-44e8-9c9c-ef2d945f20a3.svg#af177436-d9e8-44e8-9c9c-ef2d945f20a3') format('svg');
  font-weight: "normal";
  font-style: "italic";
}

@font-face {
  font-family: "HelveticaNeue55Roman";
  src: url('../fonts/b7693a83-b861-4aa6-85e0-9ecf676bc4d6.eot?iefix');
  src: url('../fonts/b7693a83-b861-4aa6-85e0-9ecf676bc4d6.eot?iefix?#iefix') format('eot'), url('../fonts/bcf54343-d033-41ee-bbd7-2b77df3fe7ba.woff') format('woff'), url('../fonts/b0ffdcf0-26da-47fd-8485-20e4a40d4b7d.ttf') format('truetype'), url('../fonts/da09f1f1-062a-45af-86e1-2bbdb3dd94f9.svg#da09f1f1-062a-45af-86e1-2bbdb3dd94f9') format('svg');
}

@font-face {
  font-family: "HelveticaNeue65Medium";
  src: url('../fonts/07fe0fec-b63f-4963-8ee1-535528b67fdb.eot?iefix');
  src: url('../fonts/07fe0fec-b63f-4963-8ee1-535528b67fdb.eot?iefix?#iefix') format('eot'), url('../fonts/60be5c39-863e-40cb-9434-6ebafb62ab2b.woff') format('woff'), url('../fonts/4c6503c9-859b-4d3b-a1d5-2d42e1222415.ttf') format('truetype'), url('../fonts/36c182c6-ef98-4021-9b0d-d63122c2bbf5.svg#36c182c6-ef98-4021-9b0d-d63122c2bbf5') format('svg');
}

@font-face {
  font-family: "HelveticaNeue66Medium";
  src: url('../fonts/71c74bc5-e7c8-48ad-9b03-43f3e6760e4e.eot?iefix');
  src: url('../fonts/71c74bc5-e7c8-48ad-9b03-43f3e6760e4e.eot?iefix?#iefix') format('eot'), url('../fonts/5f0efe11-b07a-49fc-ab86-7af6152fa368.woff') format('woff'), url('../fonts/fea58e5b-b0a7-43f7-8928-fc0639365852.ttf') format('truetype'), url('../fonts/398e1bb8-f2eb-41d5-b3b6-b9a889b52ee7.svg#398e1bb8-f2eb-41d5-b3b6-b9a889b52ee7') format('svg');
  font-weight: "normal";
  font-style: "italic";
}

@font-face {
  font-family: "HelveticaNeue75Bold";
  src: url('../fonts/c07fef9e-a934-42d7-92ad-69205f2b8a00.eot?iefix');
  src: url('../fonts/c07fef9e-a934-42d7-92ad-69205f2b8a00.eot?iefix?#iefix') format('eot'), url('../fonts/14ff6081-326d-4dae-b778-d7afa66166fc.woff') format('woff'), url('../fonts/8fda1e47-19be-46c7-8d83-8d4fb35572f0.ttf') format('truetype'), url('../fonts/f751c8ae-1057-46d9-8d74-62592e002568.svg#f751c8ae-1057-46d9-8d74-62592e002568') format('svg');
  font-weight: "bold";
  font-style: "normal";
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* Body -------------------------------------------------------------- */
/* Establish baseline rhythm
 * from compass/typography/_vertical_rhythm */
html {
  font-size: 100%;
  line-height: 1.5em;
}

body {
  font-family: "HelveticaNeue45Light", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  color: #555555;
  background: white;
}
body.i18n-ar {
  font-family: "HelveticaNeueArabic45Light", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
}

@media screen and (-webkit-device-pixel-ratio: 1) and (device-width: 1024px) and (max-device-height: 600px) and (orientation: landscape), screen and (-webkit-device-pixel-ratio: 1) and (device-width: 600px) and (max-device-height: 1024px) and (orientation: portrait), screen and (-o-device-pixel-ratio: 1) and (device-width: 1024px) and (max-device-height: 600px) and (orientation: landscape), screen and (-o-device-pixel-ratio: 1) and (device-width: 600px) and (max-device-height: 1024px) and (orientation: portrait), screen and (device-pixel-ratio: 1) and (device-width: 1024px) and (max-device-height: 600px) and (orientation: landscape), screen and (device-pixel-ratio: 1) and (device-width: 600px) and (max-device-height: 1024px) and (orientation: portrait) {
  html {
    font-size: 19.2px;
  }
}
@media screen and (-webkit-device-pixel-ratio: 1.5) and (device-width: 683px) and (orientation: landscape), screen and (-webkit-device-pixel-ratio: 1.5) and (device-width: 400px) and (orientation: portrait), screen and (-o-device-pixel-ratio: 3 / 2) and (device-width: 683px) and (orientation: landscape), screen and (-o-device-pixel-ratio: 3 / 2) and (device-width: 400px) and (orientation: portrait), screen and (device-pixel-ratio: 1.5) and (device-width: 683px) and (orientation: landscape), screen and (device-pixel-ratio: 1.5) and (device-width: 400px) and (orientation: portrait), screen and (device-pixel-ratio: 3 / 2) and (device-width: 683px) and (orientation: landscape), screen and (device-pixel-ratio: 3 / 2) and (device-width: 400px) and (orientation: portrait) {
  html {
    font-size: 12.8px;
  }
}
/* Selected Text -------------------------------------------------------------- */
/* -moz- must be declared separately */
::-moz-selection {
  color: white;
  background: #00529b;
  text-shadow: none;
}

::selection {
  color: white;
  background: #00529b;
  text-shadow: none;
}

/* Links -------------------------------------------------------------- */
a {
  color: #409ed2;
  text-decoration: none;
}
a:visited {
  color: #409ed2;
}
a:hover {
  color: #002b5b;
}
a:active {
  color: #002b5b;
}
p a {
  border-bottom: none;
}

em {
  font-style: italic;
}

strong {
  font-weight: bold;
}

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
  line-height: 1;
}

/* Lists -------------------------------------------------------------- */
dl {
  margin-left: 0;
}

ol {
  list-style: decimal;
}

ul {
  list-style: disc;
}

/* Headings -------------------------------------------------------------- */
h1, .weforum.main .weforum-layout-list .field-name-title .field-item,
.weforum.main .weforum-layout-list .field-name-title .field-item a, h2, .node-page.view-mode-full .field-name-field-page-title, .stream-display .view-feeds .view-header a,
.stream-display .view-feeds .view-empty a, .stream-display .view-feeds .views-field-field-tibbr-twitter a,
.stream-display .view-feeds .views-field-field-tibbr-facebook a, .page-node-651 #webform-component-hub label, h3, h4, .view-number-of-initatives-in-a-hub .views-field-group-audience,
.view-number-of-initatives-in-a-hub .views-field-group-audience-1, h5, h6 {
  font-weight: normal;
  text-rendering: optimizeLegibility;
  margin: 0;
}
h1 a, .weforum.main .weforum-layout-list .field-name-title .field-item a,
.weforum.main .weforum-layout-list .field-name-title .field-item a a, h2 a, .node-page.view-mode-full .field-name-field-page-title a, .stream-display .view-feeds .view-header a a,
.stream-display .view-feeds .view-empty a a, .stream-display .view-feeds .views-field-field-tibbr-twitter a a,
.stream-display .view-feeds .views-field-field-tibbr-facebook a a, .page-node-651 #webform-component-hub label a, h3 a, h4 a, .view-number-of-initatives-in-a-hub .views-field-group-audience a,
.view-number-of-initatives-in-a-hub .views-field-group-audience-1 a, h5 a, h6 a {
  text-transform: none;
}
h1 a, .weforum.main .weforum-layout-list .field-name-title .field-item a,
.weforum.main .weforum-layout-list .field-name-title .field-item a a, h2 a, .node-page.view-mode-full .field-name-field-page-title a, .stream-display .view-feeds .view-header a a,
.stream-display .view-feeds .view-empty a a, .stream-display .view-feeds .views-field-field-tibbr-twitter a a,
.stream-display .view-feeds .views-field-field-tibbr-facebook a a, .page-node-651 #webform-component-hub label a, h3 a, h4 a, .view-number-of-initatives-in-a-hub .views-field-group-audience a,
.view-number-of-initatives-in-a-hub .views-field-group-audience-1 a, h5 a, h6 a {
  text-decoration: none;
  border-bottom: none;
}
h1 a:visited, .weforum.main .weforum-layout-list .field-name-title .field-item a:visited,
.weforum.main .weforum-layout-list .field-name-title .field-item a a:visited, h2 a:visited, .node-page.view-mode-full .field-name-field-page-title a:visited, .stream-display .view-feeds .view-header a a:visited,
.stream-display .view-feeds .view-empty a a:visited, .stream-display .view-feeds .views-field-field-tibbr-twitter a a:visited,
.stream-display .view-feeds .views-field-field-tibbr-facebook a a:visited, .page-node-651 #webform-component-hub label a:visited, h3 a:visited, h4 a:visited, .view-number-of-initatives-in-a-hub .views-field-group-audience a:visited,
.view-number-of-initatives-in-a-hub .views-field-group-audience-1 a:visited, h5 a:visited, h6 a:visited {
  border-bottom: none;
}
h1 a:focus, .weforum.main .weforum-layout-list .field-name-title .field-item a:focus,
.weforum.main .weforum-layout-list .field-name-title .field-item a a:focus, h2 a:focus, .node-page.view-mode-full .field-name-field-page-title a:focus, .stream-display .view-feeds .view-header a a:focus,
.stream-display .view-feeds .view-empty a a:focus, .stream-display .view-feeds .views-field-field-tibbr-twitter a a:focus,
.stream-display .view-feeds .views-field-field-tibbr-facebook a a:focus, .page-node-651 #webform-component-hub label a:focus, h3 a:focus, h4 a:focus, .view-number-of-initatives-in-a-hub .views-field-group-audience a:focus,
.view-number-of-initatives-in-a-hub .views-field-group-audience-1 a:focus, h5 a:focus, h6 a:focus {
  border-bottom: none;
}
h1 a:hover, .weforum.main .weforum-layout-list .field-name-title .field-item a:hover,
.weforum.main .weforum-layout-list .field-name-title .field-item a a:hover, h2 a:hover, .node-page.view-mode-full .field-name-field-page-title a:hover, .stream-display .view-feeds .view-header a a:hover,
.stream-display .view-feeds .view-empty a a:hover, .stream-display .view-feeds .views-field-field-tibbr-twitter a a:hover,
.stream-display .view-feeds .views-field-field-tibbr-facebook a a:hover, .page-node-651 #webform-component-hub label a:hover, h3 a:hover, h4 a:hover, .view-number-of-initatives-in-a-hub .views-field-group-audience a:hover,
.view-number-of-initatives-in-a-hub .views-field-group-audience-1 a:hover, h5 a:hover, h6 a:hover {
  border-bottom: none;
}
h1 a:active, .weforum.main .weforum-layout-list .field-name-title .field-item a:active,
.weforum.main .weforum-layout-list .field-name-title .field-item a a:active, h2 a:active, .node-page.view-mode-full .field-name-field-page-title a:active, .stream-display .view-feeds .view-header a a:active,
.stream-display .view-feeds .view-empty a a:active, .stream-display .view-feeds .views-field-field-tibbr-twitter a a:active,
.stream-display .view-feeds .views-field-field-tibbr-facebook a a:active, .page-node-651 #webform-component-hub label a:active, h3 a:active, h4 a:active, .view-number-of-initatives-in-a-hub .views-field-group-audience a:active,
.view-number-of-initatives-in-a-hub .views-field-group-audience-1 a:active, h5 a:active, h6 a:active {
  border-bottom: none;
}

h1, .weforum.main .weforum-layout-list .field-name-title .field-item,
.weforum.main .weforum-layout-list .field-name-title .field-item a {
  color: black;
  font-family: "HelveticaNeue45Light", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-size: 22px;
  line-height: 24px;
  text-transform: uppercase;
}

h2, .node-page.view-mode-full .field-name-field-page-title, .stream-display .view-feeds .view-header a,
.stream-display .view-feeds .view-empty a, .stream-display .view-feeds .views-field-field-tibbr-twitter a,
.stream-display .view-feeds .views-field-field-tibbr-facebook a, .page-node-651 #webform-component-hub label {
  color: #002b5b;
/*  font-family: handsean, cursive;*/
  font-size: 18px;
  margin-top:18px;
  line-height: 28px;
  /*padding: 16px 0;*/
}

h3 {
  color: #002b5b;
/*  font-family: handsean, cursive; */
  font-size: 16px;
  line-height: 28px;
  padding: 16px 0;
}

h4, .view-number-of-initatives-in-a-hub .views-field-group-audience,
.view-number-of-initatives-in-a-hub .views-field-group-audience-1, h5, h6 {
  color: #002b5b;
/*  font-family: handsean, cursive; */
  font-size: 14px;
  line-height: 24px;
  padding: 16px 0;
}

/* Images -------------------------------------------------------------- */
img {
  vertical-align: bottom;
}
img.left {
  float: left;
  margin: 12px 25px 12px 0;
}
img.right {
  float: right;
  margin: 12px 0 12px 25px;
}

small {
  font-size: 0.8125em;
  line-height: 1.84615em;
}

q {
  quotes: "“" "”";
}
q:before {
  content: open-quote;
}
q:after {
  content: close-quote;
}

abbr, acronym {
  border-bottom: 1px dotted;
  cursor: help;
}

sup, sub {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

mark {
  background: red;
  background-color: rgba(255, 255, 0, 0.5);
  text-shadow: none;
}

.input_tiny {
  width: 50px;
}

.input_small {
  width: 100px;
}

.input_medium {
  width: 150px;
}

.input_large {
  width: 200px;
}

.input_xlarge {
  width: 250px;
}

.input_xxlarge {
  width: 300px;
}

.input_full {
  width: 100%;
}

.input_full_wrap {
  display: block;
  padding-right: 8px;
}

::-moz-focus-inner {
  border: 0;
}

input[type="search"]::-webkit-search-decoration {
  display: none;
}

input,
button,
select,
textarea {
  -moz-background-clip: padding;
  -webkit-background-clip: padding;
  background-clip: padding-box;
  margin: 0;
  vertical-align: middle;
}

button,
input[type="reset"],
input[type="submit"],
input[type="button"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-border-radius: 11px;
  -moz-border-radius: 11px;
  -ms-border-radius: 11px;
  -o-border-radius: 11px;
  border-radius: 11px;
  background: #dddddd url('../images/formalize/button.png') repeat-x;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(100%, #dddddd));
  background-image: -webkit-linear-gradient(#ffffff, #dddddd);
  background-image: -moz-linear-gradient(#ffffff, #dddddd);
  background-image: -o-linear-gradient(#ffffff, #dddddd);
  background-image: -ms-linear-gradient(#ffffff, #dddddd);
  background-image: linear-gradient(#ffffff, #dddddd);
  border: 1px solid;
  border-color: #dddddd #bbbbbb #999999;
  cursor: pointer;
  color: #333333;
  font: 12px/1.2 "Helvetica Neue", Helvetica, Arial, sans-serif;
  outline: 0;
  overflow: visible;
  padding: 3px 10px 4px;
  text-shadow: white 0 1px 1px;
  width: auto;
  *padding-top: 2px;
  *padding-bottom: 0px;
}

button {
  *padding-top: 1px;
  *padding-bottom: 1px;
}

button[disabled],
input[type="reset"][disabled],
input[type="submit"][disabled],
input[type="button"][disabled] {
  color: #888888;
}

textarea,
select,
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="email"],
input[type="month"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="text"],
input[type="time"],
input[type="url"],
input[type="week"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  background-color: white;
  border: 1px solid;
  border-color: #848484 #c1c1c1 #e1e1e1;
  color: black;
  outline: 0;
  padding: 2px 3px;
  font-size: 13px;
  font-family: Arial, sans-serif;
  height: 1.8em;
  margin-left: 5px;
  *padding-top: 2px;
  *padding-bottom: 1px;
  *height: auto;
}

input.placeholder-text,
textarea.placeholder-text {
  color: #888888;
}

::-webkit-input-placeholder {
  color: #888888;
}

textarea[disabled],
select[disabled],
input[type="date"][disabled],
input[type="datetime"][disabled],
input[type="datetime-local"][disabled],
input[type="email"][disabled],
input[type="month"][disabled],
input[type="number"][disabled],
input[type="password"][disabled],
input[type="search"][disabled],
input[type="tel"][disabled],
input[type="text"][disabled],
input[type="time"][disabled],
input[type="url"][disabled],
input[type="week"][disabled] {
  background-color: #eeeeee;
  color: #888888;
}

button:focus,
button:active,
input:focus,
input:active,
select:focus,
select:active,
textarea:focus,
textarea:active {
  -moz-box-shadow: #0066ff 0 0 7px;
  -webkit-box-shadow: #0066ff 0 0 7px;
  box-shadow: #0066ff 0 0 7px;
  z-index: 1;
}

input[type="radio"]:focus,
input[type="radio"]:active,
input[type="checkbox"]:focus,
input[type="checkbox"]:active {
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.is_webkit select {
  background-image: url('../images/formalize/select_arrow.gif');
  background-repeat: no-repeat;
  background-position: right center;
  padding-right: 20px;
}

textarea,
select[multiple] {
  height: auto;
}

select[multiple],
.is_webkit select[multiple] {
  background-image: none;
  padding: 0;
}

textarea {
  min-height: 40px;
  overflow: auto;
  resize: vertical;
  width: 100%;
}

optgroup {
  color: black;
  font-style: normal;
  font-weight: normal;
}

.ie6_button,
* html button {
  background: #dddddd url('../images/formalize/button.png') repeat-x;
  border: 1px solid;
  border-color: #dddddd #bbbbbb #999999;
  cursor: pointer;
  color: #333333;
  font: bold 12px/1.2 Arial, sans-serif;
  padding: 2px 10px 0px;
  overflow: visible;
  width: auto;
}

* html button {
  padding-top: 1px;
  padding-bottom: 1px;
}

.ie6_input,
* html textarea,
* html select {
  background: white;
  border: 1px solid;
  border-color: #848484 #c1c1c1 #e1e1e1;
  color: black;
  padding: 2px 3px 1px;
  font-size: 13px;
  font-family: Arial, sans-serif;
  vertical-align: top;
}

* html select {
  margin-top: 1px;
}

.placeholder_text,
.ie6_input_disabled,
.ie6_button_disabled {
  color: #888888;
}

.ie6_input_disabled {
  background: #eeeeee;
}

/* Forms -------------------------------------------------------------- */
fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

label {
  display: inline;
  font-family: "HelveticaNeue65Medium", "HelveticaNeue55Roman", "HelveticaNeue45Light", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-size: 16px;
}

.field .field-label {
  font-weight: bold;
  color: #555555;
  font-family: "HelveticaNeue45Light", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
/*font-family: "HelveticaNeue65Medium", "HelveticaNeue55Roman", "HelveticaNeue45Light", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;*/
  margin-left: 12px;
}

input[type=email], input[type=url], input[type=tel], input[type=text], input[type=date], input[type=datetime], input[type=datetime-local], input[type=month], input[type=week], input[type=time], input[type=number], input[type=range], input[type=search], input[type=color] {
  border-style: solid;
  border-width: 0.0625em;
  padding: 0.3125em;
  border-width: 1px;
  margin-top: 0px;
  margin-left: 5px;
  border-color: #555555;
}

input[type=search] {
  -webkit-appearance: none;
}
input[type=search]::-webkit-search-decoration {
  display: none;
}

input[type="radio"], input[type="checkbox"] {
  margin-left: 0.25em;
  margin-right: 0.25em;
}

input[type="file"] {
  font-size: 12px;
}

/* Tables -------------------------------------------------------------- */
/* tables still need 'cellspacing="0"' in the markup */
ins {
  text-decoration: none;
  border-bottom: 1px solid #555555;
}

del {
  text-decoration: line-through;
}

/* SINGULARITY -- http://singularity.gs/ */
/* Sprites -------------------------------------------------------------- */
.icons-sprite, .weforum-icon.project:after, .weforum-icon.shaper:after, .weforum-icon.news:after, .weforum-icon.events:after, .weforum-icon.hubs:after, .views-field-field-video .field-content:after, .ie8 #main-menu li.menu-218 a:before, .ie7 #main-menu li.menu-218 a:before, .ie8 #main-menu li.menu-1120 a:before, .ie7 #main-menu li.menu-1120 a:before, .ie8 #main-menu li.menu-1122 a:before, .ie7 #main-menu li.menu-1122 a:before, .ie8 #main-menu li.menu-1119 a:before, .ie7 #main-menu li.menu-1119 a:before, .ie8 #main-menu li.menu-1121 a:before, .ie7 #main-menu li.menu-1121 a:before, #tabs .weforum-local-task.shapers:before, #tabs .weforum-local-task.projects:before, #tabs .weforum-local-task.news:before, .item-list ul.pager .pager-previous a:before, [dir="rtl"] .item-list ul.pager .pager-previous a:before, .item-list ul.pager .pager-previous a:hover:before, [dir="rtl"] .item-list ul.pager .pager-previous a:hover:before, .item-list ul.pager .pager-next a:after, [dir="rtl"] .item-list ul.pager .pager-next a:after, .item-list ul.pager .pager-next a:hover:after, [dir="rtl"] .item-list ul.pager .pager-next a:hover:after, .node-shaper.view-mode-connected_content .group-shaper-wrapper .weforum-icon.shaper:after, .weforum-slideshow-pager .pager-button, .weforum-slideshow-pager .pager-button.active, .weforum-slideshow-pager .pager-button:hover, .weforum-slideshow-pager .item-prev, [dir="rtl"] .weforum-slideshow-pager .item-prev, .weforum-slideshow-pager .item-prev:hover, [dir="rtl"] .weforum-slideshow-pager .item-prev:hover, .weforum-slideshow-pager .item-next, [dir="rtl"] .weforum-slideshow-pager .item-next, .weforum-slideshow-pager .item-next:hover, [dir="rtl"] .weforum-slideshow-pager .item-next:hover, #popup_close.olPopupCloseBox {
  background: url('../images/icons-sbe37f8dcd6.png') no-repeat;
}

/*
* Symbolset
* www.symbolset.com
* Copyright © 2012 Oak Studios LLC
*
* Upload this file to your web server
* and place this within your <head> tags.
* <link href="webfonts/ss-standard.css" rel="stylesheet" />
*/
@font-face {
  font-family: "SSStandard";
  src: url("../fonts/ss-standard.eot");
  src: url("../fonts/ss-standard.eot?#iefix") format("embedded-opentype"), url("../fonts/ss-standard.woff") format("woff"), url("../fonts/ss-standard.ttf") format("truetype"), url("../fonts/ss-standard.svg#SSStandard") format("svg");
  font-weight: normal;
  font-style: normal;
}

.ss-icon, .ss-icon.ss-standard,
[class^="ss-"]:before, [class*=" ss-"]:before,
[class^="ss-"].ss-standard:before, [class*=" ss-"].ss-standard:before,
[class^="ss-"].right:after, [class*=" ss-"].right:after,
[class^="ss-"].ss-standard.right:after, [class*=" ss-"].ss-standard.right:after {
  font-family: "SSStandard";
  font-style: normal;
  font-weight: normal;
  text-decoration: none;
  text-rendering: optimizeLegibility;
  white-space: nowrap;
  -webkit-font-feature-settings: "liga";
  -moz-font-feature-settings: "liga=1";
  -moz-font-feature-settings: "liga";
  -ms-font-feature-settings: "liga" 1;
  -o-font-feature-settings: "liga";
  font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
}

[class^="ss-"].right:before, [class*=" ss-"].ss-standard.right:before {
  display: none;
  content: '';
}

.ss-cursor:before, .ss-cursor.right:after {
  content: '';
}

.ss-crosshair:before, .ss-crosshair.right:after {
  content: '⌖';
}

.ss-search:before, .ss-search.right:after {
  content: '';
}

.ss-zoomin:before, .ss-zoomin.right:after {
  content: '';
}

.ss-zoomout:before, .ss-zoomout.right:after {
  content: '';
}

.ss-view:before, .ss-view.right:after {
  content: '';
}

.ss-attach:before, .ss-attach.right:after {
  content: '';
}

.ss-link:before, .ss-link.right:after {
  content: '';
}

.ss-move:before, .ss-move.right:after {
  content: '';
}

.ss-write:before, .ss-write.right:after {
  content: '✎';
}

.ss-writingdisabled:before, .ss-writingdisabled.right:after {
  content: '';
}

.ss-erase:before, .ss-erase.right:after {
  content: '✐';
}

.ss-compose:before, .ss-compose.right:after {
  content: '';
}

.ss-lock:before, .ss-lock.right:after {
  content: '';
}

.ss-unlock:before, .ss-unlock.right:after {
  content: '';
}

.ss-key:before, .ss-key.right:after {
  content: '';
}

.ss-backspace:before, .ss-backspace.right:after {
  content: '⌫';
}

.ss-ban:before, .ss-ban.right:after {
  content: '';
}

.ss-trash:before, .ss-trash.right:after {
  content: '';
}

.ss-target:before, .ss-target.right:after {
  content: '◎';
}

.ss-tag:before, .ss-tag.right:after {
  content: '';
}

.ss-bookmark:before, .ss-bookmark.right:after {
  content: '';
}

.ss-flag:before, .ss-flag.right:after {
  content: '⚑';
}

.ss-like:before, .ss-like.right:after {
  content: '';
}

.ss-dislike:before, .ss-dislike.right:after {
  content: '';
}

.ss-heart:before, .ss-heart.right:after {
  content: '♥';
}

.ss-halfheart:before, .ss-halfheart.right:after {
  content: '';
}

.ss-star:before, .ss-star.right:after {
  content: '⋆';
}

.ss-halfstar:before, .ss-halfstar.right:after {
  content: '';
}

.ss-sample:before, .ss-sample.right:after {
  content: '';
}

.ss-crop:before, .ss-crop.right:after {
  content: '';
}

.ss-layers:before, .ss-layers.right:after {
  content: '';
}

.ss-phone:before, .ss-phone.right:after {
  content: '';
}

.ss-phonedisabled:before, .ss-phonedisabled.right:after {
  content: '';
}

.ss-rss:before, .ss-rss.right:after {
  content: '';
}

.ss-facetime:before, .ss-facetime.right:after {
  content: '';
}

.ss-reply:before, .ss-reply.right:after {
  content: '↩';
}

.ss-send:before, .ss-send.right:after {
  content: '';
}

.ss-mail:before, .ss-mail.right:after {
  content: '✉';
}

.ss-inbox:before, .ss-inbox.right:after {
  content: '';
}

.ss-chat:before, .ss-chat.right:after {
  content: '';
}

.ss-user:before, .ss-user.right:after {
  content: '';
}

.ss-femaleuser:before, .ss-femaleuser.right:after {
  content: '';
}

.ss-users:before, .ss-users.right:after {
  content: '';
}

.ss-cart:before, .ss-cart.right:after {
  content: '';
}

.ss-creditcard:before, .ss-creditcard.right:after {
  content: '';
}

.ss-dollarsign:before, .ss-dollarsign.right:after {
  content: '';
}

.ss-barchart:before, .ss-barchart.right:after {
  content: '';
}

.ss-piechart:before, .ss-piechart.right:after {
  content: '';
}

.ss-box:before, .ss-box.right:after {
  content: '';
}

.ss-home:before, .ss-home.right:after {
  content: '⌂';
}

.ss-globe:before, .ss-globe.right:after {
  content: '';
}

.ss-navigate:before, .ss-navigate.right:after {
  content: '';
}

.ss-compass:before, .ss-compass.right:after {
  content: '';
}

.ss-signpost:before, .ss-signpost.right:after {
  content: '';
}

.ss-location:before, .ss-location.right:after {
  content: '';
}

.ss-map:before, .ss-map.right:after {
  content: '';
}

.ss-pin:before, .ss-pin.right:after {
  content: '';
}

.ss-database:before, .ss-database.right:after {
  content: '';
}

.ss-hdd:before, .ss-hdd.right:after {
  content: '';
}

.ss-music:before, .ss-music.right:after {
  content: '♫';
}

.ss-mic:before, .ss-mic.right:after {
  content: '';
}

.ss-volume:before, .ss-volume.right:after {
  content: '';
}

.ss-volumelow:before, .ss-volumelow.right:after {
  content: '';
}

.ss-volumehigh:before, .ss-volumehigh.right:after {
  content: '';
}

.ss-airplay:before, .ss-airplay.right:after {
  content: '';
}

.ss-camera:before, .ss-camera.right:after {
  content: '';
}

.ss-picture:before, .ss-picture.right:after {
  content: '';
}

.ss-video:before, .ss-video.right:after {
  content: '';
}

.ss-play:before, .ss-play.right:after {
  content: '▶';
}

.ss-pause:before, .ss-pause.right:after {
  content: '';
}

.ss-stop:before, .ss-stop.right:after {
  content: '■';
}

.ss-record:before, .ss-record.right:after {
  content: '●';
}

.ss-rewind:before, .ss-rewind.right:after {
  content: '⏪';
}

.ss-fastforward:before, .ss-fastforward.right:after {
  content: '⏩';
}

.ss-skipback:before, .ss-skipback.right:after {
  content: '⏮';
}

.ss-skipforward:before, .ss-skipforward.right:after {
  content: '⏭';
}

.ss-eject:before, .ss-eject.right:after {
  content: '⏏';
}

.ss-repeat:before, .ss-repeat.right:after {
  content: '';
}

.ss-replay:before, .ss-replay.right:after {
  content: '↺';
}

.ss-shuffle:before, .ss-shuffle.right:after {
  content: '';
}

.ss-book:before, .ss-book.right:after {
  content: '';
}

.ss-openbook:before, .ss-openbook.right:after {
  content: '';
}

.ss-notebook:before, .ss-notebook.right:after {
  content: '';
}

.ss-grid:before, .ss-grid.right:after {
  content: '';
}

.ss-rows:before, .ss-rows.right:after {
  content: '';
}

.ss-columns:before, .ss-columns.right:after {
  content: '';
}

.ss-thumbnails:before, .ss-thumbnails.right:after {
  content: '';
}

.ss-desktop:before, .ss-desktop.right:after {
  content: '';
}

.ss-laptop:before, .ss-laptop.right:after {
  content: '';
}

.ss-tablet:before, .ss-tablet.right:after {
  content: '';
}

.ss-cell:before, .ss-cell.right:after {
  content: '';
}

.ss-battery:before, .ss-battery.right:after {
  content: '';
}

.ss-batteryhigh:before, .ss-batteryhigh.right:after {
  content: '';
}

.ss-batterymedium:before, .ss-batterymedium.right:after {
  content: '';
}

.ss-batterylow:before, .ss-batterylow.right:after {
  content: '';
}

.ss-batteryempty:before, .ss-batteryempty.right:after {
  content: '';
}

.ss-clouddownload:before, .ss-clouddownload.right:after {
  content: '';
}

.ss-download:before, .ss-download.right:after {
  content: '';
}

.ss-cloudupload:before, .ss-cloudupload.right:after {
  content: '';
}

.ss-upload:before, .ss-upload.right:after {
  content: '';
}

.ss-fork:before, .ss-fork.right:after {
  content: '';
}

.ss-merge:before, .ss-merge.right:after {
  content: '';
}

.ss-refresh:before, .ss-refresh.right:after {
  content: '↻';
}

.ss-sync:before, .ss-sync.right:after {
  content: '';
}

.ss-loading:before, .ss-loading.right:after {
  content: '';
}

.ss-wifi:before, .ss-wifi.right:after {
  content: '';
}

.ss-connection:before, .ss-connection.right:after {
  content: '';
}

.ss-file:before, .ss-file.right:after {
  content: '';
}

.ss-folder:before, .ss-folder.right:after {
  content: '';
}

.ss-quote:before, .ss-quote.right:after {
  content: '“';
}

.ss-text:before, .ss-text.right:after {
  content: '';
}

.ss-font:before, .ss-font.right:after {
  content: '';
}

.ss-print:before, .ss-print.right:after {
  content: '⎙';
}

.ss-fax:before, .ss-fax.right:after {
  content: '';
}

.ss-list:before, .ss-list.right:after {
  content: '';
}

.ss-layout:before, .ss-layout.right:after {
  content: '';
}

.ss-action:before, .ss-action.right:after {
  content: '';
}

.ss-redirect:before, .ss-redirect.right:after {
  content: '↪';
}

.ss-expand:before, .ss-expand.right:after {
  content: '⤢';
}

.ss-contract:before, .ss-contract.right:after {
  content: '';
}

.ss-help:before, .ss-help.right:after {
  content: '❓';
}

.ss-info:before, .ss-info.right:after {
  content: 'ℹ';
}

.ss-alert:before, .ss-alert.right:after {
  content: '⚠';
}

.ss-caution:before, .ss-caution.right:after {
  content: '⛔';
}

.ss-logout:before, .ss-logout.right:after {
  content: '';
}

.ss-plus:before, .ss-plus.right:after {
  content: '+';
}

.ss-hyphen:before, .ss-hyphen.right:after {
  content: '-';
}

.ss-check:before, .ss-check.right:after {
  content: '✓';
}

.ss-delete:before, .ss-delete.right:after {
  content: '␡';
}

.ss-settings:before, .ss-settings.right:after {
  content: '⚙';
}

.ss-dashboard:before, .ss-dashboard.right:after {
  content: '';
}

.ss-notifications:before, .ss-notifications.right:after {
  content: '';
}

.ss-notificationsdisabled:before, .ss-notificationsdisabled.right:after {
  content: '';
}

.ss-clock:before, .ss-clock.right:after {
  content: '⏲';
}

.ss-stopwatch:before, .ss-stopwatch.right:after {
  content: '⏱';
}

.ss-calendar:before, .ss-calendar.right:after {
  content: '';
}

.ss-calendaradd:before, .ss-calendaradd.right:after {
  content: '';
}

.ss-calendarremove:before, .ss-calendarremove.right:after {
  content: '';
}

.ss-calendarcheck:before, .ss-calendarcheck.right:after {
  content: '';
}

.ss-calendardelete:before, .ss-calendardelete.right:after {
  content: '';
}

.ss-briefcase:before, .ss-briefcase.right:after {
  content: '';
}

.ss-cloud:before, .ss-cloud.right:after {
  content: '☁';
}

.ss-droplet:before, .ss-droplet.right:after {
  content: '';
}

.ss-navigateup:before, .ss-navigateup.right:after {
  content: '';
}

.ss-navigateright:before, .ss-navigateright.right:after {
  content: '▻';
}

.ss-navigatedown:before, .ss-navigatedown.right:after {
  content: '';
}

.ss-navigateleft:before, .ss-navigateleft.right:after {
  content: '◅';
}

.ss-up:before, .ss-up.right:after {
  content: '⬆';
}

.ss-upright:before, .ss-upright.right:after {
  content: '⬈';
}

.ss-right:before, .ss-right.right:after {
  content: '➡';
}

.ss-downright:before, .ss-downright.right:after {
  content: '⬊';
}

.ss-down:before, .ss-down.right:after {
  content: '⬇';
}

.ss-downleft:before, .ss-downleft.right:after {
  content: '⬋';
}

.ss-left:before, .ss-left.right:after {
  content: '⬅';
}

.ss-upleft:before, .ss-upleft.right:after {
  content: '⬉';
}

.ss-directup:before, .ss-directup.right:after {
  content: '▴';
}

.ss-directright:before, .ss-directright.right:after {
  content: '▹';
}

.ss-dropdown:before, .ss-dropdown.right:after {
  content: '▾';
}

.ss-directleft:before, .ss-directleft.right:after {
  content: '◃';
}

.ss-retweet:before, .ss-retweet.right:after {
  content: '';
}

#block-menu-menu-utility-menu ul.menu li a:hover, #block-menu-menu-utility-menu ul.menu li a:active, .weforum-layout .weforum.top .inside div.panel-pane:first-of-type .pane-content a:hover, #tabs ul.primary li.active a, #tabs ul.primary a:hover, .node-type-project.global-hub ul.tabs.primary li:active a,
.node-type-news.global-hub ul.tabs.primary li:active a,
.node-type-page.global-hub ul.tabs.primary li:active a,
.page-node-651.global-hub ul.tabs.primary li:active a,
ul.tabs.secondary li:active a, .node-type-project.global-hub ul.tabs.primary li a:hover,
.node-type-news.global-hub ul.tabs.primary li a:hover,
.node-type-page.global-hub ul.tabs.primary li a:hover,
.page-node-651.global-hub ul.tabs.primary li a:hover,
ul.tabs.secondary li a:hover, .item-list ul.pager li a:hover, .weforum.main .weforum-layout-list .field-name-title .field-item:hover,
.weforum.main .weforum-layout-list .field-name-title .field-item a:hover, .weforum.main .weforum-layout-list .field-name-group-audience a:hover, .pane-node-content .field-name-field-subject-tags a:hover, .weforum-media-links a:hover, .pane-weforum-search-glossary .weforum-glossary-links a:hover, .node-shaper.view-mode-connected_content .group-shaper-wrapper a:hover, .node-shaper.view-mode-search_result .field-name-node-link a, .node-shaper.view-mode-full .weforum-display.right fieldset .fieldset-wrapper a:hover, .node-project.view-mode-connected_content .field-name-title a:hover, .node-news.view-mode-connected_content .field-name-title a:hover, .pane-facetapi .facetapi-limit-link:hover, .view-mode-connected_content .field-name-group-audience a:hover, .stream-display .view-feeds .view-header a:hover,
.stream-display .view-feeds .view-empty a:hover, .stream-display .view-feeds .views-field-field-link a:hover, .stream-display .view-feeds .views-field-field-tibbr-twitter a:hover,
.stream-display .view-feeds .views-field-field-tibbr-facebook a:hover, #popup_contentDiv .openlayers-tooltip-name a:hover {
  color: #409ed2;
}

ul.large-bullets li:before, #block-menu-menu-utility-menu ul.menu li.first:after, #block-menu-menu-utility-menu ul.menu li.last:before, .weforum.sidebar .hub-curator-welcome .hub-title, .node-hub.view-mode-search_result .weforum-listing.middle .field-name-title a:before, .node-hub.view-mode-search_result .weforum-listing.middle .weforum-hub-link, #popup_contentDiv .openlayers-tooltip-name a:before {
  color: #00529b;
}

.front h1#page-title span.first-word, .weforum-media-links a, .weforum.sidebar .hub-curator-welcome .hub-welcome, .node-hub.view-mode-search_result .weforum-listing.middle .weforum-shaper-count .placeholder, .node-shaper.view-mode-full .weforum-display.right .field-name-group-audience a:hover, .view-number-of-initatives-in-a-hub .views-field-group-audience a,
.view-number-of-initatives-in-a-hub .views-field-group-audience-1 a {
  color: #002b5b;
}

#block-menu-menu-utility-menu ul.menu li a, .weforum-layout .weforum.top .inside div.panel-pane:first-of-type .pane-content a, #tabs ul.primary a, .node-type-project.global-hub ul.tabs.primary li a,
.node-type-news.global-hub ul.tabs.primary li a,
.node-type-page.global-hub ul.tabs.primary li a,
.page-node-651.global-hub ul.tabs.primary li a,
ul.tabs.secondary li a, .pane-weforum-search-glossary .weforum-glossary-links a, .pane-weforum-hub-search h2.pane-title .title-choose-hub, .pane-weforum-hub-search .pane-content, .ui-autocomplete.ui-menu .ui-menu-item a:hover, .stream-display .view-feeds .view-header a,
.stream-display .view-feeds .view-empty a, .stream-display .view-feeds .views-field-field-tibbr-twitter a,
.stream-display .view-feeds .views-field-field-tibbr-facebook a {
  color: white;
}

.field-label, .weforum.main .weforum-layout-list .field-name-group-audience a, .weforum.main .weforum-layout-list .field-name-field-event,
.weforum.main .weforum-layout-list .field-name-post-date, .weforum.main .weforum-layout-list .field-name-field-date .field-items, .pane-node-content .field-name-group-audience a, .pane-node-content .field-name-field-date,
.pane-node-content .field-name-post-date, .pane-node-content .field-name-field-subject-tags .field-label, .node-hub.view-mode-search_result .weforum-listing.middle .field-name-field-region, .node-hub.view-mode-search_result .weforum-listing.middle .weforum-shaper-count, .node-shaper.view-mode-connected_content .group-shaper-wrapper a, .node-shaper.view-mode-search_result, .node-shaper.view-mode-search_result .field-name-field-tibbr-title .field-items,
.node-shaper.view-mode-search_result .field-name-field-tibbr-organization .field-items, .node-shaper.view-mode-search_result fieldset legend, .node-shaper.view-mode-full .weforum-display.right .field-label, .node-shaper.view-mode-full .weforum-display.right .field-items, .node-shaper.view-mode-full .weforum-display.right fieldset legend, .node-shaper.view-mode-full .about-me-label, .pane-node-content .node-project .field-name-field-address .field-item, .node-project.view-mode-connected_content .field-name-title a, .node-project.view-mode-connected_content .field-name-field-date, .node-news.view-mode-connected_content .field-name-title a, .node-news.view-mode-connected_content .field-name-field-date, .view-mode-connected_content .field-name-group-audience a, .view-mode-connected_content .field-name-post-date, .node-page.view-mode-connected_content .field-name-field-page-title,
.node-page.view-mode-connected_content .field-name-custom-page-title,
.node-page.view-mode-connected_content .field-name-post-date, .node-page.view-mode-connected_content .field-name-custom-page-title a, #popup a,
#popup a:visited, #popup_contentDiv .views-field-field-hub-curator .views-label,
#popup_contentDiv .views-field-weforum-hub-shapers .views-label, #popup_contentDiv .views-field-weforum-hub-shapers .field-content {
  color: black;
}

#block-lang-dropdown-language #lang-dropdown-form select, .pane-weforum-hub-search h2.pane-title .title-label {
  color: #dddddd;
}

#touch-menu-btn, .item-list ul.pager li a, .pane-node-content .field-name-field-subject-tags a, .node-shaper.view-mode-search_result fieldset .fieldset-wrapper .field-item, .node-shaper.view-mode-search_result fieldset .fieldset-wrapper .field-item a, .node-shaper.view-mode-full .weforum-display.right fieldset .fieldset-wrapper a, .node-shaper.view-mode-full .weforum-display.right fieldset .field-name-field-tibbr-email .field-item, .ui-autocomplete.ui-menu .ui-menu-item a, .pane-facetapi ul.facetapi-facetapi-checkbox-links li a, .pane-facetapi .facetapi-limit-link, .stream-display .view-feeds .views-field-field-link a,
.stream-display .view-feeds .views-field-created, .stream-display .view-feeds .views-field-field-link:after {
  color: #555555;
}

#utility-bar, .weforum-layout .weforum.top .inside div.panel-pane:first-of-type, .node-type-project.global-hub ul.tabs.primary,
.node-type-news.global-hub ul.tabs.primary,
.node-type-page.global-hub ul.tabs.primary,
.page-node-651.global-hub ul.tabs.primary,
ul.tabs.secondary, .pane-weforum-search-glossary {
  background-color: #00529b;
}

#utility, .weforum-layout .weforum.top .inside div.panel-pane:first-of-type .pane-content, .node-type-project.global-hub ul.tabs.primary li:hover,
.node-type-news.global-hub ul.tabs.primary li:hover,
.node-type-page.global-hub ul.tabs.primary li:hover,
.page-node-651.global-hub ul.tabs.primary li:hover,
ul.tabs.secondary li:hover, .pane-weforum-search-glossary .weforum-glossary-links, .pane-weforum-hub-search .pane-content {
  background-color: #002b5b;
}

#main-menu a, .node-page.view-mode-full, .view-mode-connected_content, #popup {
  background-color: white;
}

[role=banner], .weforum-slideshow-item {
  position: relative;
}

#touch-menu, .weforum-slideshow-item .slider-wrapper, .weforum-slideshow-item .bottom-wrapper {
  position: absolute;
}

.weforum-icon.project:after, .weforum-icon.news:after, .weforum-icon.events:after, #utility-bar-search, [dir="rtl"] #block-menu-menu-utility-menu, #block-lang-dropdown-language, #block-weforum-social-weforum-social-links,
#block-weforum-social-weforum-social-links-footer, [dir="rtl"] #header, [dir="rtl"] #logo, [dir="rtl"] #main-menu a, [dir="rtl"] #footer img, [dir="rtl"] #footer .copyright, [dir="rtl"] .weforum.main .weforum-layout-list .field-name-field-event, [dir="rtl"]
.weforum.main .weforum-layout-list .field-name-post-date, [dir="rtl"] .node-hub.view-mode-search_result .weforum-listing.middle .weforum-shaper-count, [dir="rtl"] .node-shaper.view-mode-connected_content .field-name-field-shaper-profile-image, .node-shaper.view-mode-connected_content .group-shaper-wrapper .weforum-icon.shaper:after, .node-shaper.view-mode-search_result .weforum-icon.shaper, [dir="rtl"] .node-shaper.view-mode-search_result fieldset legend, [dir="rtl"] .node-shaper.view-mode-search_result fieldset .fieldset-wrapper, .node-shaper.view-mode-full .weforum-display.right .weforum-icon.shaper, [dir="rtl"] .node-shaper.view-mode-full .weforum-display.right fieldset legend, .node-shaper.view-mode-full .field-name-field-video, [dir="rtl"] .node-shaper.view-mode-full .about-me-label, .view-number-of-initatives-in-a-hub .views-field-group-audience, .pane-node-content .node-news .weforum-display.right, .pane-node-content .node-news .service-links, #weforum-contact-hub {
  float: right;
}

[dir="rtl"] .weforum-icon.project:after, [dir="rtl"] .weforum-icon.shaper:after, [dir="rtl"] .weforum-icon.news:after, [dir="rtl"] .weforum-icon.events:after, [dir="rtl"] .weforum-icon.hubs:after, [dir="rtl"] #utility-bar-search, #block-menu-menu-utility-menu, [dir="rtl"] #block-lang-dropdown-language, [dir="rtl"] #block-weforum-social-weforum-social-links, [dir="rtl"]
#block-weforum-social-weforum-social-links-footer, #header, #logo, #main-menu a, #footer img, #footer .copyright, .weforum.main .weforum-layout-list .field-name-field-event,
.weforum.main .weforum-layout-list .field-name-post-date, .node-hub.view-mode-search_result .weforum-listing.middle .weforum-shaper-count, .node-shaper.view-mode-connected_content .field-name-field-shaper-profile-image, [dir="rtl"] .node-shaper.view-mode-connected_content .group-shaper-wrapper .weforum-icon.shaper, .node-shaper.view-mode-search_result fieldset legend, .node-shaper.view-mode-search_result fieldset .fieldset-wrapper, [dir="rtl"] .node-shaper.view-mode-full .weforum-display.right .weforum-icon.shaper, .node-shaper.view-mode-full .weforum-display.right fieldset legend, .node-shaper.view-mode-full .about-me-label, .pane-node-content .node-news .weforum-display.left {
  float: left;
}

.node-shaper.view-mode-search_result .field-name-post-date {
  float: none;
}

.weforum.main .weforum-layout-list .field-name-body .field-item, .pane-node-content .service-links, .pane-node-content .field-name-body, .pane-node-content .field-name-field-subject-tags, .node-page.view-mode-full .border-wrapper ul,
.node-page.view-mode-full .border-wrapper h2,
.node-page.view-mode-full .border-wrapper h3, .node-page.view-mode-full .field-name-body p, .node-shaper.view-mode-connected_content .group-shaper-wrapper, .node-shaper.view-mode-search_result .field-name-title, .node-shaper.view-mode-search_result .field-name-field-tibbr-title,
.node-shaper.view-mode-search_result .field-name-field-tibbr-organization, .node-shaper.view-mode-full .field-name-field-tibbr-about-me, .pane-node-content .node-project .field-name-title, .pane-node-content .node-project .weforum-icon.project, .node-news.view-mode-connected_content .field-name-title, .view-mode-connected_content .field-name-group-audience, .stream-display .view-feeds  {
  padding: 0 10px;
}

.views-row
{
  /*padding: 10px;*/
}

h1#page-title, .weforum.main .weforum-layout-list .field-name-title, .weforum.main .weforum-layout-list .field-name-group-audience, .weforum.main .weforum-layout-list .field-name-field-event,
.weforum.main .weforum-layout-list .field-name-post-date, .weforum.main .weforum-layout-list .field-name-field-date, .pane-node-content .field-name-group-audience, .pane-node-content .field-name-field-date,
.pane-node-content .field-name-post-date, .node-page.view-mode-full .field-name-field-page-title, [dir="rtl"] .node-shaper.view-mode-connected_content .field-name-field-shaper-profile-image, .node-shaper.view-mode-search_result .field-name-group-audience, .node-shaper.view-mode-search_result .field-name-field-joined, .node-shaper.view-mode-search_result fieldset, .node-shaper.view-mode-full .weforum-display.right .field-name-title, [dir="rtl"] .node-shaper.view-mode-full .weforum-display.right .weforum-icon.shaper, .node-shaper.view-mode-full .weforum-display.right .field-name-field-joined, .node-shaper.view-mode-full .weforum-display.right .field-name-field-tibbr-title,
.node-shaper.view-mode-full .weforum-display.right .field-name-field-tibbr-organization, .node-shaper.view-mode-full .weforum-display.right fieldset, .node-shaper.view-mode-full .field-name-field-video, .node-shaper.view-mode-full .about-me-label, .pane-node-content .node-project .field-name-field-address, .node-project.weforum-layout-list .field-name-post-date, .node-project.view-mode-connected_content .field-name-field-date, .pane-node-content .node-news .field-name-title, .node-news.view-mode-connected_content .field-name-field-date, .ui-autocomplete.ui-menu .ui-menu-item a, .view-mode-connected_content .field-name-group-audience, .view-mode-connected_content .field-name-post-date, .node-page.view-mode-connected_content .field-name-field-page-title,
.node-page.view-mode-connected_content .field-name-custom-page-title,
.node-page.view-mode-connected_content .field-name-post-date, .stream-display .view-feeds .view-header,
.stream-display .view-feeds .view-empty, .page-node-651 .webform-client-form, .page-node-651 .webform-client-form input[type="text"],
.page-node-651 .webform-client-form input[type="email"],
.page-node-651 .webform-client-form select, #popup_contentDiv .openlayers-tooltip-name a {
  padding-left: 10px;
}

[dir="rtl"] .weforum.main .weforum-layout-list .field-name-field-event, [dir="rtl"]
.weforum.main .weforum-layout-list .field-name-post-date, .weforum.main .weforum-layout-list .field-name-post-date .label-inline, .node-shaper.view-mode-connected_content .field-name-field-shaper-profile-image, .node-shaper.view-mode-search_result .field-name-node-link a, [dir="rtl"] .node-shaper.view-mode-search_result .field-name-group-audience .field-label, [dir="rtl"]
.node-shaper.view-mode-search_result .field-name-field-joined .field-label, [dir="rtl"] .node-shaper.view-mode-search_result fieldset legend, [dir="rtl"] .node-shaper.view-mode-search_result fieldset .fieldset-wrapper, [dir="rtl"] .node-shaper.view-mode-full .weforum-display.right .field, .node-shaper.view-mode-full .weforum-display.right .weforum-icon.shaper, [dir="rtl"] .node-shaper.view-mode-full .about-me-label, .pane-node-content .node-news .weforum-icon.news, [dir="rtl"] .stream-display .view-feeds .view-header, [dir="rtl"]
.stream-display .view-feeds .view-empty {
  padding-right: 10px;
}

.weforum-listing.right, .pane-node-content .field-name-field-subject-tags, .node-hub.view-mode-search_result .weforum-listing.middle h2, .node-shaper.view-mode-full .weforum-display.right .field-name-title, .node-shaper.view-mode-full .weforum-display.right .group_shaper_wrapper, .pane-node-content .node-project .field-name-title, .pane-node-content .node-project .group_project_wrapper, .pane-node-content .node-news .field-name-title, .pane-node-content .node-news .field-name-group-audience, .pane-node-content .node-news .field-name-post-date, .weforum-slideshow-pager {
  padding-top: 6px;
}
.weforum-listing.right {
    padding-left:5px;
    padding-right:5px;
}

#block-lang-dropdown-language #lang-dropdown-form select, .weforum.main .weforum-layout-list .field-name-body .field-item, .pane-node-content .field-name-field-subject-tags, .node-hub.view-mode-search_result .weforum-listing.middle .field-name-field-region, .node-shaper.view-mode-search_result .field-name-node-link a, .node-shaper.view-mode-full .weforum-display.right .field-name-title, .node-shaper.view-mode-full .weforum-display.right .group_shaper_wrapper, .node-shaper.view-mode-full .weforum-display.right fieldset, .pane-node-content .node-project .field-name-title, .pane-node-content .node-project .group_project_wrapper, .pane-node-content .node-news .field-name-title, .pane-node-content .node-news .field-name-field-date, .pane-node-content .node-news .field-name-post-date {
  padding-bottom: 6px;
}

.node-shaper.view-mode-search_result .field-name-node-link, .node-shaper.view-mode-full .weforum-display.right .group_shaper_wrapper, .pane-node-content .node-project .field-name-field-address {
  margin-bottom: 6px;
}

.pane-node-content .node-project .field-name-field-address {
  margin-top: 6px;
}

#block-menu-menu-utility-menu ul.menu li, #block-weforum-social-weforum-social-links .social-links,
#block-weforum-social-weforum-social-links-footer .social-links, #main-menu a, #footer .copyright, .weforum.main .weforum-layout-list .field-name-field-date, .node-shaper.view-mode-full .about-me-label, .view-number-of-initatives-in-a-hub .views-field-group-audience-1, .weforum-slideshow-pager span {
  display: inline-block;
}

.label-inline, #block-menu-menu-utility-menu ul.menu li a, .weforum.main .weforum-layout-list .field-name-field-date .field-items, .pane-node-content .field-name-field-subject-tags .field-label, .node-project.view-mode-connected_content .field-name-field-date {
  display: inline;
}

#main-menu, .node-type-project.global-hub ul.tabs.primary li,
.node-type-news.global-hub ul.tabs.primary li,
.node-type-page.global-hub ul.tabs.primary li,
.page-node-651.global-hub ul.tabs.primary li,
ul.tabs.secondary li, .node-shaper.view-mode-search_result fieldset .fieldset-wrapper {
  display: block;
}

.mission-statement, #main-menu a, #tabs ul.primary a, .weforum.main .weforum-layout-list .field-name-field-event,
.weforum.main .weforum-layout-list .field-name-post-date, .weforum.main .weforum-layout-list .field-name-field-date .field-items, .pane-node-content .field-name-field-date,
.pane-node-content .field-name-post-date, .weforum.sidebar .hub-curator-welcome .hub-title, .weforum.sidebar .hub-curator-welcome p, .node-hub.view-mode-search_result .weforum-listing.middle .weforum-hub-link, .node-shaper.view-mode-connected_content .group-shaper-wrapper .field-name-title .field-items a, .node-shaper.view-mode-search_result .field-name-node-link a, .pane-node-content .node-project .field-name-field-date .label-inline, .node-project.view-mode-connected_content .field-name-title a, .node-project.view-mode-connected_content .field-name-field-date, .node-news.view-mode-connected_content .field-name-title a, .node-news.view-mode-connected_content .field-name-field-date .field-items, .view-mode-connected_content .field-name-post-date, .node-page.view-mode-connected_content .field-name-field-page-title,
.node-page.view-mode-connected_content .field-name-custom-page-title,
.node-page.view-mode-connected_content .field-name-post-date, #popup_contentDiv .views-field-field-hub-curator .field-content a,
#popup_contentDiv .views-field-weforum-hub-shapers .field-content a {
  text-transform: uppercase;
}

.node-hub.view-mode-search_result .weforum-listing.middle .field-name-title a, .pane-node-content .node-news .field-name-field-date, .pane-node-content .node-news .field-name-field-date .field-label, .pane-weforum-hub-search h2.pane-title .title-choose-hub {
  font-size: 18px;
}

.weforum.main .weforum-layout-list .field-name-title .field-item,
.weforum.main .weforum-layout-list .field-name-title .field-item a, .node-shaper.view-mode-connected_content .group-shaper-wrapper .field-name-title .field-items a, .node-project.view-mode-connected_content .field-name-title a, .node-news.view-mode-connected_content .field-name-title a {
  font-size: 16px;
}

#block-menu-menu-utility-menu ul.menu li a, .mission-umbrella, .weforum-layout .weforum.top .inside div.panel-pane:first-of-type .pane-content a, .node-type-project.global-hub ul.tabs.primary li a,
.node-type-news.global-hub ul.tabs.primary li a,
.node-type-page.global-hub ul.tabs.primary li a,
.page-node-651.global-hub ul.tabs.primary li a,
ul.tabs.secondary li a, #footer .copyright, #block-weforum-social-weforum-social-links-footer .follow, .weforum.main .weforum-layout-list .field-name-field-date, .pane-node-content .field-name-field-date,
.pane-node-content .field-name-group-audience,
.pane-node-content .field-name-post-date, .pane-node-content .field-name-field-subject-tags, .weforum-media-links a, .pane-weforum-search-glossary .weforum-glossary-links a, .node-hub.view-mode-search_result .weforum-listing.middle .field-name-field-region, .node-hub.view-mode-search_result .weforum-listing.middle .weforum-shaper-count, .node-hub.view-mode-search_result .weforum-listing.middle .weforum-hub-link, .node-shaper.view-mode-connected_content .group-shaper-wrapper .field-name-group-audience a, .node-shaper.view-mode-search_result .field-name-field-tibbr-title .field-items,
.node-shaper.view-mode-search_result .field-name-field-tibbr-organization .field-items, .node-shaper.view-mode-search_result fieldset legend, .node-shaper.view-mode-search_result fieldset .fieldset-wrapper .field-item, .node-shaper.view-mode-search_result fieldset .fieldset-wrapper .field-item a, .node-shaper.view-mode-full .weforum-display.right .field-name-field-joined, .node-shaper.view-mode-full .weforum-display.right .field-name-field-tibbr-title .field-item,
.node-shaper.view-mode-full .weforum-display.right .field-name-field-tibbr-organization .field-item, .node-shaper.view-mode-full .weforum-display.right fieldset legend, .node-shaper.view-mode-full .weforum-display.right fieldset .fieldset-wrapper .field-item a, .node-shaper.view-mode-full .weforum-display.right fieldset .field-name-field-tibbr-email .field-item, .pane-node-content .node-project .field-name-field-address .field-item, .node-project.view-mode-connected_content .field-name-field-date, .node-news.view-mode-connected_content .field-name-post-date, .node-news.view-mode-connected_content .field-name-field-date, .pane-weforum-hub-search h2.pane-title, .pane-facetapi ul.facetapi-facetapi-checkbox-links li, .pane-facetapi .facetapi-limit-link, .view-mode-connected_content .field-name-group-audience a, .node-page.view-mode-connected_content .field-name-post-date, .stream-display .view-feeds .views-field-body p, #popup a,
#popup a:visited, #popup_contentDiv .views-field-field-hub-curator .views-label,
#popup_contentDiv .views-field-weforum-hub-shapers .views-label, #popup_contentDiv .views-field-weforum-hub-shapers .field-content {
  font-size: 14px;
}

#block-lang-dropdown-language #lang-dropdown-form select, .node-shaper.view-mode-search_result .field-name-node-link a, .pane-weforum-hub-search h2.pane-title .title-label, .pane-weforum-hub-search .pane-content, .ui-autocomplete.ui-menu .ui-menu-item a, .pane-facetapi h2, .stream-display .view-feeds .views-field-field-link a,
.stream-display .view-feeds .views-field-created, .stream-display .view-feeds .views-field-field-link:after {
  font-size: 12px;
}

.item-list ul.pager .pager-current, .weforum.sidebar .hub-curator-welcome .hub-title, .weforum.sidebar .hub-curator-welcome p, .ui-autocomplete.ui-menu .ui-menu-item a {
  font-family: "HelveticaNeue45Light", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
}
.i18n-ar .item-list ul.pager .pager-current, .item-list ul.pager .i18n-ar .pager-current, .i18n-ar .weforum.sidebar .hub-curator-welcome .hub-title, .weforum.sidebar .hub-curator-welcome .i18n-ar .hub-title, .i18n-ar .weforum.sidebar .hub-curator-welcome p, .weforum.sidebar .hub-curator-welcome .i18n-ar p, .i18n-ar .ui-autocomplete.ui-menu .ui-menu-item a, .ui-autocomplete.ui-menu .ui-menu-item .i18n-ar a {
  font-family: "HelveticaNeueArabic45Light", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
}

#block-menu-menu-utility-menu ul.menu li a, .mission-umbrella, #main-menu a, .weforum-layout .weforum.top .inside div.panel-pane:first-of-type .pane-content a, #tabs ul.primary a, .node-type-project.global-hub ul.tabs.primary li a,
.node-type-news.global-hub ul.tabs.primary li a,
.node-type-page.global-hub ul.tabs.primary li a,
.page-node-651.global-hub ul.tabs.primary li a,
ul.tabs.secondary li a, #footer .copyright, #block-weforum-social-weforum-social-links-footer .follow, .item-list ul.pager, .pane-node-content .field-name-field-date,
.pane-node-content .field-name-post-date, .weforum-media-links a, .pane-weforum-search-glossary .weforum-glossary-links a, .node-hub.view-mode-search_result .weforum-listing.middle .field-name-field-region, .node-hub.view-mode-search_result .weforum-listing.middle .weforum-hub-link, .node-shaper.view-mode-search_result .field-name-field-joined .field-items, .node-shaper.view-mode-search_result .field-name-field-tibbr-title .field-items,
.node-shaper.view-mode-search_result .field-name-field-tibbr-organization .field-items, .pane-node-content .node-project .field-name-field-address .field-item, .pane-facetapi ul.facetapi-facetapi-checkbox-links li, .view-mode-connected_content .field-name-post-date, .node-page.view-mode-connected_content .field-name-field-page-title,
.node-page.view-mode-connected_content .field-name-custom-page-title,
.node-page.view-mode-connected_content .field-name-post-date, .shaper-hub a {
  font-family: "HelveticaNeue55Roman", "HelveticaNeue45Light", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
}
.i18n-ar #block-menu-menu-utility-menu ul.menu li a, #block-menu-menu-utility-menu ul.menu li .i18n-ar a, .i18n-ar .mission-umbrella, .i18n-ar #main-menu a, #main-menu .i18n-ar a, .i18n-ar .weforum-layout .weforum.top .inside div.panel-pane:first-of-type .pane-content a, .weforum-layout .weforum.top .inside div.panel-pane:first-of-type .pane-content .i18n-ar a, .i18n-ar #tabs ul.primary a, #tabs ul.primary .i18n-ar a, .i18n-ar .node-type-project.global-hub ul.tabs.primary li a, .node-type-project.global-hub ul.tabs.primary li .i18n-ar a,
.i18n-ar .node-type-news.global-hub ul.tabs.primary li a,
.node-type-news.global-hub ul.tabs.primary li .i18n-ar a,
.i18n-ar .node-type-page.global-hub ul.tabs.primary li a,
.node-type-page.global-hub ul.tabs.primary li .i18n-ar a,
.i18n-ar .page-node-651.global-hub ul.tabs.primary li a,
.page-node-651.global-hub ul.tabs.primary li .i18n-ar a,
.i18n-ar ul.tabs.secondary li a,
ul.tabs.secondary li .i18n-ar a, .i18n-ar #footer .copyright, #footer .i18n-ar .copyright, .i18n-ar #block-weforum-social-weforum-social-links-footer .follow, #block-weforum-social-weforum-social-links-footer .i18n-ar .follow, .i18n-ar .item-list ul.pager, .item-list .i18n-ar ul.pager, .i18n-ar .pane-node-content .field-name-field-date, .pane-node-content .i18n-ar .field-name-field-date,
.i18n-ar .pane-node-content .field-name-post-date,
.pane-node-content .i18n-ar .field-name-post-date, .i18n-ar .weforum-media-links a, .weforum-media-links .i18n-ar a, .i18n-ar .pane-weforum-search-glossary .weforum-glossary-links a, .pane-weforum-search-glossary .weforum-glossary-links .i18n-ar a, .i18n-ar .node-hub.view-mode-search_result .weforum-listing.middle .field-name-field-region, .node-hub.view-mode-search_result .weforum-listing.middle .i18n-ar .field-name-field-region, .i18n-ar .node-hub.view-mode-search_result .weforum-listing.middle .weforum-hub-link, .node-hub.view-mode-search_result .weforum-listing.middle .i18n-ar .weforum-hub-link, .i18n-ar .node-shaper.view-mode-search_result .field-name-field-joined .field-items, .node-shaper.view-mode-search_result .field-name-field-joined .i18n-ar .field-items, .i18n-ar .node-shaper.view-mode-search_result .field-name-field-tibbr-title .field-items, .node-shaper.view-mode-search_result .field-name-field-tibbr-title .i18n-ar .field-items,
.i18n-ar .node-shaper.view-mode-search_result .field-name-field-tibbr-organization .field-items,
.node-shaper.view-mode-search_result .field-name-field-tibbr-organization .i18n-ar .field-items, .i18n-ar .pane-node-content .node-project .field-name-field-address .field-item, .pane-node-content .node-project .field-name-field-address .i18n-ar .field-item, .i18n-ar .pane-facetapi ul.facetapi-facetapi-checkbox-links li, .pane-facetapi ul.facetapi-facetapi-checkbox-links .i18n-ar li, .i18n-ar .view-mode-connected_content .field-name-post-date, .view-mode-connected_content .i18n-ar .field-name-post-date, .i18n-ar .node-page.view-mode-connected_content .field-name-field-page-title, .node-page.view-mode-connected_content .i18n-ar .field-name-field-page-title,
.i18n-ar .node-page.view-mode-connected_content .field-name-custom-page-title,
.node-page.view-mode-connected_content .i18n-ar .field-name-custom-page-title,
.i18n-ar .node-page.view-mode-connected_content .field-name-post-date,
.node-page.view-mode-connected_content .i18n-ar .field-name-post-date, .i18n-ar .shaper-hub a, .shaper-hub .i18n-ar a {
  font-family: "HelveticaNeueArabic55Roman", "HelveticaNeueArabic45Light", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
}

.mission-title, .mission-umbrella .title, h1#page-title, .weforum.main .weforum-layout-list .field-name-group-audience a, .pane-node-content .field-name-group-audience a, .node-hub.view-mode-search_result .weforum-listing.middle .field-name-title a, .node-hub.view-mode-search_result .weforum-listing.middle .weforum-shaper-count, .node-shaper.view-mode-connected_content .group-shaper-wrapper .field-name-group-audience a, .node-shaper.view-mode-search_result fieldset legend, .node-shaper.view-mode-full .weforum-display.right fieldset legend, .node-shaper.view-mode-full .about-me-label, .pane-node-content .node-news .field-name-field-date, .pane-weforum-hub-search h2.pane-title, .view-mode-connected_content .field-name-group-audience a, .shaper-title a, .openlayers-tooltip-name a,
.openlayers-tooltip-name a:visited, #popup_contentDiv .openlayers-tooltip-name a, #popup_contentDiv .views-field-field-hub-curator .views-label,
#popup_contentDiv .views-field-weforum-hub-shapers .views-label {
  font-family: "HelveticaNeue65Medium", "HelveticaNeue55Roman", "HelveticaNeue45Light", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
}
.i18n-ar .mission-title, .i18n-ar .mission-umbrella .title, .mission-umbrella .i18n-ar .title, .i18n-ar h1#page-title, .i18n-ar .weforum.main .weforum-layout-list .field-name-group-audience a, .weforum.main .weforum-layout-list .field-name-group-audience .i18n-ar a, .i18n-ar .pane-node-content .field-name-group-audience a, .pane-node-content .field-name-group-audience .i18n-ar a, .i18n-ar .node-hub.view-mode-search_result .weforum-listing.middle .field-name-title a, .node-hub.view-mode-search_result .weforum-listing.middle .field-name-title .i18n-ar a, .i18n-ar .node-hub.view-mode-search_result .weforum-listing.middle .weforum-shaper-count, .node-hub.view-mode-search_result .weforum-listing.middle .i18n-ar .weforum-shaper-count, .i18n-ar .node-shaper.view-mode-connected_content .group-shaper-wrapper .field-name-group-audience a, .node-shaper.view-mode-connected_content .group-shaper-wrapper .field-name-group-audience .i18n-ar a, .i18n-ar .node-shaper.view-mode-search_result fieldset legend, .node-shaper.view-mode-search_result fieldset .i18n-ar legend, .i18n-ar .node-shaper.view-mode-full .weforum-display.right fieldset legend, .node-shaper.view-mode-full .weforum-display.right fieldset .i18n-ar legend, .i18n-ar .node-shaper.view-mode-full .about-me-label, .node-shaper.view-mode-full .i18n-ar .about-me-label, .i18n-ar .pane-node-content .node-news .field-name-field-date, .pane-node-content .node-news .i18n-ar .field-name-field-date, .i18n-ar .pane-weforum-hub-search h2.pane-title, .pane-weforum-hub-search .i18n-ar h2.pane-title, .i18n-ar .view-mode-connected_content .field-name-group-audience a, .view-mode-connected_content .field-name-group-audience .i18n-ar a, .i18n-ar .shaper-title a, .shaper-title .i18n-ar a, .i18n-ar .openlayers-tooltip-name a, .openlayers-tooltip-name .i18n-ar a,
.i18n-ar .openlayers-tooltip-name a:visited,
.openlayers-tooltip-name .i18n-ar a:visited, .i18n-ar #popup_contentDiv .openlayers-tooltip-name a, #popup_contentDiv .openlayers-tooltip-name .i18n-ar a, .i18n-ar #popup_contentDiv .views-field-field-hub-curator .views-label, #popup_contentDiv .views-field-field-hub-curator .i18n-ar .views-label,
.i18n-ar #popup_contentDiv .views-field-weforum-hub-shapers .views-label,
#popup_contentDiv .views-field-weforum-hub-shapers .i18n-ar .views-label {
  font-family: "HelveticaNeueArabic55Roman", "HelveticaNeueArabic45Light", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
}

.weforum-facts .placeholder {
  font-family: "HelveticaNeue75Bold", "HelveticaNeue65Medium", "HelveticaNeue55Roman", "HelveticaNeue45Light", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
}
.i18n-ar .weforum-facts .placeholder, .weforum-facts .i18n-ar .placeholder {
  font-family: "HelveticaNeueArabic75Bold", "HelveticaNeueArabic55Roman", "HelveticaNeueArabic45Light", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
}

.weforum-listing.middle .top, .pane-node-content .field-name-field-subject-tags, .node-shaper.view-mode-connected_content .group-shaper-wrapper .field-name-title, .node-shaper.view-mode-search_result .field-name-title, .node-shaper.view-mode-full .weforum-display.right .group_shaper_wrapper, .pane-node-content .node-project .field-name-title, .pane-node-content .node-project .field-name-post-date, .pane-node-content .node-project .group_project_wrapper, .pane-node-content .node-news .field-name-title, .pane-node-content .node-news .field-name-group-audience, .pane-node-content .node-news .weforum-display.left,
.pane-node-content .node-news .weforum-display.right {
  min-height: 40px;
}

#block-menu-menu-utility-menu ul.menu, #block-weforum-social-weforum-social-links,
#block-weforum-social-weforum-social-links-footer, #block-weforum-social-weforum-social-links .social-links,
#block-weforum-social-weforum-social-links-footer .social-links, #footer .copyright, #block-weforum-social-weforum-social-links-footer .follow, .weforum.main .weforum-layout-list .field-name-field-event,
.weforum.main .weforum-layout-list .field-name-post-date, .weforum.main .weforum-layout-list .field-name-field-date, .node-hub.view-mode-search_result .weforum-listing.middle .field-name-field-region, .node-hub.view-mode-search_result .weforum-listing.middle .weforum-shaper-count, .node-shaper.view-mode-connected_content .group-shaper-wrapper .field-name-title, .node-shaper.view-mode-connected_content .group-shaper-wrapper .field-name-group-audience .field-item, .node-shaper.view-mode-search_result .field-name-node-link a, .node-shaper.view-mode-full .weforum-display.right .field-name-field-tibbr-title .field-item,
.node-shaper.view-mode-full .weforum-display.right .field-name-field-tibbr-organization .field-item, .node-shaper.view-mode-full .weforum-display.right fieldset legend, .node-shaper.view-mode-full .weforum-display.right fieldset .fieldset-wrapper .field, .node-shaper.view-mode-full .weforum-display.right fieldset .fieldset-wrapper .field-item a, .pane-node-content .node-project .field-name-field-address .field-item, .node-project.view-mode-connected_content .field-name-title, .node-news.view-mode-connected_content .field-name-title, .view-mode-connected_content .field-name-group-audience .field-item, .node-page.view-mode-connected_content .field-name-field-page-title,
.node-page.view-mode-connected_content .field-name-custom-page-title,
.node-page.view-mode-connected_content .field-name-post-date {
  line-height: 1;
}

.border-wrapper, .item-list ul.pager, .weforum-listing.middle .top, .weforum.main .weforum-layout-list, .pane-node-content, .pane-node-content .field-name-post-date, .pane-node-content .service-links, .pane-node-content .field-name-body, .node-page.view-mode-full .field-name-field-page-title, .node-shaper.view-mode-search_result .field-name-title, .node-shaper.view-mode-full .weforum-display.right .field-name-title, .node-shaper.view-mode-full .weforum-display.right .group_shaper_wrapper, .node-shaper.view-mode-full .field-name-field-tibbr-about-me, .pane-node-content .node-project .field-name-title, .pane-node-content .node-news .field-name-group-audience, .pane-node-content .node-news .weforum-display.left,
.pane-node-content .node-news .weforum-display.right, .ui-autocomplete.ui-menu .ui-menu-item a, .pane-facetapi .facetapi-limit-link, .view-mode-connected_content, .weforum-slideshow-pager, .stream-display .view-feeds .views-row, .openlayers-tooltip-name, #popup_contentDiv .views-field-field-hub-curator,
#popup_contentDiv .views-field-weforum-hub-shapers {
  border-bottom: 1px solid #dddddd;
}

.global-hub h1#page-title, #main-menu a, #footer, .ie7 #block-weforum-home-weforum-home-copyright, .item-list ul.pager, .weforum.main .weforum-layout-list, .pane-node-content, .node-shaper.view-mode-full .service-links, .pane-node-content .node-project .field-name-post-date, .pane-node-content .node-news .field-name-group-audience, .weforum-slideshow-pager {
  border-top: 1px solid #dddddd;
}

#block-menu-menu-utility-menu ul.menu li a, #block-weforum-social-weforum-social-links .social-links a,
#block-weforum-social-weforum-social-links-footer .social-links a, #logo, .weforum-layout .weforum.top .inside div.panel-pane:first-of-type .pane-content a, .item-list ul.pager li a, .pane-weforum-search-glossary .weforum-glossary-links a, .node-hub.view-mode-search_result .field-name-field-tibbr-hub-profile-image a, .view-number-of-initatives-in-a-hub .views-field-group-audience a,
.view-number-of-initatives-in-a-hub .views-field-group-audience-1 a, .pane-node-content .node-news .field-name-post-date,
.pane-node-content .node-news .service-links, .pane-facetapi ul.facetapi-facetapi-checkbox-links li a, .stream-display .view-feeds .views-field-field-link a,
.stream-display .view-feeds .views-field-created, .stream-display .view-feeds .views-field-field-tibbr-twitter a,
.stream-display .view-feeds .views-field-field-tibbr-facebook a, .stream-display .attachment .views-row, .page-node-651 .field-name-body, #popup a,
#popup a:visited {
  border-bottom: none;
}

ul.large-bullets {
  list-style: none;
  margin: 0 0 10px 0;
  padding: 0;
}
ul.large-bullets li:before {
  content: "•";
  font-size: 21px;
  margin-right: 6px;
}

#page-wrapper {
/*  background: url('../images/bg.png') center top no-repeat;
  background: #DDDDDD;
*/
  background-color: #DDDDDD;
  position: fixed;
  width: 100%;
  height: 100%;
}

#page {
  background: white;
  background: rgba(255, 255, 255, 0.8);
  margin: 0 auto;
  max-width: 1020px;
  padding: 0 30px;
  position: relative;
}
.ie8 #page, .ie7 #page {
  min-width: 960px;
}
.ie6 #page {
  width: 1020px;
}
.ie8 #page, .ie7 #page, .ie6 #page {
  background: transparent;
  filter: progid:DXImageTransform.Microsoft.Gradient(startColorstr=#ccffffff, endColorstr=#ccffffff);
}
@media (max-width: 39.375em) {
  #page {
    padding: 0 0.5em;
  }
}

.field-label {
  font-size: 16px;
}

.weforum-icon {
  padding-right: 6px;
  margin-bottom: 6px;
  float: right;
}

.weforum-icon.project:after {
  background-position: 0 -396px;
  height: 30px;
  width: 30px;
  content: "\0020";
}

.weforum-icon.shaper:after {
  background-position: 0 -426px;
  height: 30px;
  width: 30px;
  content: "\0020";
}

.weforum-icon.news:after {
  background-position: 0 -366px;
  height: 30px;
  width: 30px;
  content: "\0020";
  position: relative;
  top: 4px;
}

.weforum-icon.events:after {
  background-position: 0 -516px;
  height: 30px;
  width: 30px;
  content: "\0020";
  position: relative;
  top: 4px;
}

.weforum-icon.hubs:after {
  background-position: 0 -456px;
  height: 30px;
  width: 30px;
  content: "\0020";
}

.views-field-field-video {
  position: absolute;
  top: 0;
}
.views-field-field-video .field-content:after {
  background-position: 0 -546px;
  height: 30px;
  width: 30px;
  content: "\0020";
  position: relative;
  left: 665px;
  top: -35px;
}

.border-wrapper {
  margin-bottom: 10px;
}

.node-type-page .pane-node-content,
.node-type-webform .pane-node-content {
  background-color: transparent;
}

.views-exposed-form .views-exposed-widget label{
  float: left;
}

.views-exposed-form .views-exposed-widget {
  float: none;
  padding: 5px;
}

#views-exposed-form-global-search-global-search-results label,
.views-widget-filter-search_api_views_fulltext label {
  display: none;
}
#views-exposed-form-global-search-global-search-results input:focus,
#views-exposed-form-global-search-global-search-results input:active,
.views-widget-filter-search_api_views_fulltext input:focus,
.views-widget-filter-search_api_views_fulltext input:active {
  border: none;
  box-shadow: none;
}

#edit-search-api-views-fulltext-wrapper {
  width: 203px;
}
#edit-search-api-views-fulltext-wrapper #edit-search-api-views-fulltext {
  background: url('../images/search_magnifying_glass.png') no-repeat right center;
  background-color: white;
  padding-right: 20px;
}
[dir="rtl"] #edit-search-api-views-fulltext-wrapper #edit-search-api-views-fulltext {
  background-position: left center;
  padding-right: 0.5em;
  padding-left: 20px;
}
.ie8 #edit-search-api-views-fulltext-wrapper #edit-search-api-views-fulltext, .ie7 #edit-search-api-views-fulltext-wrapper #edit-search-api-views-fulltext {
  padding-right: 0;
}
#edit-search-api-views-fulltext-wrapper .form-item-search-api-views-fulltext {
  border: 4px solid #002b5b;
}
#edit-search-api-views-fulltext-wrapper .form-item-search-api-views-fulltext input {
  border: 0;
  outline: none;
}
.ie8 #edit-search-api-views-fulltext-wrapper .form-item-search-api-views-fulltext input, .ie7 #edit-search-api-views-fulltext-wrapper .form-item-search-api-views-fulltext input {
  width: 192px;
  padding-right: 0;
}

#views-exposed-form-hubs-panel-pane-1 {
  margin-top: -7px;
}
#views-exposed-form-hubs-panel-pane-1 #edit-search-wrapper {
  float: none;
  padding: 0;
}
#views-exposed-form-hubs-panel-pane-1 #edit-submit-hubs {
  display: none;
}
#views-exposed-form-hubs-panel-pane-1 #edit-search {
  background: url('../images/search_magnifying_glass.png') no-repeat center right;
  background-color: white;
  padding-right: 20px;
}
[dir="rtl"] #views-exposed-form-hubs-panel-pane-1 #edit-search {
  background-position: left center;
  padding-right: 0.5em;
  padding-left: 20px;
}
.ie8 #views-exposed-form-hubs-panel-pane-1 #edit-search, .ie7 #views-exposed-form-hubs-panel-pane-1 #edit-search {
  padding-right: 0;
}

.pane-global-search-global-search-results .pane-title .normal-font {
  font-family: "HelveticaNeue55Roman", "HelveticaNeue45Light", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
}

#utility-bar-search {
  border-right: 2px solid #002b5b;
  border-bottom: 2px solid #002b5b;
  border-left: 2px solid #002b5b;
  margin-top: -5px;
}
#utility-bar-search .views-exposed-widgets {
  margin-bottom: 0;
}
#utility-bar-search .views-exposed-form .views-exposed-widget {
  float: none;
  padding: 0;
}
#utility-bar-search input:focus,
#utility-bar-search input:active {
  border: none;
  box-shadow: none;
}
.ie8 #utility-bar-search input, .ie7 #utility-bar-search input {
  width: 192px;
  padding-right: 0;
}

#utility-bar {
  padding: 4px 0 0 4px;
}
.ie8 #utility-bar, .ie7 #utility-bar {
  background-color: #00529b;
}
.ie8 #utility-bar .container, .ie7 #utility-bar .container {
  background-color: #002b5b;
  min-height: 28px;
  padding: 0 4px 0 6px;
}
.ie8 #utility-bar .container a, .ie7 #utility-bar .container a {
  border-bottom: none;
  color: white;
}

#utility {
  *zoom: 1;
  min-height: 28px;
  padding: 0 4px 0 6px;
  position: relative;
}
#utility:after {
  content: "";
  display: table;
  clear: both;
}

/*////////////// Multi-level menus CSS YCH ////////////////////////*/
#block-menu-menu-utility-menu{
overflow: hidden;
display:none;
}

#block-menu-block-3 div.content div ul{
margin: 0;
padding: 0;
float: left;
width: 100%;
font: bold 13px Arial;
background: #002b5b  center center repeat-x; /*default background of menu bar*/
}

#block-menu-menu-utility-menu ul.menu {
  margin: 0;
  padding: 5px 0 0 0;
}


.ie8 #block-menu-menu-utility-menu ul.menu li, .ie7 #block-menu-menu-utility-menu ul.menu li {
  display: inline;
}
#block-menu-menu-utility-menu ul.menu li a {
  width: 45px;
  text-align: center;
}
.ie8 #block-menu-menu-utility-menu ul.menu li a, .ie7 #block-menu-menu-utility-menu ul.menu li a {
  display: inline;
}
#block-menu-menu-utility-menu ul.menu li.first a {
  text-align: left;
}
#block-menu-menu-utility-menu ul.menu li.first:after {
  content: "";
  color: white;
}
#block-menu-menu-utility-menu ul.menu li.last a {
  text-align: right;
}
#block-menu-menu-utility-menu ul.menu li.last:before {
  content: "";
  color: white;
}

#block-lang-dropdown-language {
  margin-right: 6px;
}
#block-lang-dropdown-language #lang-dropdown-form {
  background: url('../images/arrow-dropdown.png') no-repeat 98% center, #00529b;
  border: none;
  cursor: pointer;
  overflow: hidden;
  vertical-align: top;
  width: 85px !important;
}
.ie9 #block-lang-dropdown-language #lang-dropdown-form, .ie8 #block-lang-dropdown-language #lang-dropdown-form, .ie7 #block-lang-dropdown-language #lang-dropdown-form, .ie6 #block-lang-dropdown-language #lang-dropdown-form {
  background-color: #00529b;
}
#block-lang-dropdown-language #lang-dropdown-form select {
  background: transparent;
  border: 0;
}
.ie7 #block-lang-dropdown-language #lang-dropdown-form select {
  color: black;
}
#block-lang-dropdown-language #lang-dropdown-form select option[selected="selected"] {
  outline: none;
  border: 0;
}
.ie9 #block-lang-dropdown-language #lang-dropdown-form select option, .ie8 #block-lang-dropdown-language #lang-dropdown-form select option, .ie7 #block-lang-dropdown-language #lang-dropdown-form select option, .ie6 #block-lang-dropdown-language #lang-dropdown-form select option {
  color: black;
}
.ie9 #block-lang-dropdown-language #lang-dropdown-form select option[selected="selected"], .ie8 #block-lang-dropdown-language #lang-dropdown-form select option[selected="selected"], .ie7 #block-lang-dropdown-language #lang-dropdown-form select option[selected="selected"], .ie6 #block-lang-dropdown-language #lang-dropdown-form select option[selected="selected"] {
  color: #dddddd;
}
#block-lang-dropdown-language #lang-dropdown-form select::-moz-focus-inner, #block-lang-dropdown-language #lang-dropdown-form select:-moz-focusring, #block-lang-dropdown-language #lang-dropdown-form select:active, #block-lang-dropdown-language #lang-dropdown-form select:focus {
  outline: none;
  border: 0;
  padding: 0;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  -moz-outline: none;
}

#block-weforum-social-weforum-social-links,
#block-weforum-social-weforum-social-links-footer {
  bottom: 0;
  position: absolute;
  right: 0;
  text-align: right;
}
#block-weforum-social-weforum-social-links .social-links,
#block-weforum-social-weforum-social-links-footer .social-links {
  padding-right: 2px;
}
#block-weforum-social-weforum-social-links .social-links:last-child,
#block-weforum-social-weforum-social-links-footer .social-links:last-child {
  padding-right: 0;
}

#block-weforum-social-weforum-social-links {
  padding-top: 5px;
}
.ie7 #block-weforum-social-weforum-social-links .social-links {
  display: inline;
}

#logo {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-right: 20px;
}
.ie8 #logo, .ie7 #logo {
  border-bottom: none;
}

.inlinesvg #logo {
  padding: 0;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNS4wLjIsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxhZ18xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiIHk9IjBweCINCgkgd2lkdGg9IjI5MXB4IiBoZWlnaHQ9IjE2NnB4IiB2aWV3Qm94PSIwIDAgMjkxIDE2NiIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgMjkxIDE2NiIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8Zz4NCgk8Zz4NCgkJPHBvbHlnb24gZmlsbD0iI0ZGQ0IwNSIgcG9pbnRzPSIxNDcuODA0LDEwNC45MiA2MS41NzUsNTcuNTk3IDUxLjc1LDEwNC43OTkgCQkiLz4NCgkJPHBvbHlnb24gZmlsbD0iI0ZGRjIwMCIgcG9pbnRzPSIxNDcuODA3LDEwNC45MTIgMTIxLjUzMSw2Ljc0NyA3OS44MTMsMzcuMDY1IAkJIi8+DQoJCTxwb2x5Z29uIGZpbGw9IiNGRkNCMDUiIHBvaW50cz0iMTQ3Ljc5LDEwOS42MyAxOTQuNDM4LDI1LjYwOCAxNDcuNzg2LDEzLjU5MiAJCSIvPg0KCQk8cG9seWdvbiBmaWxsPSIjRjc5NDFFIiBwb2ludHM9IjE0Ny43OSwxMDkuNjMxIDI0OC4zMDQsOTQuNjc4IDIyMC44OTQsNTEuMDIxIAkJIi8+DQoJPC9nPg0KCTxnPg0KCQk8Zz4NCgkJCTxwYXRoIGZpbGw9IiM1ODU5NUIiIGQ9Ik0zMy4zNTcsMTE4LjgxNWwtMC42MTUsMC41MDVjLTAuNjcxLTEuMDY5LTEuNTg4LTEuNjA0LTIuNzUxLTEuNjA0Yy0wLjQ3NSwwLTAuOTA4LDAuMTE3LTEuMjk5LDAuMzQ5DQoJCQkJYy0wLjM5MSwwLjIzMy0wLjY5OSwwLjU0OS0wLjkyMywwLjk0N3MtMC4zMzYsMC44MzEtMC4zMzYsMS4yOTZjMCwwLjYyNCwwLjIxMSwxLjExLDAuNjMzLDEuNDU3DQoJCQkJYzAuNDIyLDAuMzQ4LDEuMDI3LDAuNzA3LDEuODE1LDEuMDc5bDIuNTkzLDEuMzU0YzEuMDMxLDAuNjUsMS41NDcsMS41NSwxLjU0NywyLjY5OGMwLDAuNzI5LTAuMTk5LDEuMzk2LTAuNTk4LDINCgkJCQlzLTAuOTI0LDEuMDc4LTEuNTc4LDEuNDI0cy0xLjM0NSwwLjUxOS0yLjA3NCwwLjUxOWMtMC45MjYsMC0xLjc0My0wLjI2My0yLjQ1LTAuNzg5cy0xLjIyMi0xLjIzNi0xLjU0NC0yLjEyOWwwLjc1Ni0wLjMzOA0KCQkJCWMwLjMwOCwwLjc2MiwwLjczNSwxLjM2LDEuMjgzLDEuNzk1YzAuNTQ4LDAuNDM2LDEuMjEzLDAuNjUzLDEuOTk1LDAuNjUzYzAuNTg5LDAsMS4xNC0wLjE0MiwxLjY1Mi0wLjQyNg0KCQkJCXMwLjkyMy0wLjY3MSwxLjIzLTEuMTYyczAuNDYxLTEuMDI5LDAuNDYxLTEuNjE1YzAtMC40NjYtMC4xMzMtMC44NjctMC40LTEuMjA0cy0wLjU2OC0wLjYwNS0wLjkwNS0wLjgwNA0KCQkJCXMtMC44MTMtMC40NDgtMS40MjgtMC43NDdsLTIuNDQ4LTEuMjk2Yy0wLjkzOC0wLjU4LTEuNDA2LTEuMzktMS40MDYtMi40M2MwLTAuNjYyLDAuMTQ4LTEuMjU1LDAuNDQ0LTEuNzgNCgkJCQlzMC43MDgtMC45MzIsMS4yMzctMS4yMjJzMS4xMjctMC40MzUsMS43OTUtMC40MzVjMC42ODYsMCwxLjMyOCwwLjE3MSwxLjkyNywwLjUxNFMzMy4wMzIsMTE4LjIyOSwzMy4zNTcsMTE4LjgxNXoiLz4NCgkJCTxwYXRoIGZpbGw9IiM1ODU5NUIiIGQ9Ik00Ny40MjksMTE4LjY3djEuMTg3Yy0wLjUyMS0wLjYzOS0xLjIwMS0xLjE1NS0yLjAzOS0xLjU0OXMtMS42NzYtMC41OTEtMi41MTQtMC41OTENCgkJCQljLTAuODMyLDAtMS42MjMsMC4xNjctMi4zNzEsMC40OTljLTAuNzQ5LDAuMzMzLTEuNDA5LDAuNzkxLTEuOTgyLDEuMzc2Yy0wLjU3MywwLjU4NC0xLjAyLDEuMjU1LTEuMzQsMi4wMTMNCgkJCQlzLTAuNDgxLDEuNTQzLTAuNDgxLDIuMzU3YzAsMC43ODIsMC4xNjEsMS41MzgsMC40ODMsMi4yNjZzMC43NjgsMS4zNzIsMS4zMzYsMS45MzFjMC41OTIsMC41NiwxLjI3MSwxLjAxMiwyLjAzOSwxLjM1Ng0KCQkJCXMxLjU0LDAuNTE2LDIuMzE2LDAuNTE2YzAuNTI0LDAsMS4wNzctMC4wODgsMS42NTctMC4yNjZjMC41OC0wLjE3NywxLjEyNi0wLjQyNCwxLjYzOS0wLjc0czAuOTMyLTAuNjcxLDEuMjU3LTEuMDYzdjEuMTg3DQoJCQkJYy0xLjM1NiwxLjEyOC0yLjg2MiwxLjY5Mi00LjUxOCwxLjY5MmMtMS4yMzYsMC0yLjM5OS0wLjMxNC0zLjQ4OS0wLjk0M2MtMS4wOS0wLjYyOC0xLjk2LTEuNDc3LTIuNjEtMi41NDYNCgkJCQlzLTAuOTc2LTIuMjIyLTAuOTc2LTMuNDU4YzAtMS4yNTcsMC4zMjEtMi40MjEsMC45NjQtMy40OTRzMS41MS0xLjkyMiwyLjYtMi41NDlzMi4yNjYtMC45NCwzLjUyOS0wLjk0DQoJCQkJYzAuNTQ1LDAsMS4wODQsMC4wNjgsMS42MTksMC4yMDVjMC41MzUsMC4xMzYsMS4wNDcsMC4zMzYsMS41MzgsMC42UzQ3LjAyNCwxMTguMjk1LDQ3LjQyOSwxMTguNjd6Ii8+DQoJCQk8cGF0aCBmaWxsPSIjNTg1OTVCIiBkPSJNNTEuMjA4LDEyMi44NDVoOC4yNDR2LTUuNzU3aDAuODY2djEzLjU3aC0wLjg2NnYtN2gtOC4yNDR2N2gtMC44NjF2LTEzLjU3aDAuODYxVjEyMi44NDV6Ii8+DQoJCQk8cGF0aCBmaWxsPSIjNTg1OTVCIiBkPSJNNjMuMjU0LDExNy4wODhsMy44MTQsMTEuNjYzbDUuMDc2LTEyLjM0OWw1LjA3NiwxMi4zNDlsMy43NjItMTEuNjYzaDAuODY2bC00LjU3LDE0LjAxOWwtNS4xODYtMTIuNTQ2DQoJCQkJbC01LjE2OCwxMi41NDZsLTQuNTM1LTE0LjAxOUg2My4yNTR6Ii8+DQoJCQk8cGF0aCBmaWxsPSIjNTg1OTVCIiBkPSJNOTEuMjA4LDEyNi4xOTRIODUuMjVsLTEuODE5LDQuNDY1aC0wLjg4M2w1LjY5MS0xNC4wMjNsNS42NjksMTQuMDIzaC0wLjg4M0w5MS4yMDgsMTI2LjE5NHoNCgkJCQkgTTkwLjg4MywxMjUuMzg1bC0yLjY0Ni02LjU1MmwtMi42NjMsNi41NTJIOTAuODgzeiIvPg0KCQkJPHBhdGggZmlsbD0iIzU4NTk1QiIgZD0iTTk5LjMyNiwxMzAuNjU5aC0zLjQ3MnYtMTMuNTdoMi43MTZjMC42MjQsMCwxLjE1NiwwLjA1MSwxLjU5NywwLjE1MQ0KCQkJCWMwLjQ0MSwwLjEwMiwwLjg0NSwwLjMxNCwxLjIxMSwwLjY0YzAuNzU2LDAuNjU2LDEuMTM0LDEuNTkyLDEuMTM0LDIuODA4YzAsMS4yNTQtMC41MjEsMi4xNzgtMS41NjQsMi43NzMNCgkJCQljMC41NDgsMC4xMTEsMS4wMzYsMC4zMjcsMS40NjMsMC42NDhjMC40MjgsMC4zMiwwLjc1OSwwLjcyLDAuOTkzLDEuMTk3czAuMzUyLDEuMDAyLDAuMzUyLDEuNTczDQoJCQkJYzAsMS4xNTctMC40MiwyLjA5My0xLjI2MSwyLjgwOGMtMC40MzksMC4zNzItMC45MDgsMC42MjctMS40MDYsMC43NjVTMTAwLjAwMiwxMzAuNjU5LDk5LjMyNiwxMzAuNjU5eiBNOTYuNzE1LDExNy44OTd2NS4zNDQNCgkJCQloMS40OTRoMC40MzVjMC40MzQsMCwwLjgwMy0wLjAzMSwxLjEwOS0wLjA5NWMwLjMwNi0wLjA2MywwLjYwMi0wLjE5OCwwLjg4Ni0wLjQwNmMwLjM3OC0wLjI3NSwwLjY0MS0wLjU4MywwLjc4OS0wLjkyMw0KCQkJCXMwLjIyMi0wLjc1OSwwLjIyMi0xLjI1N2MwLTAuNDY5LTAuMDkyLTAuODk5LTAuMjc3LTEuMjkycy0wLjQ2NC0wLjcwNi0wLjgzOS0wLjk0Yy0wLjMwOC0wLjE5My0wLjYzNy0wLjMxMy0wLjk4OS0wLjM2DQoJCQkJcy0wLjc5Ny0wLjA3LTEuMzM2LTAuMDdIOTYuNzE1eiBNOTYuNzE1LDEyNC4wNTR2NS43OTZoMi4wN2MwLjY0NSwwLDEuMTc1LTAuMDI5LDEuNTkzLTAuMDg4czAuODExLTAuMjA0LDEuMTgtMC40MzUNCgkJCQljMC44ODgtMC41OTgsMS4zMzItMS40MDIsMS4zMzItMi40MTNjMC0wLjUxNi0wLjEyMy0wLjk5Ni0wLjM2OS0xLjQ0MXMtMC41OS0wLjc3NS0xLjAzMy0wLjk4OQ0KCQkJCWMtMC41NzctMC4yODctMS41MzEtMC40MzEtMi44NjEtMC40MzFIOTYuNzE1eiIvPg0KCQkJPHBhdGggZmlsbD0iIzU4NTk1QiIgZD0iTTExNy44NjcsMTE3Ljg5N2gtNC42MXY0LjkzMWg0LjQ4MnYwLjgxM2gtNC40ODJ2Ny4wMThoLTAuODYxdi0xMy41N2g1LjQ3MVYxMTcuODk3eiIvPg0KCQkJPHBhdGggZmlsbD0iIzU4NTk1QiIgZD0iTTEyNy4wMTMsMTE2LjkwOGMxLjI0OCwwLDIuNDEzLDAuMzEzLDMuNDk2LDAuOTRjMS4wODIsMC42MjcsMS45NDMsMS40NzcsMi41ODQsMi41NDkNCgkJCQljMC42NCwxLjA3MiwwLjk2LDIuMjMxLDAuOTYsMy40NzZzLTAuMzIsMi40MDMtMC45NiwzLjQ3NGMtMC42NDEsMS4wNzEtMS41MDIsMS45MjEtMi41ODQsMi41NDkNCgkJCQljLTEuMDgzLDAuNjI5LTIuMjQ4LDAuOTQzLTMuNDk2LDAuOTQzcy0yLjQxNC0wLjMxNC0zLjQ5Ni0wLjk0M2MtMS4wODMtMC42MjgtMS45NDQtMS40NzgtMi41ODQtMi41NDkNCgkJCQljLTAuNjQtMS4wNy0wLjk2LTIuMjI5LTAuOTYtMy40NzRjMC0wLjkzNSwwLjE4My0xLjgyNSwwLjU0OS0yLjY3MnMwLjg3Ny0xLjU5NCwxLjUzNC0yLjI0MXMxLjQxMS0xLjE1MSwyLjI2Ni0xLjUxMg0KCQkJCUMxMjUuMTc1LDExNy4wODgsMTI2LjA3MiwxMTYuOTA4LDEyNy4wMTMsMTE2LjkwOHogTTEyNy4wMTMsMTE3LjcxN2MtMS4xMDQsMC0yLjEzMSwwLjI3OC0zLjA3OCwwLjgzNQ0KCQkJCWMtMC45NDgsMC41NTctMS43MDEsMS4zMS0yLjI1OSwyLjI1OWMtMC41NTksMC45NDktMC44MzcsMS45Ny0wLjgzNywzLjA2M3MwLjI3OSwyLjExNCwwLjgzNywzLjA2Mw0KCQkJCWMwLjU1OCwwLjk0OSwxLjMxMSwxLjcwMiwyLjI1OSwyLjI1OWMwLjk0NywwLjU1NywxLjk3NCwwLjgzNSwzLjA3OCwwLjgzNWMxLjA5OSwwLDIuMTIzLTAuMjgsMy4wNzQtMC44NDENCgkJCQljMC45NS0wLjU2MSwxLjcwNS0xLjMxNCwyLjI2My0yLjI1OWMwLjU1OS0wLjk0NSwwLjgzNy0xLjk2NCwwLjgzNy0zLjA1N2MwLTAuODItMC4xNjMtMS42MDctMC40ODgtMi4zNg0KCQkJCXMtMC43NzEtMS40MTItMS4zMzgtMS45NzhjLTAuNTY3LTAuNTY1LTEuMjI3LTEuMDEtMS45OC0xLjMzM1MxMjcuODM5LDExNy43MTcsMTI3LjAxMywxMTcuNzE3eiIvPg0KCQkJPHBhdGggZmlsbD0iIzU4NTk1QiIgZD0iTTE0NC43OCwxMjUuMjkzdi04LjIwNWgwLjg2MXY4LjQ1OWMwLDAuODkxLTAuMDUsMS42MDQtMC4xNDksMi4xNHMtMC4zNTYsMS4wNTktMC43NjksMS41NjkNCgkJCQljLTAuNDQ1LDAuNTA3LTAuOTk3LDAuODk3LTEuNjU1LDEuMTcxYy0wLjY1OCwwLjI3My0xLjMzNSwwLjQxMS0yLjAzMiwwLjQxMWMtMC43LDAtMS4zNzgtMC4xMzctMi4wMzItMC40MTENCgkJCQljLTAuNjU1LTAuMjc0LTEuMjA4LTAuNjY1LTEuNjU5LTEuMTcxYy0wLjQxMy0wLjUxNi0wLjY2OS0xLjA0LTAuNzY5LTEuNTczcy0wLjE0OS0xLjI0NS0wLjE0OS0yLjEzNnYtOC40NTloMC44NjZ2OC4yMDUNCgkJCQljMCwwLjgyOSwwLjAzOSwxLjUwNiwwLjExNiwyLjAzczAuMjcyLDAuOTg5LDAuNTgzLDEuMzkzYzAuMzE5LDAuNDEsMC43NjgsMC43MzEsMS4zNDcsMC45NjUNCgkJCQljMC41NzgsMC4yMzIsMS4xNDUsMC4zNDksMS42OTgsMC4zNDljMC41NTcsMCwxLjEyMy0wLjExNywxLjY5OC0wLjM0OWMwLjU3Ni0wLjIzMywxLjAyMy0wLjU1NSwxLjM0My0wLjk2NQ0KCQkJCWMwLjMxMS0wLjQwMSwwLjUwNS0wLjg2NSwwLjU4NC0xLjM5MVMxNDQuNzgsMTI2LjEyMiwxNDQuNzgsMTI1LjI5M3oiLz4NCgkJCTxwYXRoIGZpbGw9IiM1ODU5NUIiIGQ9Ik0xNjEuMDg0LDExNy4wODh2MTQuMDE5bC0xMS4zOTUtMTIuMTExdjExLjY2M2gtMC44NjF2LTEzLjc1bDExLjM5NSwxMi4wMjN2LTExLjg0M0gxNjEuMDg0eiIvPg0KCQkJPHBhdGggZmlsbD0iIzU4NTk1QiIgZD0iTTE2NC4zOTgsMTMwLjY1OXYtMTMuNTdoMi40NDhjMC43MDYsMCwxLjM0MiwwLjA0OCwxLjkwNywwLjE0M2MwLjU2NSwwLjA5NiwxLjExLDAuMjcsMS42MzMsMC41MjMNCgkJCQlzMS4wMjMsMC42MDEsMS41LDEuMDQzYzAuNjk3LDAuNjQ3LDEuMjMxLDEuNDE0LDEuNjAyLDIuMjk4YzAuMzcxLDAuODg1LDAuNTU3LDEuODE2LDAuNTU3LDIuNzk1DQoJCQkJYzAsMC45NDYtMC4xOCwxLjg0OS0wLjUzOSwyLjcwN2MtMC4zNTgsMC44NTgtMC44NzUsMS42MTEtMS41NDksMi4yNTljLTAuMzYzLDAuMzUyLTAuNzQsMC42NDYtMS4xMzEsMC44ODENCgkJCQljLTAuMzkxLDAuMjM2LTAuNzk2LDAuNDIxLTEuMjE1LDAuNTU0Yy0wLjQxOSwwLjEzNC0wLjg1LDAuMjI4LTEuMjkyLDAuMjg0cy0wLjkzMywwLjA4My0xLjQ3MiwwLjA4M0gxNjQuMzk4eiBNMTY1LjI2LDEyOS44NQ0KCQkJCWgxLjU2OWMwLjk0OSwwLDEuNzkxLTAuMTIxLDIuNTI1LTAuMzYyYzAuNzM0LTAuMjQyLDEuNDEtMC42NjcsMi4wMjgtMS4yNzdjMC41OC0wLjU4LDEuMDI1LTEuMjQyLDEuMzM2LTEuOTg2DQoJCQkJYzAuMzEtMC43NDQsMC40NjYtMS41MjIsMC40NjYtMi4zMzNjMC0wLjg2Ny0wLjE3MS0xLjY5My0wLjUxLTIuNDc5Yy0wLjM0MS0wLjc4NS0wLjgyNS0xLjQ2NS0xLjQ1NS0yLjAzOQ0KCQkJCWMtMC42MDktMC41NTEtMS4yNjMtMC45MzUtMS45NjItMS4xNTFzLTEuNTA4LTAuMzI1LTIuNDI4LTAuMzI1aC0xLjU2OVYxMjkuODV6Ii8+DQoJCQk8cGF0aCBmaWxsPSIjNTg1OTVCIiBkPSJNMTgzLjgyMywxMjYuMTk0aC01Ljk1OWwtMS44MTksNC40NjVoLTAuODg0bDUuNjkxLTE0LjAyM2w1LjY2OSwxNC4wMjNoLTAuODg0TDE4My44MjMsMTI2LjE5NHoNCgkJCQkgTTE4My40OTgsMTI1LjM4NWwtMi42NDYtNi41NTJsLTIuNjYzLDYuNTUySDE4My40OTh6Ii8+DQoJCQk8cGF0aCBmaWxsPSIjNTg1OTVCIiBkPSJNMTkxLjQ5MiwxMTcuODk3djEyLjc2MmgtMC44NjZ2LTEyLjc2MmgtMy41MDd2LTAuODA5aDcuODg0djAuODA5SDE5MS40OTJ6Ii8+DQoJCQk8cGF0aCBmaWxsPSIjNTg1OTVCIiBkPSJNMTk3LjgyNSwxMTcuMDg4djEzLjU3aC0wLjg2MXYtMTMuNTdIMTk3LjgyNXoiLz4NCgkJCTxwYXRoIGZpbGw9IiM1ODU5NUIiIGQ9Ik0yMDcuMzY2LDExNi45MDhjMS4yNDgsMCwyLjQxMywwLjMxMywzLjQ5NSwwLjk0YzEuMDgzLDAuNjI3LDEuOTQ0LDEuNDc3LDIuNTg0LDIuNTQ5DQoJCQkJYzAuNjQxLDEuMDcyLDAuOTYxLDIuMjMxLDAuOTYxLDMuNDc2cy0wLjMyLDIuNDAzLTAuOTYxLDMuNDc0Yy0wLjY0LDEuMDcxLTEuNTAxLDEuOTIxLTIuNTg0LDIuNTQ5DQoJCQkJYy0xLjA4MiwwLjYyOS0yLjI0NywwLjk0My0zLjQ5NSwwLjk0M3MtMi40MTQtMC4zMTQtMy40OTYtMC45NDNjLTEuMDgzLTAuNjI4LTEuOTQ0LTEuNDc4LTIuNTg0LTIuNTQ5DQoJCQkJYy0wLjY0MS0xLjA3LTAuOTYtMi4yMjktMC45Ni0zLjQ3NGMwLTAuOTM1LDAuMTgzLTEuODI1LDAuNTQ5LTIuNjcyczAuODc3LTEuNTk0LDEuNTM0LTIuMjQxDQoJCQkJYzAuNjU2LTAuNjQ3LDEuNDExLTEuMTUxLDIuMjY1LTEuNTEyQzIwNS41MjgsMTE3LjA4OCwyMDYuNDI2LDExNi45MDgsMjA3LjM2NiwxMTYuOTA4eiBNMjA3LjM2NiwxMTcuNzE3DQoJCQkJYy0xLjEwNSwwLTIuMTMxLDAuMjc4LTMuMDc5LDAuODM1Yy0wLjk0NywwLjU1Ny0xLjcsMS4zMS0yLjI1OSwyLjI1OWMtMC41NTgsMC45NDktMC44MzcsMS45Ny0wLjgzNywzLjA2Mw0KCQkJCXMwLjI3OSwyLjExNCwwLjgzNywzLjA2M2MwLjU1OSwwLjk0OSwxLjMxMiwxLjcwMiwyLjI1OSwyLjI1OWMwLjk0OCwwLjU1NywxLjk3NCwwLjgzNSwzLjA3OSwwLjgzNQ0KCQkJCWMxLjA5OSwwLDIuMTIzLTAuMjgsMy4wNzMtMC44NDFjMC45NTEtMC41NjEsMS43MDUtMS4zMTQsMi4yNjQtMi4yNTljMC41NTgtMC45NDUsMC44MzctMS45NjQsMC44MzctMy4wNTcNCgkJCQljMC0wLjgyLTAuMTYyLTEuNjA3LTAuNDg3LTIuMzZzLTAuNzcxLTEuNDEyLTEuMzM5LTEuOTc4Yy0wLjU2Ni0wLjU2NS0xLjIyNy0xLjAxLTEuOTc5LTEuMzMzUzIwOC4xOTIsMTE3LjcxNywyMDcuMzY2LDExNy43MTd6DQoJCQkJIi8+DQoJCQk8cGF0aCBmaWxsPSIjNTg1OTVCIiBkPSJNMjI5LjE2MywxMTcuMDg4djE0LjAxOWwtMTEuMzk1LTEyLjExMXYxMS42NjNoLTAuODYxdi0xMy43NWwxMS4zOTUsMTIuMDIzdi0xMS44NDNIMjI5LjE2M3oiLz4NCgkJCTxwYXRoIGZpbGw9IiM1ODU5NUIiIGQ9Ik0yNDMuOTI2LDExNy44OTdoLTQuNjF2NC45MzFoNC40ODJ2MC44MTNoLTQuNDgydjcuMDE4aC0wLjg2MXYtMTMuNTdoNS40NzJWMTE3Ljg5N3oiLz4NCgkJCTxwYXRoIGZpbGw9IiM1ODU5NUIiIGQ9Ik0yNTMuMDcxLDExNi45MDhjMS4yNDgsMCwyLjQxMywwLjMxMywzLjQ5NSwwLjk0YzEuMDgzLDAuNjI3LDEuOTQ0LDEuNDc3LDIuNTg0LDIuNTQ5DQoJCQkJYzAuNjQxLDEuMDcyLDAuOTYxLDIuMjMxLDAuOTYxLDMuNDc2cy0wLjMyLDIuNDAzLTAuOTYxLDMuNDc0Yy0wLjY0LDEuMDcxLTEuNTAxLDEuOTIxLTIuNTg0LDIuNTQ5DQoJCQkJYy0xLjA4MiwwLjYyOS0yLjI0NywwLjk0My0zLjQ5NSwwLjk0M3MtMi40MTQtMC4zMTQtMy40OTYtMC45NDNjLTEuMDgzLTAuNjI4LTEuOTQ0LTEuNDc4LTIuNTg0LTIuNTQ5DQoJCQkJYy0wLjY0MS0xLjA3LTAuOTYtMi4yMjktMC45Ni0zLjQ3NGMwLTAuOTM1LDAuMTgzLTEuODI1LDAuNTQ5LTIuNjcyczAuODc3LTEuNTk0LDEuNTM0LTIuMjQxDQoJCQkJYzAuNjU2LTAuNjQ3LDEuNDExLTEuMTUxLDIuMjY1LTEuNTEyQzI1MS4yMzMsMTE3LjA4OCwyNTIuMTMxLDExNi45MDgsMjUzLjA3MSwxMTYuOTA4eiBNMjUzLjA3MSwxMTcuNzE3DQoJCQkJYy0xLjEwNCwwLTIuMTMxLDAuMjc4LTMuMDc5LDAuODM1Yy0wLjk0NywwLjU1Ny0xLjcsMS4zMS0yLjI1OSwyLjI1OWMtMC41NTgsMC45NDktMC44MzcsMS45Ny0wLjgzNywzLjA2Mw0KCQkJCXMwLjI3OSwyLjExNCwwLjgzNywzLjA2M2MwLjU1OSwwLjk0OSwxLjMxMiwxLjcwMiwyLjI1OSwyLjI1OWMwLjk0OCwwLjU1NywxLjk3NSwwLjgzNSwzLjA3OSwwLjgzNQ0KCQkJCWMxLjA5OSwwLDIuMTIzLTAuMjgsMy4wNzMtMC44NDFjMC45NTEtMC41NjEsMS43MDUtMS4zMTQsMi4yNjQtMi4yNTljMC41NTgtMC45NDUsMC44MzctMS45NjQsMC44MzctMy4wNTcNCgkJCQljMC0wLjgyLTAuMTYyLTEuNjA3LTAuNDg3LTIuMzZzLTAuNzcxLTEuNDEyLTEuMzM5LTEuOTc4Yy0wLjU2Ni0wLjU2NS0xLjIyNy0xLjAxLTEuOTc5LTEuMzMzUzI1My44OTcsMTE3LjcxNywyNTMuMDcxLDExNy43MTd6DQoJCQkJIi8+DQoJCQk8cGF0aCBmaWxsPSIjNTg1OTVCIiBkPSJNMjY0Ljg4LDEyNC4yMzRsNC40NDcsNi40MjVoLTAuOTkzbC00LjQyNi02LjQyNWgtMC40MzV2Ni40MjVoLTAuODYxdi0xMy41N2gxLjY5MQ0KCQkJCWMwLjcxMiwwLDEuMzA2LDAuMDQxLDEuNzgsMC4xMjFzMC45MTIsMC4yNjcsMS4zMTMsMC41NmMwLjkxNCwwLjY0NSwxLjM3MSwxLjYxNywxLjM3MSwyLjkxOGMwLDAuNzY1LTAuMTY1LDEuNDE0LTAuNDk0LDEuOTQ3DQoJCQkJYy0wLjMzLDAuNTMzLTAuNzg4LDAuOTMzLTEuMzc2LDEuMkMyNjYuMzEyLDEyNC4xMDEsMjY1LjYzOSwxMjQuMjM0LDI2NC44OCwxMjQuMjM0eiBNMjYzLjQ3NCwxMjMuNDIxaDEuMDk5DQoJCQkJYzAuNTM2LDAsMC45ODgtMC4wMzgsMS4zNTctMC4xMTRzMC43MDktMC4yNDgsMS4wMi0wLjUxNGMwLjYzNi0wLjUxNiwwLjk1NC0xLjIyOSwwLjk1NC0yLjE0YzAtMC4zNC0wLjA1NC0wLjY3MS0wLjE2MS0wLjk5Ng0KCQkJCWMtMC4xMDYtMC4zMjMtMC4yNjgtMC42MTEtMC40ODMtMC44NjNjLTAuMjE1LTAuMjUyLTAuNDgtMC40NDgtMC43OTctMC41ODljLTAuNDgxLTAuMjA1LTEuMjkxLTAuMzA4LTIuNDMxLTAuMzA4aC0wLjU1OA0KCQkJCVYxMjMuNDIxeiIvPg0KCQk8L2c+DQoJPC9nPg0KCTxnPg0KCQk8Zz4NCgkJCTxwYXRoIGQ9Ik0yMS4xMzEsMTQyLjAxM2wtMS40MDYsMi43MzNjLTAuNzMyLTAuNTk4LTEuNTEyLTAuODk2LTIuMzM4LTAuODk2Yy0wLjM3NSwwLTAuNzE4LDAuMTAzLTEuMDI4LDAuMzA4DQoJCQkJYy0wLjMyMiwwLjE5My0wLjQ4MywwLjQ2OS0wLjQ4MywwLjgyNmMwLDAuMzQ2LDAuMTQ0LDAuNjA5LDAuNDMxLDAuNzkxYzAuMjcsMC4xNzYsMC42NDcsMC4zNDMsMS4xMzQsMC41MDFsMC44OTYsMC4yNzINCgkJCQljMS4wMjUsMC4yOTksMS44NDksMC43MzUsMi40NywxLjMxYzAuNTg2LDAuNTgsMC44NzksMS4zOCwwLjg3OSwyLjM5OWMwLDEuNjQxLTAuNDY5LDIuODU5LTEuNDA2LDMuNjU2DQoJCQkJYy0xLjAwOCwwLjg1LTIuMjkxLDEuMjc0LTMuODUsMS4yNzRjLTEuNjk5LDAtMy4yOS0wLjUxNi00Ljc3Mi0xLjU0N2wxLjUxMi0yLjg0OGMxLjA2MSwwLjkzOCwyLjEwNiwxLjQwNiwzLjEzOCwxLjQwNg0KCQkJCWMwLjQ0NSwwLDAuODQxLTAuMTIsMS4xODctMC4zNnMwLjUxOS0wLjU3NywwLjUxOS0xLjAxMWMwLTAuNDM5LTAuMTktMC43NTYtMC41NzEtMC45NDljLTAuMzU3LTAuMTgyLTAuODc5LTAuMzgxLTEuNTY0LTAuNTk4DQoJCQkJYy0wLjgwOS0wLjIxNy0xLjQ4OC0wLjQ2My0yLjAzOS0wLjczOGMtMC41MjEtMC4yNjQtMC45MjQtMC42MzYtMS4yMDgtMS4xMTZzLTAuNDI2LTEuMTQtMC40MjYtMS45NzgNCgkJCQljMC0wLjkwMiwwLjE5Ni0xLjY5OSwwLjU4OS0yLjM5MWMwLjQxNi0wLjcwMywwLjk3Ni0xLjIzOSwxLjY3OS0xLjYwOGMwLjY4Ni0wLjM2OSwxLjQ4OC0wLjU1NCwyLjQwOC0wLjU1NA0KCQkJCWMwLjY4LDAsMS40MTIsMC4xMDMsMi4xOTcsMC4zMDhDMTkuODM2LDE0MS4zOTcsMjAuNTIyLDE0MS42NjcsMjEuMTMxLDE0Mi4wMTN6Ii8+DQoJCQk8cGF0aCBkPSJNMzAuNzI0LDE0MC44MDljMC45OSwwLDEuOTM0LDAuMTY3LDIuODMsMC41MDFjMC45MTQsMC4zNTIsMS43MTcsMC44MzgsMi40MDgsMS40NTljMC42OCwwLjYwOSwxLjIzMywxLjM1NCwxLjY2MSwyLjIzMg0KCQkJCWMwLjQwNCwwLjgyNiwwLjYwNiwxLjc1NSwwLjYwNiwyLjc4NmMwLDEuMDg0LTAuMTc5LDIuMDgtMC41MzYsMi45ODhjLTAuMzc1LDAuOTI2LTAuOTAyLDEuNzI2LTEuNTgyLDIuMzk5DQoJCQkJYy0wLjM2MywwLjM2My0wLjczOCwwLjY3MS0xLjEyNSwwLjkyM3MtMC44MDYsMC40NjYtMS4yNTcsMC42NDJjLTAuOTA4LDAuMzU3LTEuOTEsMC41MzYtMy4wMDYsMC41MzYNCgkJCQljLTEuMDc4LDAtMi4wNzQtMC4xNzktMi45ODgtMC41MzZjLTAuOTI2LTAuMzYzLTEuNzIzLTAuODg1LTIuMzkxLTEuNTY0Yy0wLjMzNC0wLjMyOC0wLjYyOC0wLjY4NC0wLjg4My0xLjA2OA0KCQkJCXMtMC40ODgtMC44MjgtMC42OTktMS4zMzJjLTAuMzYzLTAuOTItMC41NDUtMS45MTYtMC41NDUtMi45ODhjMC0wLjQ4NiwwLjA1MS0wLjk2NCwwLjE1NC0xLjQzM3MwLjI1Ni0wLjkyLDAuNDYxLTEuMzU0DQoJCQkJYzAuNDM0LTAuODkxLDAuOTg0LTEuNjM1LDEuNjUyLTIuMjMyYzAuNjk3LTAuNjI3LDEuNTA5LTEuMTEzLDIuNDM1LTEuNDU5QzI4Ljc5MywxNDAuOTc2LDI5LjcyOCwxNDAuODA5LDMwLjcyNCwxNDAuODA5eg0KCQkJCSBNMzAuNzI0LDE0NC4yMjhjLTAuNjkxLDAtMS4zMjcsMC4xNjctMS45MDcsMC41MDFjLTAuNjA5LDAuMzUyLTEuMDc4LDAuNzkxLTEuNDA2LDEuMzE4Yy0wLjM0NiwwLjU3NC0wLjUxOSwxLjE2LTAuNTE5LDEuNzU4DQoJCQkJYzAsMC43NDQsMC4xNzMsMS40MzYsMC41MTksMi4wNzRjMC4zNTIsMC42MzksMC44MTQsMS4xMjUsMS4zODksMS40NTljMC42MDQsMC4zNDYsMS4yNDUsMC41MTksMS45MjUsMC41MTkNCgkJCQljMC42OTEsMCwxLjMzMy0wLjE3MywxLjkyNS0wLjUxOWMwLjU3NC0wLjMyOCwxLjAzNy0wLjgxNCwxLjM4OS0xLjQ1OWMwLjM0Ni0wLjYyMSwwLjUxOS0xLjMxMywwLjUxOS0yLjA3NA0KCQkJCWMwLTAuNjE1LTAuMTczLTEuMjAxLTAuNTE5LTEuNzU4Yy0wLjMzNC0wLjUzMy0wLjgwMy0wLjk3My0xLjQwNi0xLjMxOEMzMi4wNTcsMTQ0LjM5NSwzMS40MjEsMTQ0LjIyOCwzMC43MjQsMTQ0LjIyOHoiLz4NCgkJCTxwYXRoIGQ9Ik01MC4xMTcsMTQxLjU4MnY0LjIyOGMtMC4zNDYtMC40NjktMC43OTctMC44NDEtMS4zNTQtMS4xMTZjLTAuNTQ1LTAuMjUyLTEuMTI1LTAuMzc4LTEuNzQtMC4zNzgNCgkJCQljLTAuNzA5LDAtMS4zMzMsMC4xNjctMS44NzIsMC41MDFjLTAuNTYzLDAuMzIyLTAuOTk2LDAuNzczLTEuMzAxLDEuMzU0Yy0wLjI5OSwwLjU1Ny0wLjQ0OCwxLjE5Mi0wLjQ0OCwxLjkwNw0KCQkJCXMwLjE1NSwxLjM1MSwwLjQ2NiwxLjkwN2MwLjMxNiwwLjU4LDAuNzUsMS4wMiwxLjMwMSwxLjMxOGMwLjU3NCwwLjMxMSwxLjIxLDAuNDY2LDEuOTA3LDAuNDY2YzAuNTg2LDAsMS4xNDMtMC4xMjYsMS42Ny0wLjM3OA0KCQkJCWMwLjU0NS0wLjI3NSwxLjAwMi0wLjYzLDEuMzcxLTEuMDYzdjQuMjI4Yy0wLjY4NiwwLjIxMS0xLjI4LDAuMzc1LTEuNzg0LDAuNDkyYy0wLjQzOSwwLjA5NC0wLjg4MiwwLjE0MS0xLjMyNywwLjE0MQ0KCQkJCWMtMC44OTYsMC0xLjgwNS0wLjE3My0yLjcyNS0wLjUxOWMtMC4yODctMC4xMTEtMC41NjQtMC4yNC0wLjgzMS0wLjM4N3MtMC41MjYtMC4zMDgtMC43NzgtMC40ODNzLTAuNTA3LTAuMzc4LTAuNzY1LTAuNjA2DQoJCQkJYy0xLjQ1My0xLjMxMy0yLjE4LTMuMDIzLTIuMTgtNS4xMzNjMC0wLjkyLDAuMTc2LTEuODEzLDAuNTI3LTIuNjgxYzAuMzYzLTAuODk2LDAuODU1LTEuNjU4LDEuNDc3LTIuMjg1DQoJCQkJYzAuNDc1LTAuNDc1LDAuOTc5LTAuODcsMS41MTItMS4xODdjMC41NTctMC4zMjgsMS4xNDgtMC41OCwxLjc3NS0wLjc1NmMwLjY0NS0wLjE3LDEuMjY5LTAuMjU1LDEuODcyLTAuMjU1DQoJCQkJQzQ3Ljk0LDE0MC44OTYsNDkuMDE1LDE0MS4xMjUsNTAuMTE3LDE0MS41ODJ6Ii8+DQoJCQk8cGF0aCBkPSJNNTYuMzYxLDE0MS4yNTd2MTMuNTdoLTMuNTI0di0xMy41N0g1Ni4zNjF6Ii8+DQoJCQk8cGF0aCBkPSJNNjcuNTI3LDE1Mi40NzJoLTQuODZsLTAuOTMyLDIuMzU1aC0zLjc0NGw1LjIyMS0xMy41N2gzLjg1bDUuMTE1LDEzLjU3aC0zLjc2Mkw2Ny41MjcsMTUyLjQ3MnogTTY2LjU3OCwxNDkuNzczDQoJCQkJbC0xLjQ0MS00LjMyNGgtMC4wMzVsLTEuNDU5LDQuMzI0SDY2LjU3OHoiLz4NCgkJCTxwYXRoIGQ9Ik03Ny4zMzEsMTQxLjI1N3YxMC41ODJoNC4yMzZ2Mi45ODhoLTcuNzYxdi0xMy41N0g3Ny4zMzF6Ii8+DQoJCQk8cGF0aCBkPSJNOTcuNjkzLDE0NC4yNDVoLTQuMjAxdjIuMjY4aDMuOTgxdjIuOTg4aC0zLjk4MXYyLjMzOGg0LjIwMXYyLjk4OGgtNy43MjZ2LTEzLjU3aDcuNzI2VjE0NC4yNDV6Ii8+DQoJCQk8cGF0aCBkPSJNMTAwLjQwNCwxNTQuODI3di0xMy41N2gzLjUyNGw2LjQ2OSw4LjI5N2gwLjAzNXYtOC4yOTdoMy41MjR2MTMuNTdoLTMuNTI0bC02LjQ2LTguMzE0aC0wLjA0NHY4LjMxNEgxMDAuNDA0eiIvPg0KCQkJPHBhdGggZD0iTTEyMi4xOTYsMTQ0LjI0NXYxMC41ODJoLTMuNTI0di0xMC41ODJoLTIuOTE4di0yLjk4OGg5LjM2djIuOTg4SDEyMi4xOTZ6Ii8+DQoJCQk8cGF0aCBkPSJNMTMzLjk2LDE0OS4yNjRsNC4yNjMsNS41NjNoLTQuMzk1bC0zLjMyMi01LjIyMWgtMC4wNDR2NS4yMjFoLTMuNTI0di0xMy41N2g1LjI3M2MwLjkzOCwwLDEuNzU1LDAuMTQ5LDIuNDUyLDAuNDQ4DQoJCQkJYzAuNzIxLDAuMzE2LDEuMjcxLDAuNzc5LDEuNjUyLDEuMzg5YzAuNDEsMC42MjEsMC42MTUsMS40LDAuNjE1LDIuMzM4YzAsMC42MzMtMC4xMTQsMS4yMjItMC4zNDMsMS43NjcNCgkJCQljLTAuMjQ2LDAuNTUxLTAuNTgzLDAuOTk5LTEuMDExLDEuMzQ1QzEzNS4xMzgsMTQ4LjksMTM0LjU5OSwxNDkuMTQxLDEzMy45NiwxNDkuMjY0eiBNMTMwLjQ2MiwxNDMuOTU1djMuMzg0aDAuMzQzDQoJCQkJYzAuNDg2LDAsMC44OTYtMC4wNDEsMS4yMy0wLjEyM2MwLjM2My0wLjEwNSwwLjY1Ni0wLjI3NSwwLjg3OS0wLjUxYzAuMjI5LTAuMjM0LDAuMzQzLTAuNTg2LDAuMzQzLTEuMDU1DQoJCQkJYzAtMC40NzUtMC4xMTQtMC44MjktMC4zNDMtMS4wNjNjLTAuMjIzLTAuMjM0LTAuNTE2LTAuNDA0LTAuODc5LTAuNTFjLTAuMzIyLTAuMDgyLTAuNzMyLTAuMTIzLTEuMjMtMC4xMjNIMTMwLjQ2MnoiLz4NCgkJCTxwYXRoIGQ9Ik0xNDcuNDQ2LDE0NC4yNDVoLTQuMjAxdjIuMjY4aDMuOTgxdjIuOTg4aC0zLjk4MXYyLjMzOGg0LjIwMXYyLjk4OGgtNy43MjZ2LTEzLjU3aDcuNzI2VjE0NC4yNDV6Ii8+DQoJCQk8cGF0aCBkPSJNMTUwLjE1NywxNTQuODI3di0xMy41N2g1LjM5NmMwLjk5NiwwLDEuODY2LDAuMTU1LDIuNjEsMC40NjZjMC43MjcsMC4zMTYsMS4yOTgsMC44MTQsMS43MTQsMS40OTQNCgkJCQljMC40MSwwLjY2MiwwLjYxNSwxLjQ5NywwLjYxNSwyLjUwNWMwLDAuNzUtMC4xMDMsMS40MzgtMC4zMDgsMi4wNjVjLTAuMjE3LDAuNTc0LTAuNTMsMS4wNDktMC45NCwxLjQyNA0KCQkJCWMtMC4zOTgsMC4zNjMtMC45MDIsMC42NDUtMS41MTIsMC44NDRjLTAuNTgsMC4xODItMS4yNjMsMC4yNzItMi4wNDgsMC4yNzJoLTIuMDA0djQuNUgxNTAuMTU3eiBNMTUzLjY4MiwxNDQuMDk2djMuMzg0aDAuNTk4DQoJCQkJYzAuNTIxLDAsMC45NzMtMC4wMjksMS4zNTQtMC4wODhjMC4zMjgtMC4wNTMsMC42MDgtMC4xOTUsMC44MzktMC40MjZzMC4zNDctMC42MTEsMC4zNDctMS4xMzhjMC0wLjU0NS0wLjEwOC0wLjkzNS0wLjMyNS0xLjE2OQ0KCQkJCWMtMC4yMjMtMC4yNTgtMC40OTgtMC40MTMtMC44MjYtMC40NjZjLTAuMzU3LTAuMDY0LTAuODItMC4wOTctMS4zODktMC4wOTdIMTUzLjY4MnoiLz4NCgkJCTxwYXRoIGQ9Ik0xNjkuNjIsMTQ5LjI2NGw0LjI2Myw1LjU2M2gtNC4zOTVsLTMuMzIyLTUuMjIxaC0wLjA0NHY1LjIyMWgtMy41MjR2LTEzLjU3aDUuMjczYzAuOTM4LDAsMS43NTUsMC4xNDksMi40NTIsMC40NDgNCgkJCQljMC43MjEsMC4zMTYsMS4yNzEsMC43NzksMS42NTIsMS4zODljMC40MSwwLjYyMSwwLjYxNSwxLjQsMC42MTUsMi4zMzhjMCwwLjYzMy0wLjExNCwxLjIyMi0wLjM0MywxLjc2Nw0KCQkJCWMtMC4yNDYsMC41NTEtMC41ODMsMC45OTktMS4wMTEsMS4zNDVDMTcwLjc5OCwxNDguOSwxNzAuMjU5LDE0OS4xNDEsMTY5LjYyLDE0OS4yNjR6IE0xNjYuMTIyLDE0My45NTV2My4zODRoMC4zNDMNCgkJCQljMC40ODYsMCwwLjg5Ni0wLjA0MSwxLjIzLTAuMTIzYzAuMzYzLTAuMTA1LDAuNjU2LTAuMjc1LDAuODc5LTAuNTFjMC4yMjktMC4yMzQsMC4zNDMtMC41ODYsMC4zNDMtMS4wNTUNCgkJCQljMC0wLjQ3NS0wLjExNC0wLjgyOS0wLjM0My0xLjA2M2MtMC4yMjMtMC4yMzQtMC41MTYtMC40MDQtMC44NzktMC41MWMtMC4zMjItMC4wODItMC43MzItMC4xMjMtMS4yMy0wLjEyM0gxNjYuMTIyeiIvPg0KCQkJPHBhdGggZD0iTTE4My4xMDUsMTQ0LjI0NWgtNC4yMDF2Mi4yNjhoMy45ODJ2Mi45ODhoLTMuOTgydjIuMzM4aDQuMjAxdjIuOTg4aC03LjcyNXYtMTMuNTdoNy43MjVWMTQ0LjI0NXoiLz4NCgkJCTxwYXRoIGQ9Ik0xODUuODE2LDE1NC44Mjd2LTEzLjU3aDMuNTI1bDYuNDY5LDguMjk3aDAuMDM1di04LjI5N2gzLjUyM3YxMy41N2gtMy41MjNsLTYuNDYxLTguMzE0aC0wLjA0M3Y4LjMxNEgxODUuODE2eiIvPg0KCQkJPHBhdGggZD0iTTIwOS45MzgsMTQ0LjI0NWgtNC4yMDF2Mi4yNjhoMy45ODJ2Mi45ODhoLTMuOTgydjIuMzM4aDQuMjAxdjIuOTg4aC03LjcyNXYtMTMuNTdoNy43MjVWMTQ0LjI0NXoiLz4NCgkJCTxwYXRoIGQ9Ik0yMjAuODkzLDE0MS4yNTdoMy41MjV2Ny42MjljMCwwLjM1Mi0wLjAwNiwwLjY2Mi0wLjAxOCwwLjkzMnMtMC4wMzUsMC41NzctMC4wNywwLjkyMw0KCQkJCWMtMC4wNTksMC41NTEtMC4xOTEsMS4wNzItMC4zOTYsMS41NjRjLTAuMTgyLDAuNDc1LTAuNDkyLDAuOTMyLTAuOTMyLDEuMzcxYy0wLjM3NSwwLjM1Ny0wLjgwOSwwLjY1LTEuMzAxLDAuODc5DQoJCQkJYy0wLjQ5MiwwLjIyMy0xLjAwOCwwLjM4MS0xLjU0NywwLjQ3NWMtMC41NTEsMC4xMDUtMS4xMDIsMC4xNTgtMS42NTIsMC4xNThjLTAuODUsMC0xLjY4NC0wLjEyLTIuNTA0LTAuMzYNCgkJCQljLTAuNDA0LTAuMTIzLTAuNzY4LTAuMjc4LTEuMDktMC40NjZzLTAuNjI1LTAuNDE2LTAuOTA2LTAuNjg2Yy0wLjQzOS0wLjQzOS0wLjc1Mi0wLjg5Ni0wLjkzOS0xLjM3MQ0KCQkJCWMtMC4yMTEtMC40OTgtMC4zNDQtMS4wMTQtMC4zOTYtMS41NDdjLTAuMDU5LTAuNTk4LTAuMDg4LTEuMjIyLTAuMDg4LTEuODcydi03LjYyOWgzLjUyNXY3LjE0NmMwLDAuNzI3LDAuMDQ5LDEuMzU2LDAuMTQ4LDEuODkNCgkJCQljMC4wODIsMC40OCwwLjMwMywwLjkwNSwwLjY2LDEuMjc0YzAuMzUyLDAuMzUyLDAuODgxLDAuNTI3LDEuNTksMC41MjdjMC43MDMsMCwxLjIzLTAuMTc2LDEuNTgyLTAuNTI3czAuNTc0LTAuNzc2LDAuNjY4LTEuMjc0DQoJCQkJYzAuMDk0LTAuNTUxLDAuMTQxLTEuMTgxLDAuMTQxLTEuODlWMTQxLjI1N3oiLz4NCgkJCTxwYXRoIGQ9Ik0yMzQuMjEzLDE0OS4yNjRsNC4yNjIsNS41NjNoLTQuMzk1bC0zLjMyMi01LjIyMWgtMC4wNDN2NS4yMjFoLTMuNTI1di0xMy41N2g1LjI3M2MwLjkzOCwwLDEuNzU2LDAuMTQ5LDIuNDUzLDAuNDQ4DQoJCQkJYzAuNzIxLDAuMzE2LDEuMjcxLDAuNzc5LDEuNjUyLDEuMzg5YzAuNDEsMC42MjEsMC42MTUsMS40LDAuNjE1LDIuMzM4YzAsMC42MzMtMC4xMTUsMS4yMjItMC4zNDQsMS43NjcNCgkJCQljLTAuMjQ2LDAuNTUxLTAuNTgyLDAuOTk5LTEuMDEsMS4zNDVDMjM1LjM5MSwxNDguOSwyMzQuODUyLDE0OS4xNDEsMjM0LjIxMywxNDkuMjY0eiBNMjMwLjcxNSwxNDMuOTU1djMuMzg0aDAuMzQyDQoJCQkJYzAuNDg2LDAsMC44OTYtMC4wNDEsMS4yMy0wLjEyM2MwLjM2My0wLjEwNSwwLjY1Ni0wLjI3NSwwLjg3OS0wLjUxYzAuMjI5LTAuMjM0LDAuMzQ0LTAuNTg2LDAuMzQ0LTEuMDU1DQoJCQkJYzAtMC40NzUtMC4xMTUtMC44MjktMC4zNDQtMS4wNjNjLTAuMjIzLTAuMjM0LTAuNTE2LTAuNDA0LTAuODc5LTAuNTFjLTAuMzIyLTAuMDgyLTAuNzMyLTAuMTIzLTEuMjMtMC4xMjNIMjMwLjcxNXoiLz4NCgkJCTxwYXRoIGQ9Ik0yNDguODMyLDE0Mi4wMTNsLTEuNDA2LDIuNzMzYy0wLjczMi0wLjU5OC0xLjUxMi0wLjg5Ni0yLjMzOC0wLjg5NmMtMC4zNzUsMC0wLjcxNywwLjEwMy0xLjAyNywwLjMwOA0KCQkJCWMtMC4zMjIsMC4xOTMtMC40ODQsMC40NjktMC40ODQsMC44MjZjMCwwLjM0NiwwLjE0NSwwLjYwOSwwLjQzMiwwLjc5MWMwLjI3LDAuMTc2LDAuNjQ2LDAuMzQzLDEuMTMzLDAuNTAxbDAuODk2LDAuMjcyDQoJCQkJYzEuMDI1LDAuMjk5LDEuODUsMC43MzUsMi40NzEsMS4zMWMwLjU4NiwwLjU4LDAuODc5LDEuMzgsMC44NzksMi4zOTljMCwxLjY0MS0wLjQ2OSwyLjg1OS0xLjQwNiwzLjY1Ng0KCQkJCWMtMS4wMDgsMC44NS0yLjI5MSwxLjI3NC0zLjg1LDEuMjc0Yy0xLjY5OSwwLTMuMjkxLTAuNTE2LTQuNzczLTEuNTQ3bDEuNTEyLTIuODQ4YzEuMDYxLDAuOTM4LDIuMTA3LDEuNDA2LDMuMTM5LDEuNDA2DQoJCQkJYzAuNDQ1LDAsMC44NC0wLjEyLDEuMTg2LTAuMzZzMC41Mi0wLjU3NywwLjUyLTEuMDExYzAtMC40MzktMC4xOTEtMC43NTYtMC41NzItMC45NDljLTAuMzU3LTAuMTgyLTAuODc5LTAuMzgxLTEuNTY0LTAuNTk4DQoJCQkJYy0wLjgwOS0wLjIxNy0xLjQ4OC0wLjQ2My0yLjAzOS0wLjczOGMtMC41MjEtMC4yNjQtMC45MjQtMC42MzYtMS4yMDctMS4xMTZjLTAuMjg1LTAuNDgtMC40MjgtMS4xNC0wLjQyOC0xLjk3OA0KCQkJCWMwLTAuOTAyLDAuMTk3LTEuNjk5LDAuNTktMi4zOTFjMC40MTYtMC43MDMsMC45NzUtMS4yMzksMS42NzgtMS42MDhjMC42ODYtMC4zNjksMS40ODgtMC41NTQsMi40MDgtMC41NTQNCgkJCQljMC42OCwwLDEuNDEyLDAuMTAzLDIuMTk3LDAuMzA4QzI0Ny41MzcsMTQxLjM5NywyNDguMjIzLDE0MS42NjcsMjQ4LjgzMiwxNDIuMDEzeiIvPg0KCQkJPHBhdGggZD0iTTI1NS4xMjksMTQ2LjQ5NWg1LjA5OHYtNS4yMzhoMy41MjV2MTMuNTdoLTMuNTI1di01LjU2M2gtNS4wOTh2NS41NjNoLTMuNTIzdi0xMy41N2gzLjUyM1YxNDYuNDk1eiIvPg0KCQkJPHBhdGggZD0iTTI3MC4xMjcsMTQxLjI1N3YxMy41N2gtMy41MjN2LTEzLjU3SDI3MC4xMjd6Ii8+DQoJCQk8cGF0aCBkPSJNMjcyLjk3OSwxNTQuODI3di0xMy41N2g1LjM5NmMwLjk5NiwwLDEuODY3LDAuMTU1LDIuNjExLDAuNDY2YzAuNzI3LDAuMzE2LDEuMjk3LDAuODE0LDEuNzEzLDEuNDk0DQoJCQkJYzAuNDEsMC42NjIsMC42MTUsMS40OTcsMC42MTUsMi41MDVjMCwwLjc1LTAuMTAyLDEuNDM4LTAuMzA3LDIuMDY1Yy0wLjIxNywwLjU3NC0wLjUzMSwxLjA0OS0wLjk0MSwxLjQyNA0KCQkJCWMtMC4zOTgsMC4zNjMtMC45MDIsMC42NDUtMS41MTIsMC44NDRjLTAuNTgsMC4xODItMS4yNjIsMC4yNzItMi4wNDcsMC4yNzJoLTIuMDA0djQuNUgyNzIuOTc5eiBNMjc2LjUwNCwxNDQuMDk2djMuMzg0aDAuNTk4DQoJCQkJYzAuNTIxLDAsMC45NzMtMC4wMjksMS4zNTQtMC4wODhjMC4zMjgtMC4wNTMsMC42MDctMC4xOTUsMC44NC0wLjQyNmMwLjIzLTAuMjMxLDAuMzQ2LTAuNjExLDAuMzQ2LTEuMTM4DQoJCQkJYzAtMC41NDUtMC4xMDctMC45MzUtMC4zMjQtMS4xNjljLTAuMjIzLTAuMjU4LTAuNDk4LTAuNDEzLTAuODI2LTAuNDY2Yy0wLjM1Ny0wLjA2NC0wLjgyLTAuMDk3LTEuMzg5LTAuMDk3SDI3Ni41MDR6Ii8+DQoJCTwvZz4NCgk8L2c+DQo8L2c+DQo8L3N2Zz4NCg==);
  /*background-image: url('logo.svg');*/
  background-size: 100% 100%;
}
.inlinesvg #logo img {
  opacity: 0;
}
@media (max-width: 47.8125em) {
  #logo {
    width: 24.994%;
    padding: 0.5em 0;
  }
}
@media (max-width: 32.1875em) {
  #logo {
    margin: 0 auto;
    float: none;
    clear: both;
    display: block;
    width: 50%;
  }
}

@media (max-width: 47.8125em) {
  #header {
    width: 74.994%;
    float: right;
    margin-right: 0;
  }
  [dir="rtl"] #header {
    float: left;
    margin-left: 0;
  }
  #header .mission-statement {
    margin-top: 0.5em;
  }
}
@media (max-width: 32.1875em) {
  #header {
    float: none;
    width: auto;
    margin: 0 0.5em;
  }
}

.mission-statement {
  line-height: 20px;
  margin-top: 38px;
  max-width: 520px;
}
.ie8 .mission-statement {
  max-width: 770px;
}

h1#page-title {
  border: 1px #dddddd solid;
  font-size: 40px;
  letter-spacing: -2px;
  line-height: 1;
  min-height: 55px;
  padding: 4px;
  text-transform: none;
}
@media (max-width: 34.375em) {
  h1#page-title {
    font-size: 54px;
    min-height: 66px;
    padding-bottom: 6px !important;
  }
}

h1#page-title {
/*  background-color: #00529b;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#002b5b', endColorstr='#2989d8',GradientType=0 );
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(15%, #002b5b), color-stop(85%, #00529b));
  background-image: -webkit-linear-gradient(top, #002b5b 15%, #00529b 85%);
  background-image: -moz-linear-gradient(top, #002b5b 15%, #00529b 85%);
  background-image: -o-linear-gradient(top, #002b5b 15%, #00529b 85%);
  background-image: -ms-linear-gradient(top, #002b5b 15%, #00529b 85%);
  background-image: linear-gradient(top, #002b5b 15%, #00529b 85%);
  border-top: 4px solid #00529b;
  border-right: 4px solid #00529b;
  border-left: 4px solid #00529b;*/
  background-color: white;
  color: #ffcc00;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#dddddd', endColorstr='#ffffff',GradientType=0 );
  background-image: -webkit-linear-gradient(top, #dddddd 15%, #ffffff 85%);
  background-image: -moz-linear-gradient(top, #dddddd 15%, #ffffff 85%);
  background-image: -o-linear-gradient(top, #dddddd 15%, #ffffff 85%);
  background-image: -ms-linear-gradient(top, #dddddd 15%, #ffffff 85%);
  background-image: linear-gradient(top, #dddddd 15%, #ffffff 85%);
  border-right: 0;
  border-left: 0;
  padding: 6px 0 0 6px;
  position: relative;
  z-index: 1;
}
h1#page-title a,
h1#page-title a:visited {
  color: #00529b;
/*  color: white;*/
}

.global-hub h1#page-title {
  background-color: white;
  color: #00529b;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#dddddd', endColorstr='#ffffff',GradientType=0 );
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(15%, #dddddd), color-stop(85%, #ffffff));
  background-image: -webkit-linear-gradient(top, #dddddd 15%, #ffffff 85%);
  background-image: -moz-linear-gradient(top, #dddddd 15%, #ffffff 85%);
  background-image: -o-linear-gradient(top, #dddddd 15%, #ffffff 85%);
  background-image: -ms-linear-gradient(top, #dddddd 15%, #ffffff 85%);
  background-image: linear-gradient(top, #dddddd 15%, #ffffff 85%);
  border-right: 0;
  border-left: 0;
  padding: 6px 0 0 6px;
  position: relative;
  z-index: 1;
}
h1#page-title:before {
  content: "";
  border-top: 3px solid white;
  border-right: 3px solid white;
  border-left: 3px solid white;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  position: absolute;
  z-index: -1;
}
.global-hub h1#page-title a {
  color: #00529b;
}
.global-hub h1#page-title a:visited {
  color: #00529b;
}
[lang="ar"] h1#page-title {
  padding-bottom: 30px;
}

#main-menu {
  overflow: hidden;
  *zoom: 1;
  margin: 0;
  width: 100%;
}
#main-menu li {
  padding: 0;
}
#main-menu li:nth-of-type(1) {
  width: 20%;
  float: left;
  margin-right: 0%;
}
[dir="rtl"] #main-menu li:nth-of-type(1) {
  float: right;
  margin-right: 0;
  margin-left: 0%;
}
#main-menu li:nth-of-type(2) {
  width: 35%;
  float: left;
  margin-right: 0%;
}
[dir="rtl"] #main-menu li:nth-of-type(2) {
  float: right;
  margin-right: 0;
  margin-left: 0%;
}
#main-menu li:nth-of-type(3) {
  width: 15%;
  float: left;
  margin-right: 0%;
}
[dir="rtl"] #main-menu li:nth-of-type(3) {
  float: right;
  margin-right: 0;
  margin-left: 0%;
}
#main-menu li:nth-of-type(4) {
  width: 15%;
  float: left;
  margin-right: 0%;
}
[dir="rtl"] #main-menu li:nth-of-type(4) {
  float: right;
  margin-right: 0;
  margin-left: 0%;
}
#main-menu li:nth-of-type(5) {
  width: 15%;
  float: right;
  margin-right: 0;
}
[dir="rtl"] #main-menu li:nth-of-type(5) {
  float: left;
  margin-left: 0;
}
#main-menu li.first.last {
  width: auto;
}
#main-menu li.first.last a {
  padding-right: 0.5em;
}
[dir="rtl"] #main-menu li.first.last a {
  padding: 8px 40px 0 0.5em;
}
#main-menu a {
  -moz-border-radius-topleft: 5px;
  -webkit-border-top-left-radius: 5px;
  border-top-left-radius: 5px;
  -moz-border-radius-topright: 5px;
  -webkit-border-top-right-radius: 5px;
  border-top-right-radius: 5px;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f0f0f0',GradientType=0 );
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(100%, #f0f0f0));
  background-image: -webkit-linear-gradient(top, #ffffff, #f0f0f0);
  background-image: -moz-linear-gradient(top, #ffffff, #f0f0f0);
  background-image: -o-linear-gradient(top, #ffffff, #f0f0f0);
  background-image: -ms-linear-gradient(top, #ffffff, #f0f0f0);
  background-image: linear-gradient(top, #ffffff, #f0f0f0);
  border-right: 1px solid #dddddd;
  border-bottom: none;
  border-left: 1px solid #dddddd;
  color: #002b5b;
  height: 40px;
  padding: 8px 0 0 0.5em;
  position: relative;
  width: 100%;
  z-index: 1;
}
.ie8 #main-menu a {
  padding-left: 10px;
  width: 192px;
}
[dir="rtl"].ie8 #main-menu a {
  padding-right: 40px;
}
.ie7 #main-menu a {
  width: 162px;
}
[dir="rtl"].ie7 #main-menu a {
  width: 154px;
}
[dir="rtl"] #main-menu a {
  padding: 8px 8px 0 0;
}
#main-menu a:before {
  -moz-border-radius-topleft: 5px;
  -webkit-border-top-left-radius: 5px;
  border-top-left-radius: 5px;
  -moz-border-radius-topright: 5px;
  -webkit-border-top-right-radius: 5px;
  border-top-right-radius: 5px;
  border-top: 3px solid white;
  border-right: 3px solid white;
  border-left: 3px solid white;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  position: absolute;
  z-index: -1;
}
#main-menu a.active,
#main-menu a:hover {
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#d2d2d2', endColorstr='#dddddd',GradientType=0 );
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #d2d2d2), color-stop(15%, #dddddd));
  background-image: -webkit-linear-gradient(top, #d2d2d2, #dddddd 15%);
  background-image: -moz-linear-gradient(top, #d2d2d2, #dddddd 15%);
  background-image: -o-linear-gradient(top, #d2d2d2, #dddddd 15%);
  background-image: -ms-linear-gradient(top, #d2d2d2, #dddddd 15%);
  background-image: linear-gradient(top, #d2d2d2, #dddddd 15%);
}

@media (min-width: 57em) {
  #main-menu a {
    padding-left: 40px;
  }
  [dir="rtl"] #main-menu a {
    padding-left: 0;
    padding-right: 40px;
  }
  #main-menu li a {
    line-height: 1.7;
  }
  #main-menu li a:before {
    padding: 3px 0 0 3px;
  }
  #main-menu li.first a:before {
    content: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAYAAAA7MK6iAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo4N0I5REJBQkI3MDYxMUUxOUM4Q0M4NTlFMjI2NThCMiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo4N0I5REJBQ0I3MDYxMUUxOUM4Q0M4NTlFMjI2NThCMiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjg3QjlEQkE5QjcwNjExRTE5QzhDQzg1OUUyMjY1OEIyIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjg3QjlEQkFBQjcwNjExRTE5QzhDQzg1OUUyMjY1OEIyIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+wROiLwAABR1JREFUeNrMl3tQVHUUx89edpcFXFaehiCJQSNKappQzpAEmErgjGuvHbKmpsdMMzE+QCMTdKbxlY+GP5paC8Sa2WoMDMjYeJlWgoxmqECBUjzkJcIC+37czrm1G7D3rpqNdWYW7v5+3/P7/F73nLMilmXhvzDRLamUagX+zVD4SteIRLBUb7KFWe0Ob+qSeDFmP5m4F+ffqDNYyrCpHEpe1d0ZWKmOkvtIdhgtdlVcZIBt3cNRPgkxoRAd5g8BfhwXhvVmaO8dhYa2ASip7zBe7BwW+0i9NGNG6w6cQMftgZVqL19vcb7V5nhTlXgfk6tc5DU3fPotbU5rzwjsLrlg15y+4pCImT0Gs20nTsB+c7BSHeDvI9WGKmQLPt+c4r14TvA/OsPzV6/DMwdqzAM6U9Oo0bIS4cPCYKU6BLe24bG4mbM0G5PFuOo7ukC4WlAdqrXVXbrWhVufgPBBd7BSLUXo2ZQHwucdy0nFOyP6V26v3cHCk+9WW2su9jQjPB7hFmp3LQlXt392qDxWsylZEHq2bRAOV7dCdVMPdA/pubaIID9IXRAOr6TOhfiYEDcfGovGjN96PPZK3+h+A0DWxC1eKHnqI2tz1zDLZ3qTlX2+oI6VZxaxW442sD+09rH9IwbuQ8/U5p95hNOQls9obGIQy8VVPHekKuvjHx18DkaLjV2W+xWbtL2c7Rs2uNpH9OZJEOojDWnJh8+IQSznaiOZdYft3UPjvOLX1d+zj+BgpgmD0XPitjJ2zW4ta7M7JrUTmHz4jBjE4piMSPQ03mJbeKCf2/m0941CUe2vUPzGcvCWeLkuS+Z7ddz/3wbG4OX3T4Ez6pKmOCuJ8yHfqUYMYhGTUfhJM9IfipTyXSbN6XZYvTgCYsIUrraNRWfgctcwlOU+DpXbV8Op5l7IOdrg6o++x5/zIV8+IxYxGYxO8x6MCuIVncMggDN0fd9TegG+rO/ggEFyGYQF+II2Lw0++a4NDpQ1uXTJceGcL58Ri5iM3mwNjAyZxiu6PmqCUIUP9/zLNR3kac7BiW2r4N4JelqhFieS+2kjpyELUcg4Xz4jFjEZPB/GGfCnWrC/DAZ1fw5gxChEkWzhbPfdWYSroD7SkJEP+fIZsYiJ5wwOyjB8tgTjdO2lntuOVuSzRCDGE4uYYj9vyY3OwfHgqFC5m0iVGI2Z5mfXDR03WSEpr4J3QOpzvgnfnO+GvesTeHXIAmKKMXU1/9Qx9Ojy+WFuIjq/F5PvhxcKTkLp1hWAMVxwlRvS42BmoC+s3VvF+ZAvnyELiAn4Qmen5H9tZgXMGbkydlWyZqtdSMb1kcZT5CIjFjEZjDtfYNoS99zQ885QhkHhxNurAPMqpL1TyaU6vvRHfaQhreyvYDPViEEsYjKYpjoxHdbuO94kWPVhrQW1O58AdID0XVp8Hf6G0zO1UR9pSCtkxCAWMRlqwCIt+wNts72le0TQiV6XirdWgthLBMn5FeTDfeiZ2qjPU+FAYxODWJMKAV9VYcGcGfLXGvetlQptFZnF5sDEXgX9OiP3fQYGmGM5K0AqZgR9TFY7LN1SarnaP/ahQfMSl4+ZCeeU/fvgeIvqYK2VEoCQEYBAkcHTuM/NoDQWjUljE8NjzZU0P2zWZ5tSPNZczsl5KpHo0j17sMZ28nKvh5rrLleZ7ofZUm4yx6QV4rmI1d+2LqNIFBsxnRGKvXx19ebievuGwjN2g8W2FyPaeoQa/ue/JO7Cb6c/BBgAk0LWYYU+SZsAAAAASUVORK5CYII=');
  }
  .ie8 #main-menu li.first a:before, .ie7 #main-menu li.first a:before, .ie6 #main-menu li.first a:before {
    content: url('../images/icons/icon-lg-global_home.png');
  }
  #main-menu li:nth-of-type(3) a:before {
    content: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAYAAAA7MK6iAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo4N0I5REJBRkI3MDYxMUUxOUM4Q0M4NTlFMjI2NThCMiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo4N0I5REJCMEI3MDYxMUUxOUM4Q0M4NTlFMjI2NThCMiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjg3QjlEQkFEQjcwNjExRTE5QzhDQzg1OUUyMjY1OEIyIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjg3QjlEQkFFQjcwNjExRTE5QzhDQzg1OUUyMjY1OEIyIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+DhRNSQAABA1JREFUeNrMV1tsTFEU3XM7d/oYfdFWJajWeyRKEyKpV4hXIsTQIEXwQTT9lJQP8SGe8UnJaEYFSQUVQqQtoq0mhLQq0aKUItFqtdV2WjN35h5nHQbtnDFTJbU+5uacu/de95y9z9pnDIwxGgwY8WMwGAJbWm3jjSHKmqhwdbnLrU90OLVY/s0Kd9XNoWqbyag87+jRrrs9+iUq3FYXKJwBK/4tsdU2J8ZsOur44k5bMSOJLZk2Uk1LiaPR8UNIDVFI8+j0trmLKutbqOjxe+3awwaDOcxY2e5w7eQfUN5/YqstMjJctXt0tnJPxnR1xxILRUeYAm7M524XnSiqoX0Xq7QQxXC1s0fbyj+gMzhiq22sOdR4d45lREJ+9jzT8Jjwfuewqb2HNh8rdZXXfPjocLrnc/JXvQx8iouTRqy3t+ecfaDrOhsQ4I84iIe4/on59prX29/BmP1FIB7iIn6vqvYCOU2flJhwMHOmtNp4xdLpOy/oQkU9Vb5uobYuJ8UOCaW05Dham55CWxZMIF75Pn6IV/2mNaHiWaOdJzujd4559UaEGm/X565TZTmted9G1sMlFGYyUvYyC82bMoLio8KpuaOHymoa6fjNp9TtdFNhziKyjIyV5jwlq0DjNgtFtXu3OmZj/oODhVXSrXr6rpVFb8hn+y9VMY+fxGP+wOUqYQd7GRAfPD9zzMVBzcjT2h1OH2PN7WETsy8IUi/4FrO8W8/Y3oJH4omxFyCHPfz6AvHBAz6RECgSxEF2TpFTbO8ua6oY36ttpLFZBXS+7CVxkRBPjDEP5KxKJZ4y4dcXiA8e8IkVD910psJWXCvdnoV7b7BTJbU/Vsptmf328142GGPeu3LsAvxkAA/4xIqhvZBBGVC9KCTg8v3XlDpmmKjeX4Ex5vEemGtJFH4ygAd8ghiCD+2VAUcG1Qs0cE2emjRUaod5vAdgDz9d0vnAAz7lW4GRokrOH4BziiMDJHGnJw2tUjvMJ33/eNjDT5H0APCAT/nWFklHl5FuDRcHnFNg9axkqn7zyadwMMY83gOwh58M4AGfUC70U97ahsVHhfkYQpEgDsgjb490dddiWnmomM6W1ontxUpBinm8x/bCHt1MBrRQ8IkVo4mjn8oAQijS4SvVYjx7ciK9yl1HmXPHURQ/HnhijHkAdrDvW4A/ipXzgE8cJ2NG3u7VR0pc/kQeSsQVh50rrfttM8B72PlTLgA84AuoXF7cf9HEYvlZ9UeOebyHnT/8qlxBaXUg8mBI5Vr9/W7FG7arsa27X+TBkiIu4oPH5yIQmXn64tJ9N52Bbh5e8u0ny4MiRTzERfwB30BANmrb+YCk/m4gA7pzOTXPH9+5Bu2W+Z/dqwf1n8Q//u/0VYABAGnPFFXUZt5zAAAAAElFTkSuQmCC');
  }
  .ie8 #main-menu li:nth-of-type(3) a:before, .ie7 #main-menu li:nth-of-type(3) a:before, .ie6 #main-menu li:nth-of-type(3) a:before {
    content: url('../images/icons/icon-lg-hubs.png');
  }
  #main-menu li:nth-of-type(2) a:before {
    content: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAYAAAA7MK6iAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpGRkIxODFDRUI3MDYxMUUxOUM4Q0M4NTlFMjI2NThCMiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpGRkIxODFDRkI3MDYxMUUxOUM4Q0M4NTlFMjI2NThCMiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkZGQjE4MUNDQjcwNjExRTE5QzhDQzg1OUUyMjY1OEIyIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkZGQjE4MUNEQjcwNjExRTE5QzhDQzg1OUUyMjY1OEIyIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+mmzPSwAAA8VJREFUeNrMV1tIVFEU3fc64+RMlpWvgbCHRjD9mFRYMSlRBNELrcCi6E2CfUjRgwgiPyQI+ugFU6iQUVZI7zL96EHPobE+TKMHqUWlkVPjNM7zdtaRyZnrzL1axrQ+5rD33Xutc889Z589giRJFAto8CMIgnpkgWWSJk5cPiJBu8jjC0x2ur2j2JxFlhow6LRd8Rrx1Q+X95rPH7hItVteq9EJeGNF4QKLOckQf8jZ48tZMn2ctCB7rDZnYjJlpAwnbZxIXn+A2jq7yfbuK9U9/+C9Ym0VDMM0NrvTs4NN4P7ghQssiYkJ2gp/QFq6b8VUbfECE43Ux6suzPefHjpR95LKLjR640ThssPl3cAm4BiYcIEl06DT3DGbjKlVJXnxaUkJg/6GX+wuWnf0ruf+y08dTrcvn4m/DQvot7mYqL6owr7r9JNAICD9FZAPHvCBN7owW15DUUU7gqUhBPjAC/6glBg6CXxTLG/56hmK2/xUQwtNKD5HQuFJPsJWAvjAC/7+b8x2L1sSz+eun4qzP1nfLBk3VkvXn7VJXd1uPsKGXwngBT90woST1lQ9Ka9tVF228VvPcrFQwIZfDeCHTt9Ss+KAc4ojowT24el9h4NmTU4L88OGXw3ghw70uDAqEoqD2jlFmRqfmkgPX30J88OGXw3ghw70uDDKICrSQM7n3sJs2nT8Ht2wtROrTnyEDf9AAB3o8VqN2osyqIZv3W766ughvU5Di8vriJ1TEkWBJrC3hR/PRw/XKXJAB3pcGAUftVcJKIOllY9pWmYylRVNo+lZKVwEYtY3nXTsZhPtr7HR4fW5pLRXoAM9sXdnk4iCHw2llY/owPlG2rZwCr397KD8KUbKSh/BhTHChh/PEYf4aIAO9PhxEgot/o7vrohH4PitJil9Q7XU2ung9uYT96Tc3Zckt9fPbYyw4QcQh3jkRQJ0oMdfE/cprrZI33RPtZVqts+ljOTeT3F002w+lpx6EDYG/YhDPPKQLwd0oMeFcYnjPpXDUt9MZlM6zTEZf/tYLNXunE9XrW207OBtPsKGPwjEIw/5ckAHejwanQMucXnQFUa6ypzVL9k4Ss/E5lHDi498hC0H8pAvB3Sgx4XRrqBzwCUeipaPdr57I2Emq1YtR1byMRKQh3x5kwAd6PWuD+uR0K7gyIRibd4kGjvGEHWHqj1DvvxIQof3ZIO9nf4U8tupb0ewxgw9EtqVoe54wQde8AcbwLCqgcYMPdKeM0+HVBp84OWNX6x7rph1mf9ZXx3TfxL/+L/TLwEGAI3rZgSTf0qSAAAAAElFTkSuQmCC');
  }
  .ie8 #main-menu li:nth-of-type(2) a:before, .ie7 #main-menu li:nth-of-type(2) a:before, .ie6 #main-menu li:nth-of-type(2) a:before {
    content: url('../images/icons/icon-lg-shapers.png');
  }
  #main-menu li:nth-of-type(4) a:before {
    content: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAYAAAA7MK6iAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo0RUE2NDg3OUI3MDcxMUUxQkEwRUMwQUZCNDcwMTVDOSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo0RUE2NDg3QUI3MDcxMUUxQkEwRUMwQUZCNDcwMTVDOSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjRFQTY0ODc3QjcwNzExRTFCQTBFQzBBRkI0NzAxNUM5IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjRFQTY0ODc4QjcwNzExRTFCQTBFQzBBRkI0NzAxNUM5Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+bzFeKQAABJFJREFUeNrMV11sFFUUPjPbme1ud0tR0mhJQEJq/SExtIW2EfmRiC8SQooJKA+GF436oLGJD23Uoo08oDFGjWLS8KCRKMT490BMwVIIVhR8UHDbkAgqsEv/6Ozf7HTmer7bdu12987WB4PnYSf33nPPN/eeb875VhNC0M2wCvxomlbW8VrnvfWkB3bowcgjwnUahJNZTELovNnTjNC4FjBinp38mjz38G09vw6Xi6fhxH7ADPiAVhndz0CNwbs2iWD9/UZF3T0UWHQ7aYEKEu4UuTeu0tSV82QPn3Ls345r/CJnRdbq4BcY+NfADBjVglW9fIJtVZueMsJrd5JWGSl7MyKbpPQPhyh1/H2Hb+gLYaf28AtYxY4lcsygK+PdzX+MHXzSdq0RoTKr713lGvZhP+IgXllgCfpK05h19E1PeJ7wM/b1Xcd+xOF4E/PB9aLrNUPfhdser4lseV6jMqQLt+0uwyCNEIfjVSMu4hewOu/HOTWWra6NPPRcAWLy2Htk1N1NTC7KDZ+i9OAn5Fw6S15mkrI/f0nG8kYKt+wks34dMbnIuXKBIg8+nd+PeM7VWK1z+VwvDx8tIJdkr1HZt+SFo4YeubXgxWWwP38hd/wvyl38nqrWPUFmwwYKRJcQ55JysX5KnTxI5spW0iO3kLlijXzJueYlR2nkjYcd4WQ3S7bP5jj+autgsv9DZbomPn1RjH7wmHBT46XJxPOjB3ZLP5UhPnDy5EJxuPbSfY6XsUpusIdOisTrG/Kg6TOHxfX9WyS58MR4Fhx+9tBAaa5xfOAAbzrHXJFQHFTfKXKK69XDNZT58Qgl+96h6u3dZC5bTbnL52jy85elX6i5XfqlBw/JfBdxjeMDx75wbIdkNcogKpKKnCAScgpL9R+QoME713OgqHxijHkY/OCvMuAATwKj9qIMzmdyvGsVWd/sk+wFkUh4kjTmipYCX4xnyQQ/+M/dX9AcGAd40znuWuW6yTElKeLda8TUyO9iIQY/+CsrGuMAT59hmI6CrzLzjiayYycW1O7gh+9aWVOAw3j6TIXx0GVUFmrZRamBXnmFfoZ1+IVbd6mbCHAYTwKjn6K1KQnRsF4WhYmPnlGCYx7rsnjMELGUAQd408DcxNFP/ay6vYcCNXU0+vY24upTeAoeYx7r8PMz4ABPAkM5oIn71vuAQdVbu8izrlOiu1kyNs9a15HzWIefLwcYB3jTjGK5wvV4L5r4Qpp9bddp+Q3/0/ytBREP8aFQgCdPDI0EuQLl4GsBUz4Sr7UVnnjeusoQHzjAq5jz1h0sV/pCjduLulP+uo0gBRYvpejWTlmx8tc3dELOY13JeO5OkEPMh44iBRLfu/YzyBU/5YGGkNi3UWRj/Vz0J+UT49lGoVIiUgZx/JJCAMLMufTT+eS3by2VCqTUN82NAGZ91SP7M04a2fxsfr6UcTzBcRMil9mjVJnQRiwIzkj5AyXiJ3+4dpOm+6wLCZo+/fEkX3ET5/air7yV4KyRjOVNtYvae0xVzn2rGOf0xpHO3MxJN84Fvam6+v/3T+K//u/0twADAGpSVaIcON+wAAAAAElFTkSuQmCC');
  }
  .ie8 #main-menu li:nth-of-type(4) a:before, .ie7 #main-menu li:nth-of-type(4) a:before, .ie6 #main-menu li:nth-of-type(4) a:before {
    content: url('../images/icons/icon-lg-projects.png');
  }
  #main-menu li:nth-of-type(5) a:before {
    content: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAYAAAA7MK6iAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo4N0I5REJBN0I3MDYxMUUxOUM4Q0M4NTlFMjI2NThCMiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo4N0I5REJBOEI3MDYxMUUxOUM4Q0M4NTlFMjI2NThCMiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjE0NjM1QTNFQjZGNjExRTE5QzhDQzg1OUUyMjY1OEIyIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjg3QjlEQkE2QjcwNjExRTE5QzhDQzg1OUUyMjY1OEIyIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+ZmFTbgAAAxNJREFUeNrMl99LU2EYx99zPGcsXaAVs4joImQhVjJoQVoJUdkaJjW7KAnzwvoDRhd1F9RF7LpUakmEN/3Aoh9GBJbzohHrlwxkdiHRDyM1cFtrZ57T831x4dp2trktfWAbO5w9n/f7nvd5nu8ETdPYUoSEN0EQst64u6ehpkwsc1bIFQ5FVSxRJVqlMU0UmKAaZeOMLMpjYSX8cE6du/Py9EgwWz4BivXABNxlMpjc0XjU2rCxUbNtsMk1ayys2lTNJFFicTXOJkOTLPhjjPk++ZSRCa9glIz+UCzkogUM5w0m4Mpyudyjaurhk9YOubW2lVUYTFl3JhwLsYHAALvp71NEQbwfUSKdtIDZnMAE3USrHtq6bpv5XNN5Q9WKVXk/w5lf0+zS0MXY+6/vvtNuNRH8Y9IN/x4uQPdf3/uz+9UVldRqhQR+jzzIh7wZFWN7SWngSN3R9V22M0I4Fi749NL5YD2+q9q90bufSXltYtulhTfhmdat3WJOQA/1NRcMftHlZcg3PjVuHv32wUOX2pK2GqeXtiQ2HZni2zT7e1aja/wz3Stxj94Lv08E8iI/OEmKUTLH69vldAcpnXIo0duRRx2DSd+RF9XR//aWm77ukBLNAXWKktFLZJovpz29jX/hmYLqOOUa8nteX7OCx8HoSGgOudTpwkgsIBfFCOQHxzsx7ORgtEF0pGyNId1256MYAc6bL34HB6P3og3qxbF+Z8GKEeCAx8Fo+Oi9eiWRT3K9AAc8DsaUQcNfzLPMVzE4nMfbF402mjJivor1ItMzxjQDj4MxT2m0ra40VpZcMUYoeByMIU7zdKclwwErpmLMbfA4GM6Bhvh2x+YWudSKYRbA42DYFXIOF1Cr6ZpIsRQjPxwKeBwMj2S/ccBPzsF2or69ZIrhTGCLHp96GpQWrNBFduW53WJPGRTFUAxHAjtEM8GVYgSaPftu0zxuuXzQbSjmPKa6ZWefuGI0jx8Mdj5rSzECMGbkkQK9vm7uQBbTmdIF5dPmvVfn8vJc/9NlLi9fvaT/JEr93+mPAAMAbNnq4UsMdqIAAAAASUVORK5CYII=');
  }
  .ie8 #main-menu li:nth-of-type(5) a:before, .ie7 #main-menu li:nth-of-type(5) a:before, .ie6 #main-menu li:nth-of-type(5) a:before {
    content: url('../images/icons/icon-lg-news.png');
  }
}
.ie8 #main-menu a, .ie7 #main-menu a {
  padding-left: 40px;
}
.ie8 #main-menu li.menu-218 a:before, .ie7 #main-menu li.menu-218 a:before {
  background-position: 0 -486px;
  height: 30px;
  width: 30px;
  content: "\0020";
}
.ie8 #main-menu li.menu-1120 a:before, .ie7 #main-menu li.menu-1120 a:before {
  background-position: 0 -456px;
  height: 30px;
  width: 30px;
  content: "\0020";
}
.ie8 #main-menu li.menu-1122 a:before, .ie7 #main-menu li.menu-1122 a:before {
  background-position: 0 -426px;
  height: 30px;
  width: 30px;
  content: "\0020";
}
.ie8 #main-menu li.menu-1119 a:before, .ie7 #main-menu li.menu-1119 a:before {
  background-position: 0 -396px;
  height: 30px;
  width: 30px;
  content: "\0020";
}
.ie8 #main-menu li.menu-1121 a:before, .ie7 #main-menu li.menu-1121 a:before {
  background-position: 0 -366px;
  height: 30px;
  width: 30px;
  content: "\0020";
}

.weforum-layout .weforum.top .inside .pane-custom p {
  display: none;
}
.ie8 .weforum-layout .weforum.top .inside div.panel-pane, .ie7 .weforum-layout .weforum.top .inside div.panel-pane {
  background-color: #00529b;
  min-height: 28px;
  padding: 4px 0 0 4px;
}
.ie8 .weforum-layout .weforum.top .inside div.panel-pane .pane-content, .ie7 .weforum-layout .weforum.top .inside div.panel-pane .pane-content {
  background-color: #002b5b;
  min-height: 28px;
}
.ie8 .weforum-layout .weforum.top .inside div.panel-pane .pane-content a, .ie7 .weforum-layout .weforum.top .inside div.panel-pane .pane-content a {
  color: white;
  border-bottom: none;
}
.weforum-layout .weforum.top .inside div.panel-pane:first-of-type {
  padding: 0 0 0 4px;
  border-top: 4px solid #00529b;
  min-height: 28px;
}
.weforum-layout .weforum.top .inside div.panel-pane:first-of-type .pane-content {
  min-height: 28px;
}
.weforum-layout .weforum.top .inside div.panel-pane:first-of-type .pane-content a {
  padding: 0 6px;
}
.weforum-layout .weforum.top .inside div.panel-pane:nth-of-type(3) .weforum-media-links {
  min-height: 28px;
  position: relative;
  top: 10px;
}
.weforum-layout .weforum.top .inside div.panel-pane:nth-of-type(3) .weforum-media-links a:first-of-type {
  padding-left: 0;
}

.weforum.main .weforum-media-links {
  position: relative;
  top: 10px;
}
.weforum.main .weforum-media-links a:first-of-type {
  padding-left: 0;
}

.page-hubs .weforum-layout .weforum.top .inside div.panel-pane:first-of-type {
  background-color: none;
  padding: 0;
  border-top: none;
}
.page-hubs .weforum-layout .weforum.top .inside div.panel-pane:first-of-type .pane-content {
  background-color: none;
}

#tabs ul.primary {
  margin: 0;
  padding: 2px 0 2px 4px;
  border-bottom: 0;
}
#tabs ul.primary li.active {
  background-color: transparent;
  border: none;
}
#tabs ul.primary li.active a {
  background-color: transparent;
  border: none;
}
#tabs ul.primary a {
  background-color: transparent;
  border: none;
  padding: 0 0 0 4px;
  vertical-align: text-top;
}
#tabs ul.primary a:hover {
  background-color: transparent;
}
#tabs .weforum-local-task.shapers:before {
  background-position: 0 -223px;
  height: 18px;
  width: 18px;
  content: "\0020";
  display: inline-block;
}
#tabs .weforum-local-task.projects:before {
  background-position: 0 -205px;
  height: 18px;
  width: 18px;
  content: "\0020";
  display: inline-block;
}
#tabs .weforum-local-task.news:before {
  background-position: 0 -187px;
  height: 18px;
  width: 18px;
  content: "\0020";
  display: inline-block;
}

.hub-links, #tabs .weforum-local-task.shapers:before, #tabs .weforum-local-task.projects:before, #tabs .weforum-local-task.news:before {
  position: relative;
  top: 2px;
}

.node-type-project.global-hub ul.tabs.primary,
.node-type-news.global-hub ul.tabs.primary,
.node-type-page.global-hub ul.tabs.primary,
.page-node-651.global-hub ul.tabs.primary,
ul.tabs.secondary {
  border-bottom: 0;
  margin: 0;
  padding: 0 !important;
  position: fixed;
  left: 0;
}
.node-type-project.global-hub ul.tabs.primary li,
.node-type-news.global-hub ul.tabs.primary li,
.node-type-page.global-hub ul.tabs.primary li,
.page-node-651.global-hub ul.tabs.primary li,
ul.tabs.secondary li {
  border: none;
  padding: 0 1em;
}
.node-type-project.global-hub ul.tabs.primary li:active,
.node-type-news.global-hub ul.tabs.primary li:active,
.node-type-page.global-hub ul.tabs.primary li:active,
.page-node-651.global-hub ul.tabs.primary li:active,
ul.tabs.secondary li:active {
  background-color: transparent;
  border: none;
}
.node-type-project.global-hub ul.tabs.primary li:active a,
.node-type-news.global-hub ul.tabs.primary li:active a,
.node-type-page.global-hub ul.tabs.primary li:active a,
.page-node-651.global-hub ul.tabs.primary li:active a,
ul.tabs.secondary li:active a {
  background-color: transparent;
  border: none;
}
.node-type-project.global-hub ul.tabs.primary li a,
.node-type-news.global-hub ul.tabs.primary li a,
.node-type-page.global-hub ul.tabs.primary li a,
.page-node-651.global-hub ul.tabs.primary li a,
ul.tabs.secondary li a {
  text-transform: none !important;
  background-color: transparent;
  border: none;
  padding: 0 0 0 4px;
  text-transform: none;
  vertical-align: text-top;
}
.node-type-project.global-hub ul.tabs.primary li a:hover,
.node-type-news.global-hub ul.tabs.primary li a:hover,
.node-type-page.global-hub ul.tabs.primary li a:hover,
.page-node-651.global-hub ul.tabs.primary li a:hover,
ul.tabs.secondary li a:hover {
  background-color: transparent;
}

#admin-menu, #admin-menu .dropdown {
  z-index: 9999;
}

#admin-menu {
  position: fixed;
}

.simplemenu-block {
  height: 0;
  position: fixed;
  z-index: 2;
}

.simplemenu-block li {
  border-bottom: 4px solid white;
}

.simplemenu-enabled #page {
  padding-top: 24px;
}

@media (max-width: 34.375em) {
  [role=banner] {
    margin: 0 -0.5em;
  }
}

@media (max-width: 34.375em) {
  .js [role=navigation], .js #utility-bar, .js .pane-weforum-hub-search {
    display: none;
  }
}

@media (max-width: 48.75em) {
  #main-menu li {
    display: table-cell;
    float: none !important;
    max-width: 20%;
  }
  #main-menu li a {
    white-space: nowrap;
    width: auto;
    float: none;
    display: block;
    padding-right: 0.5em;
  }
  [dir="rtl"] #main-menu li a {
    float: none;
    padding: 8px 0.5em 0;
  }
}

#touch-menu-btn {
  float: right;
  height: 44px;
  width: 44px;
  padding: 0 0 0 0;
  color: #002b5b;
  border-right: 0;
  border-bottom: 1px solid #002b5b;
  border-left: 1px solid #002b5b;
  background-color: white;
  line-height: 44px;
  text-align: center;
}
@media (max-width: 34.375em) {
  #touch-menu-btn {
    display: block !important;
    visibility: visible;
  }
}
@media (min-width: 34.375em) {
  #touch-menu-btn {
    display: none;
  }
}
#touch-menu-btn.close {
  background-color: #2f2f2f;
  color: white;
}
[dir="rtl"] #touch-menu-btn {
  float: left;
  border-right: 1px solid #002b5b;
  border-left: 0;
}
.ie6 #touch-menu-btn, .ie7 #touch-menu-btn {
  display: none;
}

@media (max-width: 34.375em) {
  #utility-bar-search {
    border: none;
    border-right: 0;
    border-bottom: 1px solid #002b5b;
    border-left: 0;
    margin-top: 0;
    float: none;
    height: 44px;
    margin-right: 44px;
  }
  #utility-bar-search #edit-search-api-views-fulltext-wrapper {
    width: auto;
  }
  #utility-bar-search #edit-search-api-views-fulltext-wrapper .form-item-search-api-views-fulltext {
    border: none;
  }
  #utility-bar-search #edit-search-api-views-fulltext-wrapper #edit-search-api-views-fulltext {
    width: 100%;
    height: 43px;
  }
  [dir="rtl"] #utility-bar-search {
    margin-right: 0;
    margin-left: 44px;
    float: none;
  }
  [dir="rtl"] #utility-bar-search #edit-search-api-views-fulltext {
    padding-right: 0.5em;
  }
}

#touch-menu {
  top: 44px;
  width: 100%;
  background-color: #555555;
  color: white;
  z-index: 10;
  padding: 3px;
  padding: 0 0.5em 1em;
  border-bottom: 1px solid #2f2f2f;
  -webkit-box-shadow: rgba(47, 47, 47, 0.5) 0 4px 8px 4px;
  -moz-box-shadow: rgba(47, 47, 47, 0.5) 0 4px 8px 4px;
  box-shadow: rgba(47, 47, 47, 0.5) 0 4px 8px 4px;
}
@media (min-width: 34.375em) {
  #touch-menu {
    display: none;
  }
}
#touch-menu a {
  color: white;
}
#touch-menu a:visited {
  color: white;
}
#touch-menu a:hover {
  color: #409ed2;
}
#touch-menu a:active {
  color: #409ed2;
}
#touch-menu ul {
  padding-left: 0;
  line-height: 44px;
}
#touch-menu ul li {
  margin-left: 0;
}
#touch-menu ul.menu li {
  display: inline;
}
#touch-menu #touch-main-menu {
  display: block;
  font-size: 25px;
}
#touch-menu #touch-main-menu li {
  display: block;
  padding-left: 0;
}
#touch-menu h2.pane-title {
  color: white;
  font-family: "HelveticaNeue45Light", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-size: 16px;
}
#touch-menu .touch-pane-weforum-hub-search {
  background-color: #2f2f2f;
  margin: 0 -0.5em 1em;
  padding: 0;
}
#touch-menu .touch-pane-weforum-hub-search h2 {
  margin-top: 0;
  margin-bottom: 0.5em;
  padding: 0 0.5em;
}
#touch-menu .touch-pane-weforum-hub-search .title-choose-hub {
/*  font-family: handsean, cursive; */
  display: block;
}
#touch-menu .touch-pane-weforum-hub-search .pane-content a {
  display: none;
}
#touch-menu .touch-pane-weforum-hub-search .pane-content input {
  height: 44px;
  margin: 0;
  width: 100%;
  max-width: 100%;
}
#touch-menu .touch-pane-weforum-hub-search .pane-content .weforum-facts {
  border-bottom: none;
  padding: 0 0.5em;
}
#touch-menu #touch-block-lang-dropdown-language {
  width: 100%;
  margin-bottom: 1em;
}
#touch-menu #touch-block-lang-dropdown-language .form-item-lang-dropdown-select {
  width: 100%;
}
#touch-menu #touch-block-lang-dropdown-language select {
  height: 44px;
  width: 100% !important;
}
#touch-menu #touch-weforum-social-weforum-social-links .social-links {
  display: inline;
  margin-right: 1em;
}
[dir="rtl"] #touch-menu #edit-search {
  padding-right: 0.5em;
}
.ie6 #touch-menu, .ie7 #touch-menu {
  display: none;
}

#footer {
  margin-top: 20px;
}
#footer .block-weforum-social {
  margin-top: 20px;
  min-width: 12em;
}
#footer .copyright {
  margin-top: 22px;
}

#block-weforum-social-weforum-social-links-footer a {
  border-bottom: none;
}
#block-weforum-social-weforum-social-links-footer .follow {
  color: white;
  float: left;
  font-weight: bold;
  margin-right: 3px;
}
.ie7 #block-weforum-social-weforum-social-links-footer {
  margin-top: 20px;
}
.ie7 #block-weforum-social-weforum-social-links-footer .social-links {
  display: inline;
}

.ie7 #block-weforum-home-weforum-home-copyright {
  background-color: white;
}
.ie7 #block-weforum-home-weforum-home-copyright .copyright {
  float: left;
  margin-top: 20px;
}
.ie7 #block-weforum-home-weforum-home-copyright img {
  float: left;
}

.item-list ul.pager {
  margin: 0;
  padding: 10px 0 10px 0;
}
.item-list ul.pager li {
  display: inline-block;
  height: 30px;
  margin: 0;
  padding: 0;
  text-transform: lowercase;
  vertical-align: top;
}
.ie7 .item-list ul.pager li {
  display: inline;
}
.item-list ul.pager .pager-previous a {
  border-bottom: none;
}
.item-list ul.pager .pager-previous a:before {
  background-position: 0 -289px;
  height: 24px;
  width: 24px;
  content: "\0020";
  display: inline-block;
  padding-right: 3px;
  position: relative;
  top: 7px;
}
[dir="rtl"] .item-list ul.pager .pager-previous a:before {
  background-position: 0 -313px;
  height: 24px;
  width: 24px;
}
.item-list ul.pager .pager-previous a:hover:before {
  background-position: 0 -265px;
  height: 24px;
  width: 24px;
}
[dir="rtl"] .item-list ul.pager .pager-previous a:hover:before {
  background-position: 0 -241px;
  height: 24px;
  width: 24px;
}
.item-list ul.pager .pager-next a {
  border-bottom: none;
}
.item-list ul.pager .pager-next a:after {
  background-position: 0 -313px;
  height: 24px;
  width: 24px;
  content: "\0020";
  display: inline-block;
  padding-left: 3px;
  position: relative;
  top: 7px;
}
[dir="rtl"] .item-list ul.pager .pager-next a:after {
  background-position: 0 -289px;
  height: 24px;
  width: 24px;
}
.item-list ul.pager .pager-next a:hover:after {
  background-position: 0 -241px;
  height: 24px;
  width: 24px;
}
[dir="rtl"] .item-list ul.pager .pager-next a:hover:after {
  background-position: 0 -265px;
  height: 24px;
  width: 24px;
}
.item-list ul.pager .pager-current {
  line-height: 2.2;
  margin: 0 40px;
}
.item-list ul.pager .pager-current:before {
  content: "page ";
}
.ie8 .item-list ul.pager .pager-current {
  width: 101px;
}

.weforum-listing.middle {
  vertical-align: top;
}
.weforum-listing.middle .top {
  padding-top: 3px;
}
.weforum-listing.middle .bottom {
  overflow: hidden;
  *zoom: 1;
  padding-top: 3px;
  padding-bottom: 3px;
}
.ie7 .weforum-listing.middle {
  width: 239px;
}

.weforum-listing.right {
  min-height: 90px;
  vertical-align: top;
}
[dir="rtl"] .weforum-listing.right {
  border-left: none;
}
.ie7 .weforum-listing.right {
  width: 299px;
}
.ie8 .weforum-listing.right {
  min-height: auto;
}

.weforum.main .weforum-layout-list {
  background-color: white;
  margin: 10px 0;
}
.weforum.main .weforum-layout-list.node-news, .weforum.main .weforum-layout-list.node-project, .weforum.main .weforum-layout-list.node-shaper {
  background-image: url('../images/lightgrey-px.gif');
  background-repeat: repeat-y;
  background-position: 57.15% 0;
}
@media (max-width: 32.1875em) {
  .weforum.main .weforum-layout-list.node-news, .weforum.main .weforum-layout-list.node-project, .weforum.main .weforum-layout-list.node-shaper {
    background-image: none;
  }
}
.weforum.main .weforum-layout-list a {
  border-bottom: none;
}
.weforum.main .weforum-layout-list .weforum-listing.right .field-items {
  line-height: 1.2;
}
.weforum.main .weforum-layout-list .field-name-title .field-item,
.weforum.main .weforum-layout-list .field-name-title .field-item a {
  line-height: 1.3;
}
.weforum.main .weforum-layout-list .field-name-group-audience {
  line-height: 1.2;
}
[dir="rtl"] .weforum.main .weforum-layout-list .field-name-field-event, [dir="rtl"]
.weforum.main .weforum-layout-list .field-name-post-date {
  padding-left: 0;
}
.weforum.main .weforum-layout-list .field-name-field-date .field-items {
  letter-spacing: -1px;
}
.weforum.main .weforum-layout-list .field-name-body .field-item {
  line-height: 1.2;
}

.pane-node-content {
  background-color: white;
}
.pane-node-content .field-name-group-audience a {
  border-bottom: none;
}
.pane-node-content .field-name-field-date,
.pane-node-content .field-name-group-audience {
  line-height: 1.2;
}
.pane-node-content .field-name-field-date .label-inline,
.pane-node-content .field-name-post-date .label-inline {
  padding-right: 3px;
}
.pane-node-content .field-name-post-date {
  text-transform: none;
}
.pane-node-content .service-links {
  padding-top: 8px;
  padding-bottom: 8px;
}
.pane-node-content .service-links img {
  vertical-align: super;
}
.pane-node-content .service-links .item-list ul {
  height: 23px;
  list-style: none;
  margin: 0;
}
.pane-node-content .service-links .item-list ul li {
  display: inline-block;
  margin: 0;
  vertical-align: top;
}
.ie7 .pane-node-content .service-links .item-list ul li {
  display: inline;
}
.pane-node-content .service-links .item-list ul li.first {
  width: 77px;
}
.pane-node-content .service-links .item-list ul li.last {
  width: 63px !important;
}
.pane-node-content .service-links .item-list ul li a {
  border-bottom: none;
}
.pane-node-content .field-name-field-subject-tags a {
  border-bottom: none;
}

.node-page.view-mode-full .field-name-field-page-title {
  font-size: 26px;
}
.node-page.view-mode-full .field-name-field-video {
  float: right;
  margin-top: -40px;
  padding-left: 10px;
}
.node-page.view-mode-full .border-wrapper:last-of-type {
  border-bottom: 0;
}
.node-page.view-mode-full .field-name-body {
  padding: 0;
}

.weforum-media-links a {
  padding: 0 4px;
  border-bottom: none;
}

.weforum.sidebar .hub-curator-welcome .hub-welcome {
  font-size: 22px;
  text-transform: none;
}
.weforum.sidebar .hub-curator-welcome p {
  line-height: 1.3;
}

.pane-weforum-search-glossary {
  padding: 4px 0 0 4px;
}
.pane-weforum-search-glossary .weforum-glossary-links {
  min-height: 28px;
  padding: 0 0 0 4px;
}
.pane-weforum-search-glossary .weforum-glossary-links a {
  padding: 0 4px;
  display: inline-block;
}

.view-mode-search_result .weforum-listing {
  display: block;
  float: left;
}
.view-mode-search_result > .left {
  width: 22.85714%;
  max-width: 160px;
  overflow: hidden;
}
.view-mode-search_result > .middle {
  width: 34.28571%;
}
.view-mode-search_result > .right {
  width: 42.85714%;
  float: right;
}
@media (max-width: 32.1875em) {
  .view-mode-search_result > .left {
    width: 36.11376%;
    float: left;
    margin-right: 4.16667%;
  }
  [dir="rtl"] .view-mode-search_result > .left {
    float: right;
    margin-right: 0;
    margin-left: 4.16667%;
  }
  .view-mode-search_result > .middle {
    width: 59.71957%;
    float: right;
    margin-right: 0;
  }
  [dir="rtl"] .view-mode-search_result > .middle {
    float: left;
    margin-left: 0;
  }
  .view-mode-search_result > .right {
    clear: both;
    float: none;
    width: 100%;
    display: block;
  }
}

.node-hub.view-mode-search_result .weforum-listing.middle {
  width: 77.14286%;
}
@media (max-width: 32.1875em) {
  .node-hub.view-mode-search_result .weforum-listing.middle {
    width: 59.71957%;
  }
}
.node-hub.view-mode-search_result .weforum-listing.middle h2 {
  padding-bottom: 0;
  text-transform: none;
}
.node-hub.view-mode-search_result .weforum-listing.middle .field-name-title a {
  padding-bottom: 0;
  text-transform: none;
}
.node-hub.view-mode-search_result .weforum-listing.middle .field-name-title a:before {
  content: "•";
  font-size: 21px;
  margin-right: 6px;
}
.node-hub.view-mode-search_result .weforum-listing.middle .field-name-field-region {
  padding-left: 26px;
}
.node-hub.view-mode-search_result .weforum-listing.middle .weforum-shaper-count {
  padding-left: 26px;
}
[dir="rtl"] .node-hub.view-mode-search_result .weforum-listing.middle .weforum-shaper-count {
  padding-left: 0;
  padding-right: 26px;
}
.node-hub.view-mode-search_result .weforum-listing.middle .weforum-shaper-count .placeholder {
  font-style: normal;
}
.node-hub.view-mode-search_result .weforum-listing.middle .weforum-hub-link {
  border-bottom: none;
  background: url('../images/weforum_pointer_blue.png') no-repeat center right;
  float: right;
  line-height: 1.5;
  margin-right: 3px;
  padding-right: 20px;
}
[dir="rtl"] .node-hub.view-mode-search_result .weforum-listing.middle .weforum-hub-link {
  float: left;
  padding-right: 0;
  padding-left: 20px;
  background-position: left center;
}

.node-shaper.view-mode-connected_content {
  margin-bottom: 0;
}
.node-shaper.view-mode-connected_content a {
  border-bottom: none;
}
.node-shaper.view-mode-connected_content .field-name-field-shaper-profile-image {
  height: 60px;
}
[dir="rtl"] .node-shaper.view-mode-connected_content .field-name-field-shaper-profile-image {
  padding-right: 0;
}
.node-shaper.view-mode-connected_content .group-shaper-wrapper {
  padding-top: 3px;
}
.node-shaper.view-mode-connected_content .group-shaper-wrapper .field-name-title {
  display: inline;
}
.view-hub-curator .node-shaper.view-mode-connected_content .group-shaper-wrapper .field-name-title {
  min-height: 0;
}
.node-shaper.view-mode-connected_content .group-shaper-wrapper .field-name-title .field-label {
  line-height: 0.8;
}
.node-shaper.view-mode-connected_content .group-shaper-wrapper .field-name-title .field-items {
  padding-top: 3px;
}
.node-shaper.view-mode-connected_content .group-shaper-wrapper .field-name-group-audience {
  padding-left: 60px;
}
.node-shaper.view-mode-connected_content .group-shaper-wrapper .weforum-icon.shaper {
  padding-right: 0;
}
.node-shaper.view-mode-connected_content .group-shaper-wrapper .weforum-icon.shaper:after {
  background-position: 0 -223px;
  height: 18px;
  width: 18px;
  content: "\0020";
}
[dir="rtl"] .node-shaper.view-mode-connected_content .group-shaper-wrapper .weforum-icon.shaper {
  float: left;
}

.node-shaper.view-mode-search_result .field-name-title {
  margin-bottom: 3px;
  width: 225%;
}
@media (max-width: 32.1875em) {
  .node-shaper.view-mode-search_result .field-name-title {
    max-width: 100%;
  }
}
.node-shaper.view-mode-search_result .field-name-title .field-label {
  width: 11.11111%;
}
.node-shaper.view-mode-search_result .field-name-title .field-items {
  float: left;
  width: 30.55556%;
}
@media (max-width: 57.1875em) {
  .node-shaper.view-mode-search_result .field-name-title .field-items {
    clear: both;
  }
}
[dir="rtl"] .node-shaper.view-mode-search_result .field-name-title .field-items {
  float: right;
}
.node-shaper.view-mode-search_result .field-name-node-link {
  margin-top: 16px;
  text-align: right;
}
[dir="rtl"] .node-shaper.view-mode-search_result .field-name-node-link {
  text-align: left;
}
.node-shaper.view-mode-search_result .field-name-node-link a {
  position: relative;
  top: -7px;
}
.node-shaper.view-mode-search_result .field-name-group-audience .field-item {
  margin-top: -2px;
}
.node-shaper.view-mode-search_result .field-name-group-audience .field-label,
.node-shaper.view-mode-search_result .field-name-field-joined .field-label {
  width: 60px;
}
.node-shaper.view-mode-search_result .field-name-field-tibbr-title,
.node-shaper.view-mode-search_result .field-name-field-tibbr-organization {
  line-height: 1.1;
}
.node-shaper.view-mode-search_result .field-name-field-tibbr-title {
  padding-bottom: 3px;
}
[dir="rtl"] .node-shaper.view-mode-search_result .weforum-icon.shaper {
  float: left;
}
.node-shaper.view-mode-search_result fieldset {
  border: 0;
  margin: 0;
}
.node-shaper.view-mode-search_result fieldset legend {
  margin-top: -33px;
}
.node-shaper.view-mode-search_result fieldset .fieldset-wrapper {
  padding-top: 6px;
}
@media (max-width: 57.1875em) {
  .node-shaper.view-mode-search_result fieldset .fieldset-wrapper {
    padding-top: 24px;
  }
}
@media (max-width: 32.1875em) {
  .node-shaper.view-mode-search_result fieldset .fieldset-wrapper {
    padding-top: 6px;
    margin-top: -12px;
  }
}
.node-shaper.view-mode-search_result fieldset .fieldset-wrapper .field-item a {
  line-height: 1.4;
}
.node-shaper.view-mode-search_result fieldset .fieldset-wrapper .field-item a:hover {
  color: #409ed2;
}

.node-shaper.view-mode-full .weforum-display.right {
  min-height: 220px;
}
.node-shaper.view-mode-full .weforum-display.bottom {
  width: 100%;
}
.node-shaper.view-mode-full a {
  border-bottom: none;
}
.node-shaper.view-mode-full .weforum-display.right {
  width: 29.999em;
}
.ie7 .node-shaper.view-mode-full .weforum-display.right {
  min-height: 220px;
}
.node-shaper.view-mode-full .weforum-display.right .field {
  line-height: 1.2;
}
.node-shaper.view-mode-full .weforum-display.right .field-label {
  width: 105px;
}
.node-shaper.view-mode-full .weforum-display.right .field-name-title .field-label {
  margin-top: 12px;
}
.node-shaper.view-mode-full .weforum-display.right .field-name-title h1 {
  margin-top: 5px;
}
.node-shaper.view-mode-full .weforum-display.right .weforum-icon.shaper {
  margin-top: -14px;
}
.node-shaper.view-mode-full .weforum-display.right fieldset {
  border: 0;
  margin: 0;
}
[dir="rtl"] .node-shaper.view-mode-full .weforum-display.right fieldset legend {
  padding-right: 10px;
}
.node-shaper.view-mode-full .weforum-display.right fieldset .fieldset-wrapper {
  margin-left: 105px;
}
[dir="rtl"] .node-shaper.view-mode-full .weforum-display.right fieldset .fieldset-wrapper {
  margin-left: 0;
  margin-right: 105px;
}
.node-shaper.view-mode-full .weforum-display.right fieldset .field-name-field-tibbr-email .field-label {
  margin-top: 8px;
}
.node-shaper.view-mode-full .service-links .item-list {
  position: relative;
  text-align: right;
  z-index: 1;
}
.node-shaper.view-mode-full .field-name-field-tibbr-about-me {
  padding-bottom: 10px;
}
.node-shaper.view-mode-full .about-me-label {
  border-right: 1px solid #dddddd;
  line-height: 2.5;
  width: 221px;
}
[dir="rtl"] .node-shaper.view-mode-full .about-me-label {
  padding-left: 0;
}

.ie7 .pane-node-content .node-project .weforum-display.left {
  width: 330px;
}
.ie9 .pane-node-content .node-project .weforum-display.left {
  max-width: 47%;
}

.node-project.view-mode-connected_content .field-name-title {
  padding: 3px 10px;
}
.node-project.view-mode-connected_content .field-name-title a {
  border-bottom: none;
}
.node-project.view-mode-connected_content .field-name-field-date .label-inline {
  padding-right: 3px;
}

.pane-node-content .node-news {
  overflow: hidden;
  *zoom: 1;
}
.pane-node-content .node-news .field-name-group-audience {
  line-height: 2;
}
.pane-node-content .node-news .field-name-field-date .field-label {
  text-transform: none;
}
.pane-node-content .node-news .weforum-icon.news {
  padding-top: 4px;
}
.pane-node-content .node-news .field-name-post-date {
  line-height: 1.7;
}
.pane-node-content .node-news .weforum-display.left,
.pane-node-content .node-news .weforum-display.right {
  width: 100%;
}
.pane-node-content .node-news .weforum-display.left {
  border-right: 1px #dddddd solid;
}
.pane-node-content .node-news .weforum-display.bottom {
  margin-top: 3em;
}

.node-news.view-mode-connected_content .field-name-title {
  padding-top: 3px;
  padding-bottom: 3px;
}
.node-news.view-mode-connected_content .field-name-title a {
  border-bottom: none;
}

.pane-weforum-hub-search {
  margin-top: -31px;
  position: relative;
  z-index: 1;
}
.ie7 .pane-weforum-hub-search, .ie6 .pane-weforum-hub-search {
  max-width: 240px;
}
.pane-weforum-hub-search h2.pane-title {
  color: white;
  background: url('../images/weforum_pointer_white.png') no-repeat 98% 30%;
  background-color: #00529b;
  border-right: 5px solid #002b5b;
  font-family: "HelveticaNeue55Roman", "HelveticaNeue45Light", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  line-height: 1.2;
  margin: 0 0 0 5px;
  padding: 8px 0 15px 5px;
}
[dir="rtl"] .pane-weforum-hub-search h2.pane-title {
  background-position: 2% 30%;
}
.ie8 .pane-weforum-hub-search h2.pane-title {
  background-color: #00529b;
  padding: 6px 0 12px 5px;
}
[dir="rtl"].ie7 .pane-weforum-hub-search h2.pane-title {
  position: relative;
}
.pane-weforum-hub-search h2.pane-title .title-choose-hub {
  position: absolute;
  top: -45px;
  left: 0;
  z-index: 2;
/*  font-family: handsean, cursive; */
  color: white;
  line-height: 28px;
  padding-top: 0;
}
.ie8 .pane-weforum-hub-search h2.pane-title .title-choose-hub, .ie7 .pane-weforum-hub-search h2.pane-title .title-choose-hub, .ie6 .pane-weforum-hub-search h2.pane-title .title-choose-hub {
  font-size: 24px;
  top: -30px;
}
[dir="rtl"] .pane-weforum-hub-search h2.pane-title .title-choose-hub {
  left: auto;
  right: 0;
}
[lang="fr"] .pane-weforum-hub-search h2.pane-title .title-choose-hub {
  font-size: 15px;
  padding-left: 5px;
  top: -36px;
}
[lang="es"] .pane-weforum-hub-search h2.pane-title .title-choose-hub {
  padding-left: 7px;
  top: -36px;
}
@media (max-width: 52.1875em) {
  .pane-weforum-hub-search h2.pane-title .title-choose-hub {
    top: -3.5em;
  }
}
.global-hub .pane-weforum-hub-search h2.pane-title .title-choose-hub {
  color: #002b5b;
}
.pane-weforum-hub-search h2.pane-title .title-label {
  margin-left: -102px;
  margin-right: 6px;
  font-weight: normal;
}
[dir="rtl"].ie7 .pane-weforum-hub-search h2.pane-title .title-label {
  position: absolute;
  right: 0;
}
[dir="rtl"] .pane-weforum-hub-search h2.pane-title .title-label {
  margin-left: 6px;
  margin-right: -102px;
}
[lang="fr"] .pane-weforum-hub-search h2.pane-title .title-label {
  margin-left: -140px;
}
[lang="es"] .pane-weforum-hub-search h2.pane-title .title-label {
  margin-left: -112px;
}
[lang="zh-hans"] .pane-weforum-hub-search h2.pane-title .title-label {
  margin-left: -80px;
}
[lang="ar"] .pane-weforum-hub-search h2.pane-title .title-label {
  margin-right: -49px;
}
[lang="he"] .pane-weforum-hub-search h2.pane-title .title-label {
  margin-right: -57px;
}
.pane-weforum-hub-search .pane-content {
  margin-top: -9px;
  padding-right: 5px;
  padding-left: 5px;
  padding-bottom: 5px;
}
.ie8 .pane-weforum-hub-search .pane-content {
  background-color: #002b5b;
  margin-top: -10px;
}
@media (max-width: 50em) {
  .pane-weforum-hub-search {
    float: right;
    margin-top: 2em;
    margin-bottom: 20px;
  }
  .pane-weforum-hub-search h2.pane-title {
    border-right: none;
    margin-left: 0;
  }
  .pane-weforum-hub-search h2.pane-title .title-choose-hub {
    top: -1.75em;
  }
  .pane-weforum-hub-search h2.pane-title .title-label {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .pane-weforum-hub-search img {
    width: 100%;
  }
}

@media (max-width: 50em) {
  .panel-panel.sidebar .pane-views-exp-projects-panel-pane-2 {
    overflow: hidden;
    *zoom: 1;
  }
  .panel-panel.sidebar .pane-views-exp-projects-panel-pane-2 .clearfix {
    zoom: auto;
  }
  .panel-panel.sidebar .pane-views-exp-projects-panel-pane-2 .clearfix:after {
    display: none;
    clear: none;
  }
  .panel-panel.sidebar .panel-pane {
    max-width: 50%;
  }
  .panel-panel.sidebar .panel-pane:not(.pane-weforum-hub-search) {
    clear: left;
  }
}
@media (max-width: 34.375em) {
  .panel-panel.sidebar .clearfix {
    overflow: hidden;
    *zoom: 1;
  }
  .panel-panel.sidebar .panel-pane {
    max-width: 100%;
  }
}

.page-hubs .pane-weforum-hub-search {
  margin-top: -24px;
}

.weforum-facts {
  color: white;
  border-bottom: 1px solid #00529b;
  line-height: 2;
  padding-left: 4px;
  padding-right: 4px;
}
.weforum-facts .placeholder {
  font-style: normal;
}

.ui-autocomplete.ui-menu {
  border-radius: 0;
  border: 0;
  padding: 0;
  width: 210px !important;
}
.ui-autocomplete.ui-menu .ui-corner-all {
  border-radius: 0;
}
.ui-autocomplete.ui-menu .ui-menu-item,
.ui-autocomplete.ui-menu .ui-menu-item a {
  min-height: 20px;
}
.ui-autocomplete.ui-menu .ui-menu-item a {
  background: url('../images/weforum_hub_dropdown-arrow-grey.png') 95% center no-repeat;
  line-height: 1.2;
  padding-top: 4px;
  padding-right: 20px;
  padding-bottom: 4px;
  width: 210px !important;
}
.ui-autocomplete.ui-menu .ui-menu-item a:hover {
  background: url('../images/weforum_hub_dropdown-arrow-white.png') 95% center no-repeat, #409ed2;
  margin: 0;
}
.ie8 .ui-autocomplete.ui-menu .ui-menu-item a:hover, .ie7 .ui-autocomplete.ui-menu .ui-menu-item a:hover {
  color: white;
  background-color: #409ed2;
  background-image: none;
}
.ui-autocomplete.ui-menu .ui-state-hover,
.ui-autocomplete.ui-menu .ui-widget-content .ui-state-hover,
.ui-autocomplete.ui-menu .ui-widget-header .ui-state-hover,
.ui-autocomplete.ui-menu .ui-state-focus,
.ui-autocomplete.ui-menu .ui-widget-content .ui-state-focus,
.ui-autocomplete.ui-menu .ui-widget-header .ui-state-focus {
  color: white;
  background-color: #409ed2;
  background-image: none;
  border: none;
}

.pane-facetapi h2 {
  padding-bottom: 10px;
}
.pane-facetapi ul.facetapi-facetapi-checkbox-links li {
  list-style-image: none;
  list-style: none;
  margin: 0;
}
.ie8 .pane-facetapi ul.facetapi-facetapi-checkbox-links li a {
  border-bottom: none;
}

.view-mode-connected_content {
  margin-bottom: 20px;
}
.view-mode-connected_content a {
  border-bottom: none;
}
.view-mode-connected_content .weforum-listing.middle {
  min-width: inherit;
}
.view-mode-connected_content .weforum-listing.middle .top {
  padding-top: 0;
}
.view-mode-connected_content .field-name-post-date .label-inline {
  margin-right: 3px;
}

.node-page.view-mode-connected_content .field-name-custom-page-title {
  padding-top: 3px;
  padding-bottom: 3px;
}
.node-page.view-mode-connected_content .field-name-custom-page-title a:hover {
  color: #409ed2;
}

.weforum-slideshow .view-content {
  position: relative;
}

.item-prev::selection,  .item-next::selection, .pager-button::selection, .views-field-field-per-image::selection{
	background: white;
	}
/*.item-next::selection {
	background: white;
	}
.pager-button::selection {
	background: white;
	}*/
.weforum-slideshow-pager::-moz-selection {
	background: #ff529b !important; /* Firefox */
}
.weforum-slideshow-pager {
  text-align: center;
  background-color: white;
  height: 40px;
  margin-top: -33px;
}
@media (max-width: 32.1875em) {
  .weforum-slideshow-pager {
    text-align: right;
    padding-right: 0.5em;
  }
}
.weforum-slideshow-pager span {
  cursor: pointer;
}
.weforum-slideshow-pager .pager-button {
  text-indent: 110%;
  white-space: nowrap;
  overflow: hidden;
  background-position: 0 -14px;
  height: 8px;
  width: 8px;
  margin: 0 4px;
  /*line-height: 40px;*/
}
.ie7 .weforum-slideshow-pager .pager-button {
  background-image: none;
  text-indent: 0;
  overflow: visible;
/*  line-height: 40px;*/
}
.weforum-slideshow-pager .pager-button.active, .weforum-slideshow-pager .pager-button:hover {
  text-indent: 110%;
  white-space: nowrap;
  overflow: hidden;
  background-position: -8px -14px;
  height: 8px;
  /*line-height: 40px;*/
  width: 8px;
}
.ie7 .weforum-slideshow-pager .pager-button.active, .ie7 .weforum-slideshow-pager .pager-button:hover {
  background-image: none;
  text-indent: 0;
  overflow: visible;
  /*line-height: 40px;*/
}
.weforum-slideshow-pager .item-prev {
  text-indent: 110%;
  white-space: nowrap;
  overflow: hidden;
  background-position: 0 -289px;
  height: 24px;
  width: 24px;
/*  line-height: 40px;*/
}
[dir="rtl"] .weforum-slideshow-pager .item-prev {
  text-indent: 110%;
  white-space: nowrap;
  overflow: hidden;
  background-position: 0 -313px;
  height: 24px;
  width: 24px;
  /*line-height: 40px;*/
}
.ie7 .weforum-slideshow-pager .item-prev {
  background-image: none;
  text-indent: 0;
  overflow: visible;
  /*line-height: 40px;*/
}
.weforum-slideshow-pager .item-prev:hover {
  text-indent: 110%;
  white-space: nowrap;
  overflow: hidden;
  background-position: 0 -265px;
  height: 24px;
  width: 24px;
  /*line-height: 40px;*/
}
[dir="rtl"] .weforum-slideshow-pager .item-prev:hover {
  text-indent: 110%;
  white-space: nowrap;
  overflow: hidden;
  background-position: 0 -241px;
  height: 24px;
  width: 24px;
  /*line-height: 40px;*/
}
.ie7 .weforum-slideshow-pager .item-prev:hover {
  background-image: none;
  text-indent: 0;
  overflow: visible;
  /*line-height: 40px;*/
}
.weforum-slideshow-pager .item-next {
  text-indent: 110%;
  white-space: nowrap;
  overflow: hidden;
  background-position: 0 -313px;
  height: 24px;
  width: 24px;
  /*line-height: 40px;*/
}
[dir="rtl"] .weforum-slideshow-pager .item-next {
  text-indent: 110%;
  white-space: nowrap;
  overflow: hidden;
  background-position: 0 -289px;
  height: 24px;
  width: 24px;
}
.ie7 .weforum-slideshow-pager .item-next {
  background-image: none;
  text-indent: 0;
  overflow: visible;
  /*line-height: 40px;*/
}
.weforum-slideshow-pager .item-next:hover {
  text-indent: 110%;
  white-space: nowrap;
  overflow: hidden;
  background-position: 0 -241px;
  height: 24px;
  width: 24px;
  /*line-height: 40px;*/
}
[dir="rtl"] .weforum-slideshow-pager .item-next:hover {
  text-indent: 110%;
  white-space: nowrap;
  overflow: hidden;
  background-position: 0 -265px;
  height: 24px;
  width: 24px;
  /*line-height: 40px;*/
}
.ie7 .weforum-slideshow-pager .item-next:hover {
  background-image: none;
  text-indent: 0;
  overflow: visible;
  /*line-height: 40px;*/
}

.weforum-slideshow-item .slider-wrapper {
  top: 0;
  height: 100%;
  width: 400px;
  min-width: 57.14286%;
  max-width: 100%;
  padding: 0 20px;
  overflow: hidden;
}
.weforum-slideshow-item .bottom-wrapper {
  bottom: 0;
  padding-right: 20px;
  padding-bottom: 10px;
}
.ie7 .weforum-slideshow-item .bottom-wrapper {
  bottom: 70px;
}
.weforum-slideshow-item .top-wrapper {
  top: 0;
  padding-right: 20px;
  padding-top: 20px;
}

.weforum-slideshow-item {
  color: white;
}
.weforum-slideshow-item .slider-wrapper {
  background-color: black;
  filter: alpha(opacity=50);
  background-color: rgba(0, 0, 0, 0.5);
}
.weforum-slideshow-item .title a {
  border-bottom: none;
  color: white;
  font-size: 40px;
  line-height: 1;
}
.weforum-slideshow-item .title a:visited, .weforum-slideshow-item .title a:hover {
  color: white;
}
.weforum-slideshow-item .teaser {
  color: white;
  font-size: 18px;
}

.weforum-slideshow-pane h2,
.pane-featured-slider-per-hub-panel-pane-3 h2,
.pane-featured-slider-per-hub-panel-pane-4 h2,
.pane-featured-slider-per-hub-panel-pane-5 h2 {
  left: 10px;
  padding: 0 0 0 0.5em;
  margin-top: 33px;
  width: 0;
  position: relative;
  z-index: 1;
}
[dir="rtl"] .weforum-slideshow-pane h2, [dir="rtl"]
.pane-featured-slider-per-hub-panel-pane-3 h2, [dir="rtl"]
.pane-featured-slider-per-hub-panel-pane-4 h2, [dir="rtl"]
.pane-featured-slider-per-hub-panel-pane-5 h2 {
  left: -6px;
}

.shaper-teaser {
  font-size: 16px;
  line-height: 1.3;
  margin-bottom: 20px;
  position: relative;
  z-index: 3;
}
.shaper-teaser p:first-of-type {
  margin: 0;
}
.shaper-teaser p:first-of-type:before {
  content: "“";
}
.shaper-teaser p:last-of-type:after {
  content: "”";
}

.shaper-title {
  line-height: 1.2;
  position: relative;
  z-index: 3;
}
.shaper-title a {
  color: white;
  font-size: 18px;
  border-bottom: none;
}

.shaper-hub {
  color: white;
  line-height: 1;
  position: relative;
  z-index: 3;
}
.shaper-hub a {
  color: white;
  border-bottom: none;
}

.slider-wrapper.News .top-wrapper,
.slider-wrapper.Project .top-wrapper {
  display: none;
}

.slider-wrapper.Shaper .bottom-wrapper {
  display: none;
}

.stream-display {
  margin-top: 20px;
}
.stream-display h2 {
  font-size: 22px;
  padding-bottom: 10px;
  padding-top: 10px;
}
.stream-display .view-feeds .view-header,
.stream-display .view-feeds .view-empty {
  padding-bottom: 0;
}
[dir="rtl"] .stream-display .view-feeds .view-header, [dir="rtl"]
.stream-display .view-feeds .view-empty {
  padding-left: 0;
}
.stream-display .view-feeds .view-header a,
.stream-display .view-feeds .view-empty a {
  padding-top: 0;
}
.stream-display .view-feeds .view-header p,
.stream-display .view-feeds .view-empty p {
  margin: 0;
}
.stream-display .view-feeds .views-field-body p {
  line-height: 1.5;
  margin-bottom: 0;
  word-wrap: break-word;
}
.stream-display .view-feeds .views-field-created .placeholder {
  font-style: normal;
}
.stream-display .view-feeds .views-field-field-link:after {
  content: "•";
}
.stream-display .view-feeds .views-field-field-tibbr-twitter a,
.stream-display .view-feeds .views-field-field-tibbr-facebook a {
  padding-top: 0;
  padding-bottom: 0;
}

@media (max-width: 50em) {
  .panel-panel.sidebar .pane-views-panes.stream-display:nth-of-type(odd) {
    width: 49%;
    float: left;
    margin-right: 2%;
    clear: both;
  }
  [dir="rtl"] .panel-panel.sidebar .pane-views-panes.stream-display:nth-of-type(odd) {
    float: right;
    margin-right: 0;
    margin-left: 2%;
  }
  .panel-panel.sidebar .pane-views-panes.stream-display:nth-of-type(even) {
    width: 49%;
    float: right;
    margin-right: 0;
    clear: none;
  }
  [dir="rtl"] .panel-panel.sidebar .pane-views-panes.stream-display:nth-of-type(even) {
    float: left;
    margin-left: 0;
  }
}
@media (max-width: 32.1875em) {
  .panel-panel.sidebar .pane-views-panes.stream-display {
    float: none !important;
    width: 100% !important;
  }
}
@media (max-width: 50em) {
  .panel-panel.sidebar .pane-weforum-feeds-weforum-feeds-global-block.stream-display,
  .panel-panel.sidebar .pane-weforum-feeds-weforum-feeds-block.stream-display {
    width: 100%;
    max-width: 100%;
    float: none;
    clear: both;
  }
  .panel-panel.sidebar .pane-weforum-feeds-weforum-feeds-global-block.stream-display .twitter-stream-display, .panel-panel.sidebar .pane-weforum-feeds-weforum-feeds-global-block.stream-display .facebook-stream-display,
  .panel-panel.sidebar .pane-weforum-feeds-weforum-feeds-block.stream-display .twitter-stream-display,
  .panel-panel.sidebar .pane-weforum-feeds-weforum-feeds-block.stream-display .facebook-stream-display {
    width: 49%;
    float: left;
    margin-right: 2%;
  }
  [dir="rtl"] .panel-panel.sidebar .pane-weforum-feeds-weforum-feeds-global-block.stream-display .twitter-stream-display, [dir="rtl"] .panel-panel.sidebar .pane-weforum-feeds-weforum-feeds-global-block.stream-display .facebook-stream-display, [dir="rtl"]
  .panel-panel.sidebar .pane-weforum-feeds-weforum-feeds-block.stream-display .twitter-stream-display, [dir="rtl"]
  .panel-panel.sidebar .pane-weforum-feeds-weforum-feeds-block.stream-display .facebook-stream-display {
    float: right;
    margin-right: 0;
    margin-left: 2%;
  }
  .panel-panel.sidebar .pane-weforum-feeds-weforum-feeds-global-block.stream-display .facebook-stream-display,
  .panel-panel.sidebar .pane-weforum-feeds-weforum-feeds-block.stream-display .facebook-stream-display {
    width: 49%;
    float: right;
    margin-right: 0;
  }
  [dir="rtl"] .panel-panel.sidebar .pane-weforum-feeds-weforum-feeds-global-block.stream-display .facebook-stream-display, [dir="rtl"]
  .panel-panel.sidebar .pane-weforum-feeds-weforum-feeds-block.stream-display .facebook-stream-display {
    float: left;
    margin-left: 0;
  }
}
@media (max-width: 32.1875em) {
  .panel-panel.sidebar .pane-weforum-feeds-weforum-feeds-global-block.stream-display .twitter-stream-display, .panel-panel.sidebar .pane-weforum-feeds-weforum-feeds-global-block.stream-display .facebook-stream-display,
  .panel-panel.sidebar .pane-weforum-feeds-weforum-feeds-block.stream-display .twitter-stream-display,
  .panel-panel.sidebar .pane-weforum-feeds-weforum-feeds-block.stream-display .facebook-stream-display {
    float: none !important;
    width: 100% !important;
  }
}

.twitter-stream-display {
  background: url('../images/feed-twitter.png') right top no-repeat;
  margin-bottom: 20px;
}

.facebook-stream-display {
  background: url('../images/feed-facebook.png') right top repeat-x;
}

.twitter-stream-display, .facebook-stream-display {
  background-color: white;
}
[dir="rtl"] .twitter-stream-display, [dir="rtl"] .facebook-stream-display {
  background-image: none;
}
[dir="rtl"] .twitter-stream-display .view-header, [dir="rtl"] .facebook-stream-display .view-header {
  background-color: #dddddd;
}
@media (max-width: 50em) {
  .twitter-stream-display, .facebook-stream-display {
    background-repeat: repeat-x;
    background-position: left top;
  }
}

.page-node-651 .pane-title {
  padding-bottom: 0;
}
.page-node-651 select#edit-submitted-hub {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  -webkit-appearance: menulist-button;
  -moz-appearance: menulist;
  width: 370px;
  margin-top: 20px;
}
.page-node-651 .webform-component-textfield,
.page-node-651 .webform-component-email,
.page-node-651 .webform-component-textarea {
  width: 370px;
}
.page-node-651 .webform-client-form input[type="text"],
.page-node-651 .webform-client-form input[type="email"],
.page-node-651 .webform-client-form textarea,
.page-node-651 .webform-client-form #edit-actions input {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  border: 1px solid #666666;
}
.page-node-651 .webform-client-form input[type="text"],
.page-node-651 .webform-client-form input[type="email"],
.page-node-651 .webform-client-form select {
  height: 30px;
}
.page-node-651 .webform-client-form textarea {
  min-height: 180px;
  padding: 6px 10px 6px 10px;
}
.page-node-651 .webform-client-form #edit-actions {
  text-align: right;
  width: 370px;
}
.page-node-651 .webform-client-form #edit-actions input {
  width: 74px;
  height: 28px;
}
.page-node-651 .webform-client-form #webform-component-name {
  margin-top: 0;
}
.page-node-651 .webform-client-form #webform-component-submit-an-application h3 {
  padding-bottom: 0;
}
.page-node-651 .webform-client-form #edit-submitted-attachment-upload-button {
  margin-left: 52px;
}

#weforum-contact-hub {
  margin-top: 30px;
  width: 220px;
}

.olLayerGooglePoweredBy.olLayerGoogleV3.gmnoprint {
  display: none !important;
}

#popup {
  background-color: rgba(255, 255, 255, 0.7);
  width: 220px !important;
}

#popup_contentDiv {
  height: inherit !important;
  top: inherit !important;
  left: inherit !important;
  width: 220px !important;
}
#popup_contentDiv .openlayers-tooltip-name a:before {
  content: "•";
  font-size: 21px;
  position: relative;
  top: 3px;
  left: -3px;
}
#popup_contentDiv .views-field-field-hub-curator,
#popup_contentDiv .views-field-weforum-hub-shapers {
  padding-left: 20px;
}
#popup_contentDiv .views-field-field-hub-curator .field-content a,
#popup_contentDiv .views-field-weforum-hub-shapers .field-content a {
  padding-left: 0;
}

#popup_close.olPopupCloseBox {
  background-position: 0 -134px;
  height: 17px;
  width: 17px;
  position: relative !important;
  top: 3px !important;
  right: -200px !important;
}

.olFramedCloudPopupContent {
  padding: 0 !important;
}

#popup_FrameDecorationDiv_0,
#popup_FrameDecorationImg_0,
#popup_FrameDecorationDiv_1,
#popup_FrameDecorationImg_1,
#popup_FrameDecorationDiv_2,
#popup_FrameDecorationImg_2,
#popup_FrameDecorationDiv_3,
#popup_FrameDecorationImg_3,
#popup_FrameDecorationDiv_4,
#popup_FrameDecorationImg_4 {
  display: none;
}

/**
 * jCarousel
 */
.jcarousel-navigation li {
  background-color: #CCC;
  border-top: 2px solid #999;
  display: inline-block;
  height: 14px;
  list-style: none;
  margin: 0 2px;
  text-indent: -999px;
  width: 16px;
}

.jcarousel-navigation li.active,
.jcarousel-navigation li:hover {
  background-color: #99F;
  border-top-color: #33F;
}

.line-height-110
{
    line-height:110px;
}



#block-menu-block-3 div.content div ul li{
display: inline;
}

#block-menu-block-3 div.content div ul li a{
float: left;
color: white;
padding: 9px 11px;
text-decoration: none;
}

#block-menu-block-3 div.content div ul li a:visited{
color: white;
}

#block-menu-block-3 div.content div ul li a:hover, #block-menu-block-3 div.content div ul li .current{ /*background of main menu bar links onMouseover*/
color: #409ed2;
background: transparent  center center repeat-x;
}

/* Sub level menus*/
#block-menu-block-3 div.content div ul li ul{
position: absolute;
z-index: 100;
left: 0;
top: 0;
background: #002b5b; /*sub menu background color */
visibility: hidden;
}

/* Sub level menu links style */
#block-menu-block-3 div.content div ul li ul li a{
font: normal 13px Verdana;
padding: 6px;
padding-right: 8px;
margin: 0;
border-bottom: 1px solid navy;
}

#block-menu-block-3 div.content div ul li ul li a:hover{ /*sub menu links' background color onMouseover */
/*background: #ff2b5b;*/
color: #409ed2;
}

.downarrowclass
{
    vertical-align: middle;
    margin-left: 5px;
}

#site-slogan
{
    font-size: 16px;
    /*font-style: italic;*/
}

#block-menu-menu-utility-menu ul.menu li {
  margin: 0;
  padding-left: 4px;
  padding-right: 4px;
  list-style: none;
  float:left;
  height:auto;
 /*display: table;*/
}

/**
 * Social entrepreneurs landing page
 */
.view-test .views-field-field-area-of-impact span[data-priority-name="None"],
.view-test .views-field-field-area-of-impact span[data-priority-name="Low"],
.view-test .views-field-field-area-of-impact span[data-priority-name="Medium"] {
  /* Hide Area of impacts not of High priority but keep them in the code so we can
     filter on them */
  display: none;
}

/**
 * Social entrepreneurs node
 */
.node-social-entrepreneur .field-name-field-per-image {
  margin: 12px;
}

.media-image {
    padding: 2px;
}

.field-name-field-attachments  td {
    padding: 5px    !important;
}
