/* ==========================================================================
   Grid
   ========================================================================== */
/*
 * Example uses:
 *
 * <div class="grid">
 *     <div class="grid__cell unit-1-2"></div>
 *     <div class="grid__cell unit-1-2"></div>
 *     <div class="grid__cell unit-1-3"></div>
 *     <div class="grid__cell unit-1-3"></div>
 * </div>
 *
 * <div class="grid grid--center">
 *     <div class="grid__cell unit-1-3"></div>
 *     <div class="grid__cell unit-1-3"></div>
 * </div>
 */
/* Grid core
   ========================================================================== */
/**
 * Grid container
 * Must only contain `.grid` or `.grid__cell` components as children.
 *
 * 1. Adjustment for child element margins.
 * 2. Ensure consistent default alignment/
 * 3. Remove inter-unit whitespace that appears between `inline-block` child
 *    elements. Work for all non-monospace font-families.  If you're using a
 *    monospace base font, you will need to set the `grid` font-family to
 *   `sans-serif` and then redeclare the monospace font on the `grid__cell`
 *    objects.
 * 4. Protect against WebKit bug with optimizelegibility.
 */
/* line 44, scss/MONITOR/_griddle.scss */
.grid {
  display: block;
  padding: 0;
  margin: 0 -10px;
  /* 1 */
  text-align: left;
  /* 2 */
  letter-spacing: -0.31em;
  /* 3 */
  text-rendering: optimizespeed;
  /* 4 */
}

/**
 * Opera hack
 */
/* line 58, scss/MONITOR/_griddle.scss */
.opera:-o-prefocus,
.grid {
  word-spacing: -0.43em;
  /* 3 */
}

/**
 * Child `grid` object adjustments
 * Used for more complex fixed-fluid hybrid grids.
 */
/* line 67, scss/MONITOR/_griddle.scss */
.grid > .grid {
  overflow: hidden;
  margin-right: 0;
  margin-left: 0;
}

/**
 * Grid units
 * No explicit width by default. Apply `.unit-x-y` classes.
 *
 * 1. Fundamentals of the non-float grid layout mechanism.
 * 2. Apply grid gutter.
 * 3. Controls vertical positioning of units.
 * 4. Keeps content correctly aligned with the grid direction.
 * 5. Reset text defaults.
 */
/* line 84, scss/MONITOR/_griddle.scss */
.grid__cell {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  display: inline-block;
  /* 1 */
  margin: 0;
  padding: 0 10px;
  /* 2 */
  vertical-align: top;
  /* 3 */
  text-align: left;
  /* 4 */
  letter-spacing: normal;
  /* 5 */
  word-spacing: normal;
  /* 5 */
  text-rendering: auto;
  /* 5 */
}

/* Grid modifiers
   ========================================================================== */
/**
 * Modifier: horizontally center all grid units
 * Allows for automatic unit centering irrespective of the number of
 * units in the grid.
 */
/* line 107, scss/MONITOR/_griddle.scss */
.grid--center {
  text-align: center;
}

/**
 * Modifier: align horizontally all grid units to the left
 */
/* line 115, scss/MONITOR/_griddle.scss */
.grid--left {
  text-align: left;
}

/**
 * Modifier: align horizontally all grid units to the right
 */
/* line 123, scss/MONITOR/_griddle.scss */
.grid--right {
  text-align: right;
}

/* Grid cell modifiers
   ========================================================================== */
/**
 * Modifier: horizontally center one unit
 * Set a specific unit to be horizontally centered. Doesn't affect
 * any other units. Can still contain a child `grid` object.
 */
/* line 136, scss/MONITOR/_griddle.scss */
.grid__cell--center {
  display: block;
  margin: 0 auto;
}

/**
 * Modifier: align horizontally one unit to the left
 * Set a specific unit to be horizontally on the left. Doesn't affect
 * any other units. Can still contain a child `grid` object.
 */
/* line 147, scss/MONITOR/_griddle.scss */
.grid__cell--left {
  display: block;
  margin-right: auto;
}

/**
 * Modifier: align horizontally one unit to the right
 * Set a specific unit to be horizontally on the right. Doesn't affect
 * any other units. Can still contain a child `grid` object.
 */
/* line 158, scss/MONITOR/_griddle.scss */
.grid__cell--right {
  display: block;
  margin-left: auto;
}

/* Proportional units
   ========================================================================== */
/*
 * Specify the proportional width of an object.
 * Primarily for, but not limited to, use with `.grid__cell` components.
 * Intentional redundancy build into each set of unit classes.
 */
/* line 61, scss/MONITOR/_griddle-build.scss */
.unit-1-2, .unit-2-4 {
  width: 50%;
}

/* line 61, scss/MONITOR/_griddle-build.scss */
.unit-1-3 {
  width: 33.33333%;
}

/* line 61, scss/MONITOR/_griddle-build.scss */
.unit-2-3 {
  width: 66.66667%;
}

/* line 61, scss/MONITOR/_griddle-build.scss */
.unit-1-4 {
  width: 25%;
}

/* line 61, scss/MONITOR/_griddle-build.scss */
.unit-3-4 {
  width: 75%;
}

/* line 22, scss/MONITOR/_normalize.scss */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

/* line 32, scss/MONITOR/_normalize.scss */
audio,
canvas,
video {
  display: inline-block;
}

/* line 41, scss/MONITOR/_normalize.scss */
audio:not([controls]) {
  display: none;
  height: 0;
}

/* line 52, scss/MONITOR/_normalize.scss */
[hidden],
template {
  display: none;
}

/* line 66, scss/MONITOR/_normalize.scss */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/* line 76, scss/MONITOR/_normalize.scss */
body {
  margin: 0;
}

/* line 88, scss/MONITOR/_normalize.scss */
a {
  background: transparent;
}

/**
 * Address `outline` inconsistency between Chrome and other browsers.
 */
/* line 96, scss/MONITOR/_normalize.scss */
a:focus {
  outline: thin dotted;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
/* line 105, scss/MONITOR/_normalize.scss */
a:active,
a:hover {
  outline: 0;
}

/* line 118, scss/MONITOR/_normalize.scss */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* line 127, scss/MONITOR/_normalize.scss */
abbr[title] {
  border-bottom: 1px dotted;
}

/* line 136, scss/MONITOR/_normalize.scss */
b,
strong {
  font-weight: bold;
}

/* line 144, scss/MONITOR/_normalize.scss */
dfn {
  font-style: italic;
}

/* line 152, scss/MONITOR/_normalize.scss */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/* line 162, scss/MONITOR/_normalize.scss */
mark {
  background: #ff0;
  color: #000;
}

/* line 174, scss/MONITOR/_normalize.scss */
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em;
}

/* line 183, scss/MONITOR/_normalize.scss */
pre {
  white-space: pre-wrap;
}

/* line 191, scss/MONITOR/_normalize.scss */
q {
  quotes: "\201C" "\201D" "\2018" "\2019";
}

/* line 199, scss/MONITOR/_normalize.scss */
small {
  font-size: 80%;
}

/* line 208, scss/MONITOR/_normalize.scss */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

/* line 215, scss/MONITOR/_normalize.scss */
sup {
  top: -0.2em;
}

/* line 219, scss/MONITOR/_normalize.scss */
sub {
  bottom: -0.25em;
}

/* line 231, scss/MONITOR/_normalize.scss */
img {
  border: 0;
}

/* line 239, scss/MONITOR/_normalize.scss */
svg:not(:root) {
  overflow: hidden;
}

/* line 251, scss/MONITOR/_normalize.scss */
figure {
  margin: 0;
}

/* line 263, scss/MONITOR/_normalize.scss */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/* line 274, scss/MONITOR/_normalize.scss */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/* line 288, scss/MONITOR/_normalize.scss */
button,
input,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 2 */
  margin: 0;
  /* 3 */
}

/* line 300, scss/MONITOR/_normalize.scss */
button,
input {
  line-height: normal;
}

/* line 312, scss/MONITOR/_normalize.scss */
button,
select {
  text-transform: none;
}

/* line 327, scss/MONITOR/_normalize.scss */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

/* line 337, scss/MONITOR/_normalize.scss */
button[disabled],
html input[disabled] {
  cursor: default;
}

/* line 347, scss/MONITOR/_normalize.scss */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/* line 358, scss/MONITOR/_normalize.scss */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box;
}

/* line 370, scss/MONITOR/_normalize.scss */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/* line 379, scss/MONITOR/_normalize.scss */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/* line 389, scss/MONITOR/_normalize.scss */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
}

/* line 402, scss/MONITOR/_normalize.scss */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*VARIABLES*/
/*Dimensions*/
/*colours*/
/*Assets*/
/*Icon Font*/
/* line 250, monitor/icons/*.png */
.icons-sprite, .site-nav-top .site-social .flickr, .site-nav-top .site-social .flickr:hover, .site-nav-top .site-social .youtube, .site-nav-top .site-social .youtube:hover, .site-nav-top .site-social .twitter, .site-nav-top .site-social .twitter:hover, .site-nav-top .site-social .facebook, .site-nav-top .site-social .facebook:hover, .site-nav-top .lang-dropdown:after, .site-nav .site-search .submit, .site-footer .footer-social .flickr, .site-footer .footer-social .youtube, .site-footer .footer-social .twitter, .site-footer .footer-social .facebook, .signup-form:after, .news-list li .media a:after, .news-list li li a:after, .news-list li .story a:after, .news-list li .internal a:after, .home-slider .flex-control-paging a, .home-slider .flex-control-paging a.flex-active, .home-slider .flex-control-paging a:hover, .campaign-box .text:after, .home-campaign-box .text:after, .campaign-box:hover .text:after, .feed-list.facebook h1:after, .feed-list.twitter h1:after, .article-share .back-to-top:before, .article-footer .back-to-top:before, .article-share .print-friendly:before, .article-footer .print-friendly:before, .article-share .download:before, .article-footer .download:before {
  background: url('/img/monitor/icons-sd2583d3c89.png') no-repeat;
}

@font-face {
  font-family: 'icbl';
  src: url("fonts/icbl.eot");
  src: url("fonts/icbl.eot?#iefix") format("embedded-opentype"), url("fonts/icbl.woff") format("woff"), url("fonts/icbl.ttf") format("truetype"), url("fonts/icbl.svg#icbl") format("svg");
  font-weight: normal;
  font-style: normal;
}

/* line 38, scss/MONITOR/_main.scss */
.news-list li p:last-child:after, .sidebar-links ul a:after, .sidebar-links-external ul a:after, .sidebar-signup a:after, .page-section .header-bar .cta:after, .monitor-updates .update:after, .countryprofile-updates a:after, .sidebar-back:before, .story .cta:after {
  font-family: 'icbl';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* line 52, scss/MONITOR/_main.scss */
.news-list li p:last-child:after, .sidebar-links ul a:after, .sidebar-links-external ul a:after, .sidebar-signup a:after, .page-section .header-bar .cta:after, .monitor-updates .update:after, .countryprofile-updates a:after {
  content: " \e600";
}

/* line 64, scss/MONITOR/_main.scss */
.sidebar-back:before {
  content: " \e603";
}

/* line 71, scss/MONITOR/_main.scss */
.helne-ro, h2, .h2, .countryprofile-header h2, .countryprofile-header .date {
  font-family: 'Helvetica Neue LT W01_51488890';
  font-weight: normal;
}

/* line 76, scss/MONITOR/_main.scss */
.helne-med, .news-list li .h2, .news-list li .h3 {
  font-family: 'Helvetica Neue LT W01_65 Md';
  font-weight: normal;
}

/* line 81, scss/MONITOR/_main.scss */
.helne-med-it {
  font-family: 'Helvetica Neue LT W01_61488908';
  font-weight: normal;
}

/* line 86, scss/MONITOR/_main.scss */
.helne-li-it {
  font-family: 'Helvetica Neue LT W01_41488884';
  font-weight: normal;
}

/* line 91, scss/MONITOR/_main.scss */
.helne-li {
  font-family: 'Helvetica Neue LT W01_41488878';
  font-weight: normal;
}

/* line 97, scss/MONITOR/_main.scss */
.helne-bold {
  font-family: 'Helvetica Neue LT W01_75 Bold';
  font-weight: normal;
}

/* line 102, scss/MONITOR/_main.scss */
.helne-bold-cond, .ph, .ph1, #logo .strapline, .site-nav .nav-level-1, .home-footer .home-footer-box header .h4, .home-footer .footer-box header .h4, .footer-boxes .home-footer-box header .h4, .footer-boxes .footer-box header .h4, .page-section .header-bar .h4, .monitor-updates .newsletter-intro h2, .countryprofile-overview h3, .home-intro h1, .home-slider .slide .heading, .campaign-box .text .h4, .home-campaign-box .text .h4, .campaign-select-box .text .h4 {
  font-family: 'Helvetica Neue LT W01_77 Bd Cn';
  font-weight: normal;
}

/* line 107, scss/MONITOR/_main.scss */
.georgia-italic, .sidebar-signup a, .page-section .header-bar .cta, .article-share .pages-control .forward .title, .pages-control .article-share .forward .title, .article-footer .pages-control .forward .title, .pages-control .article-footer .forward .title, .article-share .pages-control .back .title, .pages-control .article-share .back .title, .article-footer .pages-control .back .title, .pages-control .article-footer .back .title, .article-share .back-to-top .title, .article-footer .back-to-top .title, .article-share .print-friendly .title, .article-footer .print-friendly .title, .article-share .download .title, .article-footer .download .title {
  font-family: georgia, serif;
  font-style: italic;
}

/* line 115, scss/MONITOR/_main.scss */
body {
  font-family: Arial, Helvetica, Sans-serif;
  font-size: 100%;
  color: #454545;
  line-height: 1.4;
}

/* line 122, scss/MONITOR/_main.scss */
a {
  color: #db1d25;
}

/* line 126, scss/MONITOR/_main.scss */
form {
  display: inline;
}

/*Headings*/
/* line 132, scss/MONITOR/_main.scss */
h1, h2, h3, h4, p {
  margin: 0 0 0.5em 0;
}

/* line 136, scss/MONITOR/_main.scss */
p {
  margin: 0 0 1.14286em 0;
}

/* line 140, scss/MONITOR/_main.scss */
.standfirst {
  font-size: 1.42857em;
  color: #000;
  margin: 0 0 20px 0;
}

/* line 146, scss/MONITOR/_main.scss */
.ph {
  color: #db1d25;
  font-size: 3.71429em;
  border-bottom: 1px solid #ccc;
}

/* line 154, scss/MONITOR/_main.scss */
.ph1 {
  color: #db1d25;
  font-size: 28px;
  border-bottom: 1px solid #ccc;
}

/* line 162, scss/MONITOR/_main.scss */
h2, .h2 {
  font-size: 22px;
  font-size: 1.57143rem;
}

/* line 168, scss/MONITOR/_main.scss */
h3, .h3 {
  font-size: 18px;
  font-size: 1.28571rem;
}

/* line 173, scss/MONITOR/_main.scss */
h4, .h4 {
  font-size: 15px;
  font-size: 1.07143rem;
}

/* line 178, scss/MONITOR/_main.scss */
.red {
  color: #db1d25;
}

/* line 182, scss/MONITOR/_main.scss */
.sidebar-links ul li .description, .sidebar-links-external ul li .description, .story .cta {
  font-family: Georgia, Serif;
  font-style: italic;
}

/*BASE STYLES*/
/* line 190, scss/MONITOR/_main.scss */
html {
  font-size: 87.5%;
}

/* line 194, scss/MONITOR/_main.scss */
body {
  background: #ccc;
  color: #000;
  width: 100%;
  min-width: 960px;
}
/* line 201, scss/MONITOR/_main.scss */
body.sticky-nav {
  padding: 151px 0 0 0;
}

/* line 206, scss/MONITOR/_main.scss */
a {
  text-decoration: none;
}

/***LAYOUT***/
/* line 213, scss/MONITOR/_main.scss */
.site-body {
  width: 100%;
  max-width: 1094px;
  margin: 0 auto;
  background: #fff;
  position: relative;
}

/* line 221, scss/MONITOR/_main.scss */
.inner {
  max-width: 960px;
  margin: 0 auto;
}

/*Header*/
/* line 228, scss/MONITOR/_main.scss */
#logo {
  padding: 20px 0;
}
/* line 230, scss/MONITOR/_main.scss */
#logo img, #logo .strapline {
  display: inline-block;
}
/* line 233, scss/MONITOR/_main.scss */
#logo .strapline {
  font-size: 1.14286em;
  padding: 0 0 0 20px;
  color: #88898D;
}

/* line 241, scss/MONITOR/_main.scss */
.site-header {
  position: relative;
  font-size: 1em;
  background: #fff;
  min-height: 132px;
  width: 100%;
  z-index: 2000;
}
/* line 245, scss/MONITOR/_main.scss */
.sticky-nav .site-header {
  position: fixed;
  width: 100%;
  left: 0;
  top: -65px;
}
/* line 251, scss/MONITOR/_main.scss */
.sticky-nav .site-header .inner {
  padding: 80px 0 10px 100px;
  max-width: 860px;
}
/* line 254, scss/MONITOR/_main.scss */
.sticky-nav .site-header .inner #logo {
  top: 58px;
}
/* line 256, scss/MONITOR/_main.scss */
.sticky-nav .site-header .inner #logo img {
  width: 64%;
}
/* line 261, scss/MONITOR/_main.scss */
.sticky-nav .site-header .inner h1 {
  font-size: 25px;
  margin: 10px 0;
}
/* line 267, scss/MONITOR/_main.scss */
.sticky-nav .site-header .sub-nav {
  position: fixed;
}
/* line 269, scss/MONITOR/_main.scss */
.sticky-nav .site-header .sub-nav .inner {
  padding: 0;
}
/* line 275, scss/MONITOR/_main.scss */
.sticky-nav .site-header .site-nav-top {
  display: none;
}
/* line 289, scss/MONITOR/_main.scss */
.site-header > .inner {
  position: relative;
  padding: 65px 0 20px 175px;
  max-width: 785px;
}
/* line 297, scss/MONITOR/_main.scss */
.site-header h1 {
  color: #db1d25;
  text-transform: uppercase;
}

/* line 303, scss/MONITOR/_main.scss */
.site-nav-top {
  position: absolute;
  top: 0;
  right: 0;
  text-transform: uppercase;
}
/* line 310, scss/MONITOR/_main.scss */
.site-nav-top .site-links, .site-nav-top .site-social {
  float: left;
}
/* line 312, scss/MONITOR/_main.scss */
.site-nav-top .site-links li, .site-nav-top .site-social li {
  display: inline-block;
  margin: 0 -2px 0 0;
}
/* line 318, scss/MONITOR/_main.scss */
.site-nav-top .site-links a, .site-nav-top .site-social a {
  display: block;
  color: #fff;
}
/* line 321, scss/MONITOR/_main.scss */
.site-nav-top .site-links a:hover, .site-nav-top .site-social a:hover {
  color: #db1d25;
}
/* line 328, scss/MONITOR/_main.scss */
.site-nav-top .site-links {
  background: #000;
  padding: 8px 5px 0 5px;
  margin: 0;
  height: 31px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
/* line 334, scss/MONITOR/_main.scss */
.site-nav-top .site-links li {
  border-left: 1px solid #fff;
  padding: 0 10px;
}
/* line 337, scss/MONITOR/_main.scss */
.site-nav-top .site-links li:first-child {
  border: 0;
}
/* line 344, scss/MONITOR/_main.scss */
.site-nav-top .site-social {
  padding: 0;
  margin: 0 0 0 30px;
}
/* line 347, scss/MONITOR/_main.scss */
.site-nav-top .site-social li {
  margin: 0 -1px;
}
/* line 350, scss/MONITOR/_main.scss */
.site-nav-top .site-social a {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 8px 15px 0 15px;
  width: 32px;
  height: 32px;
}
/* line 356, scss/MONITOR/_main.scss */
.site-nav-top .site-social .flickr {
  background-position: 0 -230px;
  height: 31px;
  width: 32px;
}
/* line 358, scss/MONITOR/_main.scss */
.site-nav-top .site-social .flickr:hover {
  background-position: 0 -167px;
  height: 32px;
  width: 32px;
}
/* line 362, scss/MONITOR/_main.scss */
.site-nav-top .site-social .youtube {
  background-position: 0 -104px;
  height: 31px;
  width: 32px;
}
/* line 364, scss/MONITOR/_main.scss */
.site-nav-top .site-social .youtube:hover {
  background-position: 0 -30px;
  height: 32px;
  width: 32px;
}
/* line 368, scss/MONITOR/_main.scss */
.site-nav-top .site-social .twitter {
  background-position: 0 -199px;
  height: 31px;
  width: 32px;
}
/* line 370, scss/MONITOR/_main.scss */
.site-nav-top .site-social .twitter:hover {
  background-position: 0 -135px;
  height: 32px;
  width: 32px;
}
/* line 374, scss/MONITOR/_main.scss */
.site-nav-top .site-social .facebook {
  background-position: 0 -399px;
  height: 31px;
  width: 32px;
}
/* line 376, scss/MONITOR/_main.scss */
.site-nav-top .site-social .facebook:hover {
  background-position: 0 -261px;
  height: 32px;
  width: 32px;
}
/* line 382, scss/MONITOR/_main.scss */
.site-nav-top .language {
  float: left;
  background: #4b4b4b;
  padding: 0 30px 0 0;
  margin: 0 0 0 10px;
}
/* line 392, scss/MONITOR/_main.scss */
.site-nav-top .lang-dropdown {
  display: inline-block;
  position: relative;
  font-style: normal;
  color: #fff;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  height: 31px;
  padding: 8px 8px 0 8px;
  background: #000;
  margin: 0;
}
/* line 402, scss/MONITOR/_main.scss */
.site-nav-top .lang-dropdown:after {
  content: '';
  background-position: 0 -684px;
  height: 7px;
  width: 13px;
  position: absolute;
  right: -27px;
  top: 50%;
  margin: -2px 0 0 0;
  width: 20px;
  height: 8px;
}
/* line 413, scss/MONITOR/_main.scss */
.site-nav-top .lang-dropdown ul {
  list-style: none;
  padding: 0;
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin: 0;
  background: #5c5c5c;
  padding: 5px;
}
/* line 423, scss/MONITOR/_main.scss */
.site-nav-top .lang-dropdown ul a {
  color: #fff;
}
/* line 428, scss/MONITOR/_main.scss */
.site-nav-top .lang-dropdown:hover ul {
  display: block;
}

/* line 435, scss/MONITOR/_main.scss */
.site-nav {
  border-top: 1px solid #000;
  padding: 20px 0 0 0;
  text-transform: uppercase;
  font-weight: bold;
}
/* line 442, scss/MONITOR/_main.scss */
.site-nav .site-search {
  float: right;
  margin: -3px 0 0 0;
  vertical-align: middle;
  display: inline-block;
  overflow: hidden;
  right: 0;
  top: 70px;
  border: 1px solid #ccc;
}
/* line 451, scss/MONITOR/_main.scss */
.site-nav .site-search .text {
  height: 23px;
  padding: 0 0 0 5px;
  border: 0;
}
/* line 457, scss/MONITOR/_main.scss */
.site-nav .site-search .submit {
  width: 27px;
  height: 25px;
  padding: 0;
  background-position: 0 -521px;
  height: 25px;
  width: 27px;
  text-indent: -9999em;
  border: 0;
  -webkit-appearance: none;
}
/* line 472, scss/MONITOR/_main.scss */
.site-nav .nav-level-1 {
  vertical-align: middle;
  display: inline-block;
  font-size: 1.28571em;
  margin: 0;
  padding: 0;
}
/* line 479, scss/MONITOR/_main.scss */
.site-nav .nav-level-1 > li {
  display: inline-block;
  border-left: 1px solid gray;
  padding: 0 11px;
}
/* line 483, scss/MONITOR/_main.scss */
.site-nav .nav-level-1 > li:first-child {
  border: 0 !important;
  padding-left: 0 !important;
}
/* line 491, scss/MONITOR/_main.scss */
.site-nav a {
  color: #000;
}
/* line 493, scss/MONITOR/_main.scss */
.site-nav a.selected, .site-nav a:hover {
  color: #db1d25;
}
/* line 498, scss/MONITOR/_main.scss */
.site-nav .nav-level-2 {
  display: none;
}

/* line 504, scss/MONITOR/_main.scss */
.sub-nav {
  font-size: 0.875em;
  margin: 7px 0;
}
/* line 515, scss/MONITOR/_main.scss */
.sub-nav ul {
  margin: 0;
}
/* line 517, scss/MONITOR/_main.scss */
.sub-nav ul li {
  display: inline-block;
  margin: 0 15px 0 0;
  padding: 10px 0;
}
/* line 521, scss/MONITOR/_main.scss */
.sub-nav ul li ul {
  display: none;
}
/* line 527, scss/MONITOR/_main.scss */
.sub-nav .level-2, .sub-nav .level-3 {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.3s ease-in;
  -moz-transition: max-height 0.3s ease-in;
  -o-transition: max-height 0.3s ease-in;
  transition: max-height 0.3s ease-in;
}
/* line 532, scss/MONITOR/_main.scss */
.sub-nav .level-2.on, .sub-nav .level-3.on {
  max-height: 3em;
}
/* line 537, scss/MONITOR/_main.scss */
.sub-nav .level-2 {
  background: #4b4b4b;
  text-transform: uppercase;
  font-weight: bold;
  -webkit-box-shadow: 0 1px 1px rgba(26, 23, 24, 0.74);
  -moz-box-shadow: 0 1px 1px rgba(26, 23, 24, 0.74);
  box-shadow: 0 1px 1px rgba(26, 23, 24, 0.74);
  position: relative;
  z-index: 2;
}
/* line 543, scss/MONITOR/_main.scss */
.sub-nav .level-2 a {
  color: #c9c9c9;
}
/* line 545, scss/MONITOR/_main.scss */
.sub-nav .level-2 a:hover {
  color: #FFFFFF;
}
/* line 553, scss/MONITOR/_main.scss */
.sub-nav .level-3 {
  background: #757575;
}
/* line 555, scss/MONITOR/_main.scss */
.sub-nav .level-3 a {
  color: #c9c9c9;
}
/* line 557, scss/MONITOR/_main.scss */
.sub-nav .level-3 a:hover {
  color: #FFFFFF;
}

/* line 564, scss/MONITOR/_main.scss */
.report-search {
  background: #88898d;
  padding: 15px 20px;
  color: #fff;
  overflow: hidden;
  *zoom: 1;
}
/* line 570, scss/MONITOR/_main.scss */
.report-search .label {
  text-transform: uppercase;
  float: left;
  padding: 3px 20px 0 0;
}
/* line 575, scss/MONITOR/_main.scss */
.report-search .content {
  overflow: hidden;
  position: relative;
}
/* line 580, scss/MONITOR/_main.scss */
.report-search .fields {
  display: table;
  width: 100%;
}
/* line 583, scss/MONITOR/_main.scss */
.report-search .fields .cell {
  display: table-cell;
  padding: 0 0 0 5px;
  width: 100px;
}
/* line 587, scss/MONITOR/_main.scss */
.report-search .fields .cell select {
  width: 100%;
  background: #eaeaea;
  border: 0;
  border-radius: 3px;
  padding: 3px;
  font-size: 0.85714em;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
/* line 596, scss/MONITOR/_main.scss */
.report-search .fields .cell input[type=submit] {
  color: #fff;
  border: 0;
  padding: 4px 10px;
  text-transform: uppercase;
  -webkit-border-radius: 4px 2px;
  -moz-border-radius: 4px 3px 3px 4px / 2px 2px 3px 3px;
  border-radius: 4px 3px 3px 4px / 2px 2px 3px 3px;
  background-color: #131313;
  width: 42px;
  background-image: -webkit-gradient(linear, to top, to bottom, color-stop(0%, rgba(29, 29, 29, 0.8)), color-stop(71%, rgba(87, 87, 87, 0.8)), color-stop(100%, rgba(56, 56, 56, 0.8)));
  background-image: -webkit-linear-gradient(to top, rgba(29, 29, 29, 0.8), rgba(87, 87, 87, 0.8) 71%, rgba(56, 56, 56, 0.8));
  background-image: -moz-linear-gradient(to top, rgba(29, 29, 29, 0.8), rgba(87, 87, 87, 0.8) 71%, rgba(56, 56, 56, 0.8));
  background-image: -o-linear-gradient(to top, rgba(29, 29, 29, 0.8), rgba(87, 87, 87, 0.8) 71%, rgba(56, 56, 56, 0.8));
  background-image: linear-gradient(to top, rgba(29, 29, 29, 0.8), rgba(87, 87, 87, 0.8) 71%, rgba(56, 56, 56, 0.8));
}
/* line 606, scss/MONITOR/_main.scss */
.report-search .fields .cell.right {
  text-align: right;
  width: 30px;
  position: relative;
}
/* line 610, scss/MONITOR/_main.scss */
.report-search .fields .cell.right .loader {
  position: absolute;
  right: 8px;
  top: 0;
  width: 26px;
  display: none;
}

/*Breadcrumbs*/
/* line 624, scss/MONITOR/_main.scss */
.breadcrumbs {
  font-size: 0.85714em;
  margin: 0 0 25px 0;
}
/* line 628, scss/MONITOR/_main.scss */
.breadcrumbs ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
/* line 633, scss/MONITOR/_main.scss */
.breadcrumbs li {
  display: inline-block;
}
/* line 636, scss/MONITOR/_main.scss */
.breadcrumbs a {
  color: #db1d25;
}
/* line 638, scss/MONITOR/_main.scss */
.breadcrumbs a:hover {
  color: #000;
}
/* line 641, scss/MONITOR/_main.scss */
.breadcrumbs a:after {
  content: '//';
}

/*Footer*/
/* line 650, scss/MONITOR/_main.scss */
.site-footer {
  background: #000;
  padding: 20px 0 0 0;
  min-height: 200px;
  text-align: center;
  overflow: hidden;
  *zoom: 1;
  font-size: 0.86667em;
}
/* line 658, scss/MONITOR/_main.scss */
.site-footer .copyright {
  overflow: hidden;
  color: #aaa;
  float: left;
  font-size: 0.78571em;
  line-height: 15px;
}
/* line 669, scss/MONITOR/_main.scss */
.site-footer .footer-nav {
  float: right;
  margin: 0 0 20px 0;
  text-transform: uppercase;
}
/* line 673, scss/MONITOR/_main.scss */
.site-footer .footer-nav ul {
  list-style: none;
  margin: 0;
}
/* line 678, scss/MONITOR/_main.scss */
.site-footer .footer-nav li {
  display: inline;
  padding: 0 10px;
  border-left: 1px solid gray;
  vertical-align: middle;
}
/* line 683, scss/MONITOR/_main.scss */
.site-footer .footer-nav li:first-child {
  border-left: 0;
  padding-left: 0;
}
/* line 689, scss/MONITOR/_main.scss */
.site-footer .footer-nav a {
  color: #aaa;
}
/* line 691, scss/MONITOR/_main.scss */
.site-footer .footer-nav a:hover {
  color: #fff;
}
/* line 698, scss/MONITOR/_main.scss */
.site-footer .footer-social {
  padding: 0;
  margin: 0 0 0 10px;
  display: inline-block;
}
/* line 703, scss/MONITOR/_main.scss */
.site-footer .footer-social li {
  display: inline-block;
  padding: 0;
  border: 0;
}
/* line 708, scss/MONITOR/_main.scss */
.site-footer .footer-social a {
  display: inline-block;
  width: 20px;
  height: 20px;
}
/* line 713, scss/MONITOR/_main.scss */
.site-footer .footer-social .flickr {
  background-position: 0 -644px;
  height: 20px;
  width: 20px;
}
/* line 716, scss/MONITOR/_main.scss */
.site-footer .footer-social .youtube {
  background-position: 0 -482px;
  height: 20px;
  width: 20px;
}
/* line 719, scss/MONITOR/_main.scss */
.site-footer .footer-social .twitter {
  background-position: 0 -579px;
  height: 20px;
  width: 20px;
}
/* line 722, scss/MONITOR/_main.scss */
.site-footer .footer-social .facebook {
  background-position: 0 -664px;
  height: 20px;
  width: 20px;
}

/* line 730, scss/MONITOR/_main.scss */
.main {
  width: 100%;
  background-size: cover;
  padding: 20px 0;
}

/* line 736, scss/MONITOR/_main.scss */
.sidebar {
  margin: 58px 0;
  width: 275px;
  float: right;
}

/*Columns*/
/* line 746, scss/MONITOR/_main.scss */
.columns {
  width: 100%;
  max-width: 960px;
  overflow: hidden;
}
/* line 759, scss/MONITOR/_main.scss */
.columns .column-1-in-3 {
  float: left;
  width: 31.91489%;
  margin-left: 2.12766%;
}
/* line 27, scss/MONITOR/_base.scss */
.columns .column-1-in-3:first-child {
  margin-left: 0;
}
/* line 763, scss/MONITOR/_main.scss */
.columns .column-2-in-3 {
  float: left;
  width: 65.95745%;
  margin-left: 2.12766%;
}
/* line 27, scss/MONITOR/_base.scss */
.columns .column-2-in-3:first-child {
  margin-left: 0;
}

/****MODULES****/
/* line 771, scss/MONITOR/_main.scss */
.article-main {
  width: 600px;
}

/* line 776, scss/MONITOR/_main.scss */
.article-page, .countryprofile-select, .countryprofile-map {
  padding: 10px;
  margin: 0 50px 20px 0;
  color: #4b4b4b;
}
/* line 782, scss/MONITOR/_main.scss */
.article-page .ph, .countryprofile-select .ph, .countryprofile-map .ph {
  margin: 0 -50px 20px -10px;
  padding: 0 0 10px 10px;
  line-height: 1em;
}
/* line 788, scss/MONITOR/_main.scss */
.article-page .subheading, .countryprofile-select .subheading, .countryprofile-map .subheading, .article-page .Subheading, .countryprofile-select .Subheading, .countryprofile-map .Subheading {
  color: #000000;
  font-size: 18px;
  font-weight: bold;
  margin: 25px 0 10px;
}
/* line 795, scss/MONITOR/_main.scss */
.article-page .photoCaption, .countryprofile-select .photoCaption, .countryprofile-map .photoCaption {
  color: #808080;
  display: block;
  font-size: 0.8em;
  line-height: 16px;
  width: 75%;
}
/* line 803, scss/MONITOR/_main.scss */
.article-page ul, .countryprofile-select ul, .countryprofile-map ul {
  margin-left: -17px;
}
/* line 805, scss/MONITOR/_main.scss */
.article-page ul li, .countryprofile-select ul li, .countryprofile-map ul li {
  margin-bottom: 10px;
  padding-left: 10px;
}
/* line 811, scss/MONITOR/_main.scss */
.article-page .h2, .countryprofile-select .h2, .countryprofile-map .h2 {
  color: #000000;
  font-weight: normal;
}
/* line 816, scss/MONITOR/_main.scss */
.article-page h3, .countryprofile-select h3, .countryprofile-map h3 {
  font-size: 1.3em;
  margin: 1.5em 0 0.5em;
}
/* line 821, scss/MONITOR/_main.scss */
.article-page table, .countryprofile-select table, .countryprofile-map table {
  width: 600px;
  font-size: 12px;
}
/* line 824, scss/MONITOR/_main.scss */
.article-page table tr, .countryprofile-select table tr, .countryprofile-map table tr {
  border-top: 1px solid #000000;
  vertical-align: top;
}

/* line 831, scss/MONITOR/_main.scss */
.page-content {
  background: #e9e9ea;
}
/* line 834, scss/MONITOR/_main.scss */
.page-content .inner {
  background: #fff;
  padding: 25px 25px 50px 25px;
  min-height: 600px;
}
@media only screen and (min-width: 1280px) {
  /* line 842, scss/MONITOR/_main.scss */
  .page-content .inner {
    padding-left: 50px;
    padding-right: 50px;
  }
}

/* line 849, scss/MONITOR/_main.scss */
.signup-form {
  padding: 10px 60px 18px 25px;
  height: 95px;
  position: relative;
  background: url('/img/monitor/signup-form/bg.png?1398178067') #ededed;
}
/* line 855, scss/MONITOR/_main.scss */
.signup-form:after {
  content: '';
  display: block;
  background-position: 0 -329px;
  height: 39px;
  width: 41px;
  width: 41px;
  height: 39px;
  position: absolute;
  right: 15px;
  top: 22px;
}
/* line 866, scss/MONITOR/_main.scss */
.signup-form p {
  width: 192px;
  margin: 0 0 9px;
  font-size: 14px;
}
/* line 870, scss/MONITOR/_main.scss */
.signup-form p strong {
  color: #DB1D25;
}
/* line 875, scss/MONITOR/_main.scss */
.signup-form .intro {
  height: 40px;
  margin: 0 0 15px 0;
  color: #000;
}
/* line 882, scss/MONITOR/_main.scss */
.signup-form .inputs {
  -webkit-box-shadow: inset -1px 4px 5px rgba(213, 213, 213, 0.75);
  -moz-box-shadow: inset -1px 4px 5px rgba(213, 213, 213, 0.75);
  box-shadow: inset -1px 4px 5px rgba(213, 213, 213, 0.75);
  background: none;
  border: 0;
  height: 34px;
  margin: 0 -34px 0 0;
  position: relative;
  background: #dedede;
  overflow: hidden;
  top: -5px;
}
/* line 895, scss/MONITOR/_main.scss */
.signup-form .input-text {
  display: block;
  padding: 0 5px;
  position: absolute;
  height: 34px;
  right: 34px;
  left: 0;
  -webkit-appearance: none;
  border: 0;
  background: none;
}
/* line 906, scss/MONITOR/_main.scss */
.signup-form .input-submit {
  width: 34px;
  height: 34px;
  text-indent: -9999em;
  position: absolute;
  right: 0;
  border: 0;
}

/* line 918, scss/MONITOR/_main.scss */
.media, .news-list li, .story, .home-news-list li, .feed-list li {
  width: 98%;
  overflow: hidden;
}
/* line 921, scss/MONITOR/_main.scss */
.media .image, .news-list li .image, .story .image, .home-news-list li .image, .feed-list li .image {
  float: left;
}
/* line 924, scss/MONITOR/_main.scss */
.media .text, .news-list li .text, .story .text, .home-news-list li .text, .feed-list li .text {
  overflow: hidden;
}

/*Tabs*/
/* line 933, scss/MONITOR/_main.scss */
.tab-nav ul {
  list-style: none;
  margin: 0 !important;
  padding: 0;
}
/* line 939, scss/MONITOR/_main.scss */
.tab-nav li {
  display: inline-block;
  margin: 0 -2px 0 0 !important;
  padding: 0 !important;
}
/* line 945, scss/MONITOR/_main.scss */
.tab-nav a {
  display: block;
  background: gray;
  color: #fff;
  padding: 5px 10px 5px 10px;
  margin: 0 0 4px 0;
}
/* line 952, scss/MONITOR/_main.scss */
.tab-nav a.selected {
  background: #db1d25;
  /*border-bottom: 1px solid $red;*/
  margin: 0;
}

/* line 963, scss/MONITOR/_main.scss */
.news-tabs ul {
  margin-left: 0 !important;
}
/* line 965, scss/MONITOR/_main.scss */
.news-tabs ul a {
  margin: 0 0 1px 0;
}
/* line 968, scss/MONITOR/_main.scss */
.news-tabs ul a.selected {
  border-bottom: 1px solid #db1d25;
}

/* line 977, scss/MONITOR/_main.scss */
.link-module ul {
  margin-left: 0 !important;
}
/* line 979, scss/MONITOR/_main.scss */
.link-module ul a {
  margin: 0 0 1px 0;
}
/* line 982, scss/MONITOR/_main.scss */
.link-module ul a.selected {
  border-bottom: 1px solid #db1d25;
}
/* line 991, scss/MONITOR/_main.scss */
.link-module .news-list .external a {
  position: relative;
}
/* line 993, scss/MONITOR/_main.scss */
.link-module .news-list .external a:after {
  content: url("/img/cmc/icons/external-link.png");
  position: absolute;
  right: 5px;
  top: 40%;
}
/* line 1001, scss/MONITOR/_main.scss */
.link-module .news-list .external article {
  width: 90%;
}
/* line 1006, scss/MONITOR/_main.scss */
.link-module .news-list .external p:after {
  content: normal;
}
/* line 1014, scss/MONITOR/_main.scss */
.link-module .news-list .internal a {
  position: relative;
}
/* line 1016, scss/MONITOR/_main.scss */
.link-module .news-list .internal a:after {
  content: url("/img/cmc/icons/list-arrow.png");
  position: absolute;
  right: 5px;
  top: 40%;
}
/* line 1024, scss/MONITOR/_main.scss */
.link-module .news-list .internal article {
  width: 90%;
}
/* line 1029, scss/MONITOR/_main.scss */
.link-module .news-list .internal p:after {
  content: normal;
}
/* line 1037, scss/MONITOR/_main.scss */
.link-module .news-list .media a, .link-module .news-list li a, .link-module .news-list .story a {
  position: relative;
}
/* line 1039, scss/MONITOR/_main.scss */
.link-module .news-list .media a:after, .link-module .news-list li a:after, .link-module .news-list .story a:after {
  content: url("/img/cmc/icons/media-arrow.png");
  position: absolute;
  right: 5px;
  top: 25%;
}
/* line 1047, scss/MONITOR/_main.scss */
.link-module .news-list .media article, .link-module .news-list li article, .link-module .news-list .story article {
  width: 90%;
}
/* line 1052, scss/MONITOR/_main.scss */
.link-module .news-list .media p:after, .link-module .news-list li p:after, .link-module .news-list .story p:after {
  content: normal;
}

/* line 1061, scss/MONITOR/_main.scss */
.tab-content {
  display: none;
  position: relative;
}
/* line 1064, scss/MONITOR/_main.scss */
.no-js .tab-content {
  display: block;
}
/* line 1069, scss/MONITOR/_main.scss */
.tab-content .pages-control {
  right: 4px;
}
/* line 1071, scss/MONITOR/_main.scss */
.tab-content .pages-control.up {
  top: -22px;
}
/* line 1074, scss/MONITOR/_main.scss */
.tab-content .pages-control.down {
  bottom: -31px;
}

/*Pages*/
/* line 1086, scss/MONITOR/_main.scss */
.pages-control ul {
  list-style: none;
  padding: 13px 0;
  margin: 0;
}
/* line 1091, scss/MONITOR/_main.scss */
.pages-control li {
  display: inline-block;
  font-size: 12px;
}
/* line 1095, scss/MONITOR/_main.scss */
.pages-control a {
  display: block;
  color: #000;
}
/* line 1099, scss/MONITOR/_main.scss */
.pages-control .forward, .pages-control .back, .pages-control .article-share .back-to-top, .article-share .pages-control .back-to-top, .pages-control .article-footer .back-to-top, .article-footer .pages-control .back-to-top, .pages-control .article-share .print-friendly, .article-share .pages-control .print-friendly, .pages-control .article-footer .print-friendly, .article-footer .pages-control .print-friendly, .pages-control .article-share .download, .article-share .pages-control .download, .pages-control .article-footer .download, .article-footer .pages-control .download {
  background: #FFF;
  color: #000;
  padding: 0 5px 2px 5px;
  line-height: 1;
  font-size: 15px;
}

/* line 1119, scss/MONITOR/_main.scss */
.home-footer, .footer-boxes {
  margin: 30px 0 0 0;
}
/* line 1124, scss/MONITOR/_main.scss */
.home-footer .home-footer-box, .home-footer .footer-box, .footer-boxes .home-footer-box, .footer-boxes .footer-box {
  margin: 0 0 20px 0;
  font-size: 1.07143em;
  position: relative;
}
/* line 1130, scss/MONITOR/_main.scss */
.home-footer .home-footer-box header, .home-footer .footer-box header, .footer-boxes .home-footer-box header, .footer-boxes .footer-box header {
  border-bottom: 1px solid #CCC;
  margin: 0 0 15px 0;
}
/* line 1133, scss/MONITOR/_main.scss */
.home-footer .home-footer-box header .h4, .home-footer .footer-box header .h4, .footer-boxes .home-footer-box header .h4, .footer-boxes .footer-box header .h4 {
  color: #5B5B5B;
}
/* line 1139, scss/MONITOR/_main.scss */
.home-footer .home-footer-box .h4, .home-footer .footer-box .h4, .footer-boxes .home-footer-box .h4, .footer-boxes .footer-box .h4 {
  line-height: 1;
  font-size: 1.14286em;
}
/* line 1147, scss/MONITOR/_main.scss */
.home-footer .home-footer-box .cta, .home-footer .footer-box .cta, .footer-boxes .home-footer-box .cta, .footer-boxes .footer-box .cta {
  display: inline-block;
  color: #fff;
}

/*News List*/
/* line 1160, scss/MONITOR/_main.scss */
.news-list {
  list-style: none;
  padding: 0;
  max-width: 655px;
  margin: 0 0 0 0;
}
/* line 1166, scss/MONITOR/_main.scss */
.news-list li {
  font-size: 1em;
  border-bottom: 1px solid #000;
  margin-bottom: 0 !important;
  position: relative;
}
/* line 1173, scss/MONITOR/_main.scss */
.news-list li article {
  overflow: hidden;
  *zoom: 1;
  padding: 16px 10px;
}
/* line 1178, scss/MONITOR/_main.scss */
.news-list li .image {
  margin: 0 15px 0 0;
}
/* line 1182, scss/MONITOR/_main.scss */
.news-list li .h2 {
  text-transform: none;
  color: #454545;
  margin: 0 0 6px;
  font-size: 18px;
  line-height: 1.2;
}
/* line 1191, scss/MONITOR/_main.scss */
.news-list li .h3 {
  text-transform: uppercase;
  margin: 0;
}
/* line 1197, scss/MONITOR/_main.scss */
.news-list li .date {
  color: #454545;
}
/* line 1201, scss/MONITOR/_main.scss */
.news-list li .type {
  font-weight: bold;
  text-transform: uppercase;
  color: #db1d25;
  margin: 0 0 0.3em 0;
}
/* line 1208, scss/MONITOR/_main.scss */
.news-list li p {
  line-height: 22px;
  margin: 0;
  color: #4b4b4b;
}
/* line 1212, scss/MONITOR/_main.scss */
.news-list li p:last-child:after {
  padding-left: 5px;
  color: #000000;
  font-weight: bold;
  position: relative;
  top: 2px;
}
/* line 1222, scss/MONITOR/_main.scss */
.news-list li a {
  color: inherit;
  display: block;
}
/* line 1233, scss/MONITOR/_main.scss */
.news-list li .media a:after, .news-list li li a:after, .news-list li .story a:after {
  content: '';
  height: 30px;
  width: 40px;
  float: right;
  background-position: 0 0;
  height: 30px;
  width: 40px;
  position: absolute;
  top: 50%;
  right: 0;
  margin: -15px 0 0 0;
}
/* line 1249, scss/MONITOR/_main.scss */
.news-list li .internal a:after {
  content: '';
  height: 31px;
  width: 21px;
  float: right;
  background-position: 0 -368px;
  height: 31px;
  width: 17px;
}
/* line 1259, scss/MONITOR/_main.scss */
.news-list li .external a {
  position: relative;
}
/* line 1261, scss/MONITOR/_main.scss */
.news-list li .external a:after {
  background: none;
  content: url("/img/cmc/icons/external-link.png");
  position: absolute;
  right: 5px;
  top: 40%;
}

/* line 1275, scss/MONITOR/_main.scss */
.sidebar-links, .sidebar-links-external {
  font-size: 0.92857em;
  margin: 0 0 30px 0;
  position: relative;
}
/* line 1280, scss/MONITOR/_main.scss */
.sidebar-links header, .sidebar-links-external header {
  border-bottom: 1px solid #ccc;
  margin: 0 0 5px 0;
  color: #999;
  position: relative;
}
/* line 1287, scss/MONITOR/_main.scss */
.sidebar-links .view-all, .sidebar-links-external .view-all {
  position: absolute;
  right: 0;
  top: 0;
  color: #000;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 0.85714em;
  top: 5px;
}
/* line 1296, scss/MONITOR/_main.scss */
.sidebar-links .view-all:hover, .sidebar-links-external .view-all:hover {
  color: #db1d25;
}
/* line 1301, scss/MONITOR/_main.scss */
.sidebar-links .h4, .sidebar-links-external .h4 {
  text-transform: uppercase;
  font-size: 1em;
}
/* line 1306, scss/MONITOR/_main.scss */
.sidebar-links ul, .sidebar-links-external ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
/* line 1311, scss/MONITOR/_main.scss */
.sidebar-links ul li, .sidebar-links-external ul li {
  margin: 0 0 5px 0;
  font-weight: bold;
}
/* line 1315, scss/MONITOR/_main.scss */
.sidebar-links ul li .description, .sidebar-links-external ul li .description {
  text-transform: none;
  font-weight: normal;
  color: gray;
}
/* line 1323, scss/MONITOR/_main.scss */
.sidebar-links ul a, .sidebar-links-external ul a, .sidebar-links ul .form, .sidebar-links-external ul .form {
  display: block;
  color: #fff;
  padding: 10px 8px;
  position: relative;
}
/* line 1334, scss/MONITOR/_main.scss */
.sidebar-links ul a:after, .sidebar-links-external ul a:after {
  position: absolute;
  right: 10px;
  top: 50%;
  margin: -7px 0 0 0;
}
/* line 1341, scss/MONITOR/_main.scss */
.sidebar-links ul a:hover, .sidebar-links-external ul a:hover {
  background: #c21a21;
}
/* line 1349, scss/MONITOR/_main.scss */
.sidebar-links ul .form select, .sidebar-links-external ul .form select {
  width: 170px;
  margin: 5px 0 0 0;
  background: #eaeaea;
  border: 0;
  border-radius: 3px;
  padding: 3px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
/* line 1365, scss/MONITOR/_main.scss */
.sidebar-links.bg-dark ul a, .bg-dark.sidebar-links-external ul a, .sidebar-links.bg-dark ul .form, .bg-dark.sidebar-links-external ul .form {
  background: #4b4b4b;
}
/* line 1367, scss/MONITOR/_main.scss */
.sidebar-links.bg-dark ul a:hover, .bg-dark.sidebar-links-external ul a:hover, .sidebar-links.bg-dark ul .form:hover, .bg-dark.sidebar-links-external ul .form:hover {
  background: #c21a21;
}
/* line 1372, scss/MONITOR/_main.scss */
.sidebar-links.bg-dark ul li .description, .bg-dark.sidebar-links-external ul li .description {
  color: #f2f0ef;
}
/* line 1380, scss/MONITOR/_main.scss */
.sidebar-links.bg-light ul a, .bg-light.sidebar-links-external ul a, .sidebar-links.bg-light .form, .bg-light.sidebar-links-external .form {
  background: #9a9a9b;
}
/* line 1382, scss/MONITOR/_main.scss */
.sidebar-links.bg-light ul a:hover, .bg-light.sidebar-links-external ul a:hover, .sidebar-links.bg-light .form:hover, .bg-light.sidebar-links-external .form:hover {
  background: #c21a21;
}
/* line 1389, scss/MONITOR/_main.scss */
.sidebar-links.bg-red ul a, .bg-red.sidebar-links-external ul a, .sidebar-links.bg-red .form, .bg-red.sidebar-links-external .form {
  background: #db1d25;
}
/* line 1391, scss/MONITOR/_main.scss */
.sidebar-links.bg-red ul a:hover, .bg-red.sidebar-links-external ul a:hover, .sidebar-links.bg-red .form:hover, .bg-red.sidebar-links-external .form:hover {
  background: #c21a21;
}
/* line 1397, scss/MONITOR/_main.scss */
.sidebar-links.tall, .tall.sidebar-links-external {
  font-weight: bold;
}
/* line 1399, scss/MONITOR/_main.scss */
.sidebar-links.tall ul, .tall.sidebar-links-external ul {
  font-size: 1.14286em;
}
/* line 1401, scss/MONITOR/_main.scss */
.sidebar-links.tall ul li a, .tall.sidebar-links-external ul li a {
  padding: 15px 8px;
}

/* line 1409, scss/MONITOR/_main.scss */
.sidebar-links-external {
  font-size: 0.85714em;
}
/* line 1413, scss/MONITOR/_main.scss */
.sidebar-links-external ul li {
  border-bottom: 1px solid #ccc;
}
/* line 1415, scss/MONITOR/_main.scss */
.sidebar-links-external ul li a {
  background: none;
  color: #000;
}
/* line 1418, scss/MONITOR/_main.scss */
.sidebar-links-external ul li a:hover {
  background: none;
}
/* line 1420, scss/MONITOR/_main.scss */
.sidebar-links-external ul li a:hover .title {
  color: #C21A21;
}

/* line 1429, scss/MONITOR/_main.scss */
.sidebar-signup {
  color: gray;
  font-size: 1em;
  padding: 15px 0;
}
/* line 1433, scss/MONITOR/_main.scss */
.sidebar-signup a {
  display: inline-block;
  color: #fff;
  background: #db1d25;
  font-size: 1.14286em;
  padding: 5px 10px 5px 15px;
  border-radius: 3px;
}

/* line 1449, scss/MONITOR/_main.scss */
.sidebar-back {
  padding: 15px 30px;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  display: block;
  /*margin: 0 0 40px 0;*/
  text-transform: uppercase;
  font-weight: bold;
  position: relative;
  text-align: left;
}
/* line 1459, scss/MONITOR/_main.scss */
.sidebar-back:before {
  position: absolute;
  left: 10px;
  top: 50%;
  margin: -7px 0 0 0;
}

/* line 1468, scss/MONITOR/_main.scss */
.sidebar-image {
  margin: 0 0 30px 0;
}

/* line 1472, scss/MONITOR/_main.scss */
.story {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background: #f1f2f2;
  padding: 20px 15px;
  font-size: 0.85714em;
  margin: 0 0 30px 0;
  position: relative;
}
/* line 1481, scss/MONITOR/_main.scss */
.story .h3 {
  font-size: 1.66667em;
  color: #db1d25;
  margin: 0;
}
/* line 1487, scss/MONITOR/_main.scss */
.story .h4 {
  font-size: 1.25em;
}
/* line 1491, scss/MONITOR/_main.scss */
.story .image {
  padding: 0 15px 0 0;
}
/* line 1495, scss/MONITOR/_main.scss */
.story .cta {
  position: absolute;
  right: 0;
  bottom: 0;
  color: #fff;
  background: #db1d25;
  padding: 15px 20px;
  text-transform: capitalize;
  font-size: 1.14286em;
}
/* line 1505, scss/MONITOR/_main.scss */
.story .cta:after {
  content: "\00a0\e600";
}

/* line 1517, scss/MONITOR/_main.scss */
.page-section {
  margin: 0 0 15px 0;
}
/* line 1519, scss/MONITOR/_main.scss */
.page-section .header-bar {
  background: #000;
  padding: 7px 12px;
  color: #fff;
  overflow: hidden;
  *zoom: 1;
}
/* line 1525, scss/MONITOR/_main.scss */
.page-section .header-bar .h4 {
  float: left;
  margin: 0;
}
/* line 1531, scss/MONITOR/_main.scss */
.page-section .header-bar .cta {
  float: right;
  margin: 3px 0 0 0;
  color: #fff;
}

/* line 1550, scss/MONITOR/_main.scss */
.monitor-updates .newsletter-intro {
  padding: 12px;
}
/* line 1558, scss/MONITOR/_main.scss */
.monitor-updates .update {
  border-top: 1px solid #ccc;
  overflow: hidden;
  *zoom: 1;
  position: relative;
  height: 264px;
}
/* line 1564, scss/MONITOR/_main.scss */
.monitor-updates .update > a {
  display: block;
  color: inherit;
  padding: 24px 70px 20px 10px;
}
/* line 1570, scss/MONITOR/_main.scss */
.monitor-updates .update .image {
  float: left;
  margin: 0 15px 15px 0;
  overflow: hidden;
  width: 133px;
}
/* line 1578, scss/MONITOR/_main.scss */
.monitor-updates .update img {
  width: 100%;
}
/* line 1580, scss/MONITOR/_main.scss */
.monitor-updates .update .text {
  overflow: hidden;
  margin: 0 0 20px 0;
  color: #4b4b4b;
}
/* line 1586, scss/MONITOR/_main.scss */
.monitor-updates .update .text h1 {
  color: #000;
}
/* line 1591, scss/MONITOR/_main.scss */
.monitor-updates .update .published {
  clear: both;
  color: #727272;
}
/* line 1596, scss/MONITOR/_main.scss */
.monitor-updates .update:after {
  color: #db1d25;
  position: absolute;
  font-size: 30px;
  top: 50%;
  right: 10px;
  margin: -15px 0 0 0;
}
/* line 1606, scss/MONITOR/_main.scss */
.monitor-updates .update:hover:after {
  color: #000;
}

/* line 1615, scss/MONITOR/_main.scss */
.monitor-tweets {
  padding: 30px 0;
  border-bottom: 1px solid #ccc;
}
/* line 1618, scss/MONITOR/_main.scss */
.monitor-tweets .tweet {
  padding: 0 15px;
}
/* line 1621, scss/MONITOR/_main.scss */
.monitor-tweets .tweet p {
  color: #4b4b4b;
}

/* line 1627, scss/MONITOR/_main.scss */
.countryprofile-updates {
  margin: 15px 0;
}
/* line 1630, scss/MONITOR/_main.scss */
.countryprofile-updates li {
  margin: 5px 0;
}
/* line 1634, scss/MONITOR/_main.scss */
.countryprofile-updates a {
  display: block;
  color: #000;
  padding: 10px 8px;
  background: #ecedef;
  position: relative;
}
/* line 1641, scss/MONITOR/_main.scss */
.countryprofile-updates a .country {
  font-weight: bold;
  text-transform: uppercase;
}
/* line 1646, scss/MONITOR/_main.scss */
.countryprofile-updates a .date {
  font-size: 0.92857em;
  color: #6f6f6f;
}
/* line 1651, scss/MONITOR/_main.scss */
.countryprofile-updates a:after {
  position: absolute;
  right: 10px;
  top: 50%;
  margin: -7px 0 0 0;
  color: #db1d25;
}
/* line 1659, scss/MONITOR/_main.scss */
.countryprofile-updates a:hover {
  background: #db1d25;
  color: #fff;
}
/* line 1662, scss/MONITOR/_main.scss */
.countryprofile-updates a:hover .date {
  color: #fff;
}
/* line 1665, scss/MONITOR/_main.scss */
.countryprofile-updates a:hover:after {
  color: #fff;
}

/* line 1673, scss/MONITOR/_main.scss */
.countryprofile-header {
  position: relative;
  margin: 0 -50px 20px 0;
}
/* line 1680, scss/MONITOR/_main.scss */
.article-page .countryprofile-header .ph, .countryprofile-select .countryprofile-header .ph, .countryprofile-map .countryprofile-header .ph {
  border: 0;
  margin: 0;
  padding: 0;
}
/* line 1691, scss/MONITOR/_main.scss */
.countryprofile-header h2 {
  margin: 0 0 0 0;
}
/* line 1695, scss/MONITOR/_main.scss */
.countryprofile-header .date {
  position: absolute;
  right: 0;
  bottom: 3px;
  font-size: 1.07143em;
}

/* line 1704, scss/MONITOR/_main.scss */
.countryprofile-overview {
  margin: 0 -50px 20px -10px;
}
/* line 1707, scss/MONITOR/_main.scss */
.countryprofile-overview h3 {
  background: #bdbdbd;
  color: #fff;
  padding: 5px 10px;
  font-size: 1.14286em;
  margin: 0;
}
/* line 1716, scss/MONITOR/_main.scss */
.countryprofile-overview table {
  font-size: 0.85714em;
  width: 100%;
}
/* line 1721, scss/MONITOR/_main.scss */
.countryprofile-overview tr {
  border-bottom: 1px solid #ccc;
}
/* line 1725, scss/MONITOR/_main.scss */
/*.countryprofile-overview td {
  padding: 8px 20px;
}*/

/* line 1730, scss/MONITOR/_main.scss */
.countryprofile-report {
  margin: 0 -50px 20px 0px;
}
/* line 1733, scss/MONITOR/_main.scss */
.countryprofile-report table {
  font-size: 0.85714em;
  width: 100%;
}
/* line 1742, scss/MONITOR/_main.scss */
.countryprofile-report td {
  /*padding: 8px 20px;*/
  min-width: 100px;
}

/* line 1748, scss/MONITOR/_main.scss */
.countryprofile-select {
  border-top: 1px solid #000;
  padding-top: 35px;
  padding-bottom: 35px;
}
/* line 1754, scss/MONITOR/_main.scss */
.countryprofile-select select {
  width: 170px;
  margin: 5px 0 0 0;
  background: #eaeaea;
  border: 0;
  border-radius: 3px;
  padding: 3px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 1766, scss/MONITOR/_main.scss */
.countryprofile-map {
  border-top: 1px solid #ccc;
  padding-top: 35px;
  padding-bottom: 35px;
}
/* line 1772, scss/MONITOR/_main.scss */
.countryprofile-map .article-footer {
  margin: 60px -10px 0 -10px;
  padding: 10px;
}

/* line 1788, scss/MONITOR/_main.scss */
.home-intro h1 {
  text-transform: uppercase;
  font-size: 2em;
  line-height: 1;
}
/* line 1794, scss/MONITOR/_main.scss */
.home-intro p {
  color: #4b4b4b;
}

/* line 1799, scss/MONITOR/_main.scss */
.home-slider {
  -webkit-box-shadow: 0px 15px 10px -10px rgba(50, 50, 50, 0.6);
  -moz-box-shadow: 0px 15px 10px -10px rgba(50, 50, 50, 0.6);
  box-shadow: 0px 15px 10px -10px rgba(50, 50, 50, 0.6);
  position: relative;
  margin: 0 0 30px 0;
}
/* line 1805, scss/MONITOR/_main.scss */
.home-slider .slides {
  padding: 0;
  margin: 0;
}
/* line 1810, scss/MONITOR/_main.scss */
.home-slider .flex-control-paging {
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  text-align: center;
  padding: 0;
  margin: 0;
}
/* line 1818, scss/MONITOR/_main.scss */
.home-slider .flex-control-paging a {
  display: block;
  width: 13px;
  height: 13px;
  background-position: 0 -631px;
  height: 13px;
  width: 13px;
  text-indent: -9999em;
  cursor: pointer;
}
/* line 1827, scss/MONITOR/_main.scss */
.home-slider .flex-control-paging a.flex-active, .home-slider .flex-control-paging a:hover {
  background-position: 0 -546px;
  height: 13px;
  width: 13px;
}
/* line 1831, scss/MONITOR/_main.scss */
.home-slider .flex-control-paging li {
  display: inline-block;
  margin: 0 2px;
}
/* line 1837, scss/MONITOR/_main.scss */
.home-slider .slide {
  background: #757d0c;
}
/* line 1839, scss/MONITOR/_main.scss */
.home-slider .slide article {
  width: 100%;
  overflow: hidden;
  height: 333px;
  background: -webkit-linear-gradient(45deg, #252525, #000000);
  background: -moz-linear-gradient(45deg, #252525, #000000);
  background: -o-linear-gradient(45deg, #252525, #000000);
  background: linear-gradient(45deg, #252525, #000000);
  position: relative;
}
/* line 1852, scss/MONITOR/_main.scss */
.home-slider .slide .image {
  width: 100%;
}
/* line 1856, scss/MONITOR/_main.scss */
.home-slider .slide .image img {
  display: block;
  width: 100%;
}
/* line 1861, scss/MONITOR/_main.scss */
.home-slider .slide .text {
  width: 326px;
  left: 156px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background-image: -webkit-gradient(linear, to top, to bottom, color-stop(0%, #e8e8e8), color-stop(28%, #fefefe), color-stop(29%, #ffffff));
  background-image: -webkit-linear-gradient(to top, #e8e8e8, #fefefe 28%, #ffffff 29%);
  background-image: -moz-linear-gradient(to top, #e8e8e8, #fefefe 28%, #ffffff 29%);
  background-image: -o-linear-gradient(to top, #e8e8e8, #fefefe 28%, #ffffff 29%);
  background-image: linear-gradient(to top, #e8e8e8, #fefefe 28%, #ffffff 29%);
  font-size: 0.92857em;
  overflow: hidden;
  padding: 15px 15px 40px 15px;
  position: absolute;
  bottom: 0;
  text-align: center;
}
/* line 1862, scss/MONITOR/_main.scss */
.home-slider .slide .text p {
  margin: 0;
}
/* line 1877, scss/MONITOR/_main.scss */
.home-slider .slide .text a {
  color: #db1d25;
  display: inline-block;
}
/* line 1881, scss/MONITOR/_main.scss */
.home-slider .slide .text .cta {
  display: inline-block;
}
/* line 1886, scss/MONITOR/_main.scss */
.home-slider .slide .heading {
  color: #000;
  text-transform: uppercase;
  font-size: 2em;
  line-height: 1;
}

/* line 1898, scss/MONITOR/_main.scss */
.home-intro-text {
  font-size: 1.21429em;
  text-transform: uppercase;
  max-width: 740px;
  margin: 0 auto 30px auto;
  text-align: center;
}

/* line 1907, scss/MONITOR/_main.scss */
.section-campaigns, .home-campaigns {
  margin: 0 0 20px 0;
}

/* line 1911, scss/MONITOR/_main.scss */
.campaign-box, .home-campaign-box, .campaign-select-box {
  margin: 0 0 20px 0;
  box-shadow: 0 15px 10px -10px rgba(50, 50, 50, 0.6);
  position: relative;
}
/* line 1917, scss/MONITOR/_main.scss */
.campaign-box .image, .home-campaign-box .image, .campaign-select-box .image {
  overflow: hidden;
}
/* line 1919, scss/MONITOR/_main.scss */
.campaign-box .image img, .home-campaign-box .image img, .campaign-select-box .image img {
  width: 100%;
}
/* line 1924, scss/MONITOR/_main.scss */
.campaign-box .central img, .home-campaign-box .central img, .campaign-select-box .central img {
  margin-left: -40px;
}
/* line 1928, scss/MONITOR/_main.scss */
.campaign-box .text, .home-campaign-box .text, .campaign-select-box .text {
  color: #fff;
  background: #000;
  background-image: -webkit-gradient(linear, to top, to bottom, color-stop(0%, rgba(11, 11, 11, 0.94)), color-stop(100%, rgba(56, 56, 56, 0.94)));
  background-image: -webkit-linear-gradient(to top, rgba(11, 11, 11, 0.94), rgba(56, 56, 56, 0.94));
  background-image: -moz-linear-gradient(to top, rgba(11, 11, 11, 0.94), rgba(56, 56, 56, 0.94));
  background-image: -o-linear-gradient(to top, rgba(11, 11, 11, 0.94), rgba(56, 56, 56, 0.94));
  background-image: linear-gradient(to top, rgba(11, 11, 11, 0.94), rgba(56, 56, 56, 0.94));
  padding: 15px;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
  -webkit-transition: height 0.5s ease-in;
  -moz-transition: height 0.5s ease-in;
  -o-transition: height 0.5s ease-in;
  transition: height 0.5s ease-in;
}
/* line 1944, scss/MONITOR/_main.scss */
.campaign-box .text .h4, .home-campaign-box .text .h4, .campaign-select-box .text .h4 {
  font-size: 1.21429em;
  margin: 0 0 1em 0;
  line-height: 1.2;
  text-transform: uppercase;
}
/* line 1951, scss/MONITOR/_main.scss */
.campaign-box .text .h4 .line-1, .home-campaign-box .text .h4 .line-1, .campaign-select-box .text .h4 .line-1 {
  color: #f1f2f2;
  font-weight: normal;
}
/* line 1955, scss/MONITOR/_main.scss */
.campaign-box .text .h4 .line-2, .home-campaign-box .text .h4 .line-2, .campaign-select-box .text .h4 .line-2 {
  font-size: 20px, 15px;
  font-weight: bold;
}
/* line 1970, scss/MONITOR/_main.scss */
.campaign-box:hover .text, .home-campaign-box:hover .text, .campaign-select-box:hover .text {
  height: 100%;
}
/* line 1972, scss/MONITOR/_main.scss */
.campaign-box:hover .text .description, .home-campaign-box:hover .text .description, .campaign-select-box:hover .text .description {
  display: block;
}
/* line 1980, scss/MONITOR/_main.scss */
.campaign-box .image img, .home-campaign-box .image img, .campaign-select-box .image img {
  display: block;
}

/* line 1987, scss/MONITOR/_main.scss */
.campaign-box, .home-campaign-box {
  padding: 0 0 50px 0;
}
/* line 1991, scss/MONITOR/_main.scss */
.campaign-box .text:after, .home-campaign-box .text:after {
  position: absolute;
  content: '';
  background-position: 0 -619px;
  height: 12px;
  width: 20px;
  width: 20px;
  height: 12px;
  bottom: 20px;
  right: 15px;
}
/* line 2006, scss/MONITOR/_main.scss */
.campaign-box:hover .text:after, .home-campaign-box:hover .text:after {
  position: absolute;
  content: '';
  background-position: 0 -599px;
  height: 20px;
  width: 12px;
  width: 12px;
  height: 20px;
}

/* line 2020, scss/MONITOR/_main.scss */
.campaign-select-box .text {
  color: #ccc;
  height: auto;
  position: static;
}
/* line 2024, scss/MONITOR/_main.scss */
.campaign-select-box .text .h4 {
  color: #fff;
  display: inline-block;
  border-bottom: 1px solid #ccc;
  padding: 0 0 5px 0;
  margin: 0 0 5px 0;
}
/* line 2035, scss/MONITOR/_main.scss */
.campaign-select-box select {
  background: #eaeaea;
  border: 0;
  border-radius: 3px;
  font-size: 0.85714em;
  padding: 3px;
  width: 175px;
}

/* line 2045, scss/MONITOR/_main.scss */
.home-campaigns {
  margin: 0;
}

/* line 2055, scss/MONITOR/_main.scss */
.home-news-list a, .feed-list a {
  color: #db1d25;
}
/* line 2058, scss/MONITOR/_main.scss */
.home-news-list header, .feed-list header {
  overflow: hidden;
  *zoom: 1;
  padding: 5px 0 0 0;
  border-bottom: 2px solid #b2b2b2;
}
/* line 2061, scss/MONITOR/_main.scss */
.home-news-list header h1, .feed-list header h1 {
  font-size: 1.28571em;
  margin: 0;
  float: left;
}
/* line 2066, scss/MONITOR/_main.scss */
.home-news-list header .view-all, .feed-list header .view-all {
  float: right;
  padding: 5px 0 0 0;
  font-size: 0.85714em;
  color: #000;
}
/* line 2074, scss/MONITOR/_main.scss */
.home-news-list ul, .feed-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
/* line 2080, scss/MONITOR/_main.scss */
.home-news-list li, .feed-list li {
  font-size: 0.92857em;
  border-top: 1px solid #ccc;
  padding: 10px 0 20px 0;
}
/* line 2085, scss/MONITOR/_main.scss */
.home-news-list li p, .feed-list li p {
  margin: 0;
}
/* line 2088, scss/MONITOR/_main.scss */
.home-news-list li:first-child, .feed-list li:first-child {
  border-top: none;
}
/* line 2091, scss/MONITOR/_main.scss */
.home-news-list li .image, .feed-list li .image {
  padding: 0 20px 0 0;
}
/* line 2095, scss/MONITOR/_main.scss */
.home-news-list li .date, .feed-list li .date {
  padding: 2px 3px;
  margin: 0 0 5px 0;
  display: inline-block;
  background: #db1d25;
  color: #fff;
}

/* line 2105, scss/MONITOR/_main.scss */
.home-feeds {
  margin: 0 0 25px 0;
}

/* line 2111, scss/MONITOR/_main.scss */
.feed-list header {
  position: relative;
}
/* line 2113, scss/MONITOR/_main.scss */
.feed-list header h1 {
  position: relative;
  margin-bottom: 8px;
}
/* line 2116, scss/MONITOR/_main.scss */
.feed-list header h1:after {
  content: '';
  position: absolute;
  right: -25px;
  top: 0;
  width: 19px;
  height: 19px;
}
/* line 2132, scss/MONITOR/_main.scss */
.feed-list.facebook h1:after {
  background-position: 0 -502px;
  height: 19px;
  width: 19px;
}
/* line 2141, scss/MONITOR/_main.scss */
.feed-list.twitter h1:after {
  background-position: 0 -430px;
  height: 19px;
  width: 19px;
}
/* line 2146, scss/MONITOR/_main.scss */
.feed-list .profile {
  font-weight: bold;
}
/* line 2150, scss/MONITOR/_main.scss */
.feed-list .profile img {
  display: none;
}

/**Landing page**/
/* line 2184, scss/MONITOR/_main.scss */
.landing-page-intro {
  margin: 0 0 50px 0;
  color: gray;
  max-width: 760px;
}

/**Article page**/
/* line 2193, scss/MONITOR/_main.scss */
.article-image {
  margin: 0 0 20px 0;
  position: relative;
}
/* line 2197, scss/MONITOR/_main.scss */
.article-image .caption {
  position: absolute;
  right: 0;
  bottom: 0;
  background: #fff;
  font-size: 0.85714em;
  color: gray;
  padding: 10px 0px 0px 10px;
}

/* line 2208, scss/MONITOR/_main.scss */
.article-share, .article-footer {
  margin: 0 0 20px 0;
}
/* line 2212, scss/MONITOR/_main.scss */
.article-share .pages-control .forward, .pages-control .article-share .forward, .article-footer .pages-control .forward, .pages-control .article-footer .forward, .article-share .pages-control .back, .pages-control .article-share .back, .article-footer .pages-control .back, .pages-control .article-footer .back, .article-share .back-to-top, .article-footer .back-to-top, .article-share .print-friendly, .article-footer .print-friendly, .article-share .download, .article-footer .download {
  vertical-align: top;
  display: inline-block;
  padding: 5px 0 0 45px;
  position: relative;
  color: #000;
  font-size: 0.85714em;
  color: inherit;
  text-transform: uppercase;
  font-weight: bold;
}
/* line 2222, scss/MONITOR/_main.scss */
.article-share .pages-control .forward .title, .pages-control .article-share .forward .title, .article-footer .pages-control .forward .title, .pages-control .article-footer .forward .title, .article-share .pages-control .back .title, .pages-control .article-share .back .title, .article-footer .pages-control .back .title, .pages-control .article-footer .back .title, .article-share .back-to-top .title, .article-footer .back-to-top .title, .article-share .print-friendly .title, .article-footer .print-friendly .title, .article-share .download .title, .article-footer .download .title {
  font-weight: normal;
  text-transform: none;
}
/* line 2227, scss/MONITOR/_main.scss */
.article-share .pages-control .forward:before, .pages-control .article-share .forward:before, .article-footer .pages-control .forward:before, .pages-control .article-footer .forward:before, .article-share .pages-control .back:before, .pages-control .article-share .back:before, .article-footer .pages-control .back:before, .pages-control .article-footer .back:before, .article-share .back-to-top:before, .article-footer .back-to-top:before, .article-share .print-friendly:before, .article-footer .print-friendly:before, .article-share .download:before, .article-footer .download:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
}
/* line 2235, scss/MONITOR/_main.scss */
.article-share .back-to-top, .article-footer .back-to-top {
  padding: 5px 0 0 25px;
}
/* line 2238, scss/MONITOR/_main.scss */
.article-share .back-to-top:before, .article-footer .back-to-top:before {
  background-position: 0 -449px;
  height: 33px;
  width: 19px;
}
/* line 2245, scss/MONITOR/_main.scss */
.article-share .print-friendly, .article-footer .print-friendly {
  padding: 5px 0 0 45px;
}
/* line 2248, scss/MONITOR/_main.scss */
.article-share .print-friendly:before, .article-footer .print-friendly:before {
  background-position: 0 -293px;
  height: 36px;
  width: 34px;
}
/* line 2253, scss/MONITOR/_main.scss */
.article-share .download, .article-footer .download {
  padding: 5px 0 0 45px;
}
/* line 2256, scss/MONITOR/_main.scss */
.article-share .download:before, .article-footer .download:before {
  background-position: 0 0;
  height: 30px;
  width: 40px;
}
/* line 2263, scss/MONITOR/_main.scss */
.article-share .addthis_default_style, .article-footer .addthis_default_style {
  display: inline-block;
  padding: 5px 0 0 0;
}

/* line 2270, scss/MONITOR/_main.scss */
.article-footer {
  border-top: 1px solid #ccc;
  padding: 10px 0 0 0;
  margin: 70px 0 0 0;
}
/* line 2276, scss/MONITOR/_main.scss */
.article-footer .footnotes {
  font-size: 0.85714em;
  border-bottom: 1px solid #ccc;
  margin: 0 0 10px 0;
}

/* line 2284, scss/MONITOR/_main.scss */
.article-comments {
  margin: 45px 0;
}
/* line 2286, scss/MONITOR/_main.scss */
.article-comments header {
  border-bottom: 1px solid #000;
  margin: 0 0 15px 0;
}
/* line 2287, scss/MONITOR/_main.scss */
.article-comments header h2 {
  margin: 0;
}

/* line 2297, scss/MONITOR/_main.scss */
.map-panel {
  position: relative;
  padding: 20px 0 60px 0;
  margin: 0 0 30px 0;
  border-top: 1px solid #f1f2f2;
  border-bottom: 1px solid #f1f2f2;
}
/* line 2304, scss/MONITOR/_main.scss */
.map-panel h2 {
  position: absolute;
  bottom: 20px;
  left: 0;
  color: #db1d25;
}

/* line 2314, scss/MONITOR/_main.scss */
.map-nav {
  margin: 0;
  list-style-type: none;
  font-size: 12px;
  font-weight: bold;
  color: #ffffff;
  opacity: 0.9;
}
/* line 2322, scss/MONITOR/_main.scss */
.map-nav li {
  float: left;
}
/* line 2326, scss/MONITOR/_main.scss */
.map-nav a {
  cursor: pointer;
  padding: 10px;
  background: #7d7d7d;
  color: #ffffff;
}
/* line 2333, scss/MONITOR/_main.scss */
.map-nav .selected {
  background: #DB1D25;
  color: #e2e2e1;
}

/* line 2338, scss/MONITOR/_main.scss */
.mapInfo {
  background: #FFFFFF;
  color: #000000;
  font-size: 13px;
  font-weight: bold;
  min-width: 440px;
  opacity: 0.9;
  pointer-events: none !important;
}
/* line 2347, scss/MONITOR/_main.scss */
.mapInfo ul {
  list-style-type: none;
  clear: both;
}
/* line 2352, scss/MONITOR/_main.scss */
.mapInfo .last ul {
  padding-bottom: 20px;
}
/* line 2356, scss/MONITOR/_main.scss */
.mapInfo a {
  opacity: 1;
}
/* line 2360, scss/MONITOR/_main.scss */
.mapInfo h4 {
  color: white;
  padding: 5px;
  text-align: center;
  text-transform: uppercase;
}
/* line 2367, scss/MONITOR/_main.scss */
.mapInfo h5 {
  color: white;
  padding: 5px;
  text-align: center;
  text-transform: uppercase;
}
/* line 2374, scss/MONITOR/_main.scss */
.mapInfo .header {
  padding-left: 10px;
  font-size: 14px;
}
/* line 2379, scss/MONITOR/_main.scss */
.mapInfo .footer {
  padding: 10px 0;
  border-top: 1px solid grey;
  text-align: center;
  clear: both;
}
/* line 2386, scss/MONITOR/_main.scss */
.mapInfo li {
  float: left;
}
/* line 2390, scss/MONITOR/_main.scss */
.mapInfo li:nth-child(2n+1) {
  margin-right: 10px;
  text-align: right;
  width: 220px;
}
/* line 2396, scss/MONITOR/_main.scss */
.mapInfo li:nth-child(2n+2) {
  color: red;
}

/* line 2403, scss/MONITOR/_main.scss */
.my-legend .legend-scale ul {
  float: left;
  list-style: none outside none;
  margin: 0;
  padding: 0;
}
/* line 2410, scss/MONITOR/_main.scss */
.my-legend ul li {
  display: block;
  float: left;
  font-size: 80%;
  list-style: none outside none;
  margin-bottom: 6px;
  text-align: left;
  width: 92px;
}
/* line 2420, scss/MONITOR/_main.scss */
.my-legend ul.legend-labels li span {
  display: block;
  float: left;
  height: 15px;
  width: 77px;
  margin-right: 10px;
  margin-bottom: 5px;
}

/* line 2430, scss/MONITOR/_main.scss */
.mapFooter {
  padding: 40px 0;
}
/* line 2434, scss/MONITOR/_main.scss */
.mapFooter .line1 {
  font-size: 13px;
  font-style: italic;
  padding-bottom: 5px;
  color: #5D5D5D;
}
/* line 2440, scss/MONITOR/_main.scss */
.mapFooter .line2 {
  font-size: 16px;
  font-weight: bold;
  padding-bottom: 5px;
}
/* line 2445, scss/MONITOR/_main.scss */
.mapFooter .line3 {
  color: #5D5D5D;
  font-size: 12px;
  text-transform: uppercase;
}

/* line 2452, scss/MONITOR/_main.scss */
.article-map {
  margin-bottom: 10px !important;
}

/* line 2458, scss/MONITOR/_main.scss */
.leaflet-left {
  left: -10px !important;
  top: -10px !important;
}

/* line 2463, scss/MONITOR/_main.scss */
.addthis_landing {
  margin-left: 70px;
  margin-top: 20px;
}

/* line 2468, scss/MONITOR/_main.scss */
.legacy {
  margin: 0px;
  width: 100%;
  overflow: auto;
}

/* line 2475, scss/MONITOR/_main.scss */
.heading14B {
  font-size: 14;
  font-weight: bold;
}

/* line 2479, scss/MONITOR/_main.scss */
.heading12B {
  font-size: 14;
  font-weight: bold;
}

/* line 2483, scss/MONITOR/_main.scss */
.text12 {
  font-size: 12px;
}

/* line 2486, scss/MONITOR/_main.scss */
.footnotes10 {
  font-size: 10px;
}
																	
table.table-style {
	margin-bottom:15px;
}

table td {
    padding: 5px 5px;
}																	
table td p {
    margin: 0;
}

.report-heading-all{
    color: #db1d25;
    font-size: 2em;
    font-weight: bold;
}

hr.country-profile-divider {
   border: 0;
   height: 2px;
   background: #000000;
   margin-bottom: 2rem;
}

/* EDITOR PROPERTIES - PLEASE DON'T DELETE THIS LINE TO AVOID DUPLICATE PROPERTIES */
