
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_12ef154662d63b40a562f55a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_238e7e70545870c0f235b614.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.710000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_227137c9bd64e95f773a3e4f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.894000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_6650cbc8770c485d111b04eb.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_3935235fe9487656d63c2dd1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.986000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_bf0eda18b81de6b475ca15e1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.914000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_ebf96c8c034498edef02dd61.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.014000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_b5711b08949e4d5e1a898b50.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.736000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_8f17da48a451cb7c4f4aae88.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.660000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_37e018c9111f89f364364fc6.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.885000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_616d2118545da59e971de431.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.897000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_c07d244d348042b6782b249f.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_fa3ba1ca1e09a7b499575ab7.woff2')format("woff");}.fff{font-family:fff;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_517fda0b10c89cf5e731ea9c.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_e049dad0cc5a4d36002e9767.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_2e65eeeab6300df27bbd6691.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_c520b5ee6e7e8907fe6ec4c2.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_ef3a253434ccf2391a51477e.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_e049dad0cc5a4d36002e9767.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_2e65eeeab6300df27bbd6691.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_dea4ecfd233d565125816cf8.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_ebc157555ae7920385c2e11e.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_e049dad0cc5a4d36002e9767.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_759eb78942ece456d2e5b3ba.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.871094;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_128d59282b44e2d0dc91c88b.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.869000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1d{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.250095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250095,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.250097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250097,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.250097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250097,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls22{letter-spacing:-0.151200px;}
.ls21{letter-spacing:-0.113400px;}
.ls35{letter-spacing:-0.100656px;}
.ls2f{letter-spacing:-0.097200px;}
.lsc{letter-spacing:-0.090972px;}
.ls20{letter-spacing:-0.070200px;}
.ls2c{letter-spacing:-0.059400px;}
.ls33{letter-spacing:-0.058716px;}
.ls31{letter-spacing:-0.041940px;}
.ls32{letter-spacing:-0.033552px;}
.lse{letter-spacing:-0.025650px;}
.ls1f{letter-spacing:-0.021600px;}
.lsd{letter-spacing:-0.018194px;}
.ls2d{letter-spacing:-0.016200px;}
.ls1e{letter-spacing:-0.014364px;}
.ls30{letter-spacing:-0.012024px;}
.ls2e{letter-spacing:-0.010800px;}
.ls34{letter-spacing:-0.008388px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.000638px;}
.ls4{letter-spacing:0.001518px;}
.ls6{letter-spacing:0.003488px;}
.ls10{letter-spacing:0.003643px;}
.ls8{letter-spacing:0.004549px;}
.ls16{letter-spacing:0.005400px;}
.ls11{letter-spacing:0.009576px;}
.ls19{letter-spacing:0.016200px;}
.ls17{letter-spacing:0.021600px;}
.ls14{letter-spacing:0.027000px;}
.lsb{letter-spacing:0.030780px;}
.ls23{letter-spacing:0.032400px;}
.ls25{letter-spacing:0.037800px;}
.ls15{letter-spacing:0.043200px;}
.ls28{letter-spacing:0.048600px;}
.ls27{letter-spacing:0.064800px;}
.ls18{letter-spacing:0.075600px;}
.ls26{letter-spacing:0.081000px;}
.ls24{letter-spacing:0.102600px;}
.ls36{letter-spacing:0.135000px;}
.lsa{letter-spacing:0.150104px;}
.ls9{letter-spacing:0.163750px;}
.ls13{letter-spacing:0.167580px;}
.ls12{letter-spacing:0.181944px;}
.ls1b{letter-spacing:0.528270px;}
.ls1a{letter-spacing:0.534193px;}
.ls29{letter-spacing:0.537859px;}
.ls37{letter-spacing:0.551696px;}
.ls7{letter-spacing:1.275394px;}
.ls1{letter-spacing:1.861130px;}
.ls5{letter-spacing:11.954850px;}
.ls1d{letter-spacing:13.448870px;}
.ls2{letter-spacing:15.063451px;}
.lsf{letter-spacing:16.079636px;}
.ls1c{letter-spacing:18.622140px;}
.ls2a{letter-spacing:18.831926px;}
.ls2b{letter-spacing:1316.609964px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4d{word-spacing:-18.856224px;}
.ws6{word-spacing:-17.394700px;}
.ws1{word-spacing:-16.529216px;}
.ws3e{word-spacing:-15.655334px;}
.ws5{word-spacing:-14.943900px;}
.ws3d{word-spacing:-13.449600px;}
.ws4c{word-spacing:-12.268800px;}
.ws39{word-spacing:-12.151944px;}
.ws1a{word-spacing:-11.955150px;}
.ws1d{word-spacing:-11.535250px;}
.ws31{word-spacing:-3.646312px;}
.ws15{word-spacing:-2.151922px;}
.ws62{word-spacing:-2.032370px;}
.ws37{word-spacing:-1.972595px;}
.ws4{word-spacing:-1.908367px;}
.ws26{word-spacing:-1.793268px;}
.ws14{word-spacing:-1.434614px;}
.ws3{word-spacing:-1.322630px;}
.ws35{word-spacing:-0.956410px;}
.wse{word-spacing:-0.896634px;}
.ws16{word-spacing:-0.777083px;}
.ws12{word-spacing:-0.657532px;}
.ws60{word-spacing:-0.537980px;}
.ws11{word-spacing:-0.478205px;}
.ws2d{word-spacing:-0.358654px;}
.ws51{word-spacing:-0.322790px;}
.ws4a{word-spacing:-0.253800px;}
.wsc{word-spacing:-0.239102px;}
.ws9{word-spacing:-0.179327px;}
.ws40{word-spacing:-0.161395px;}
.ws7{word-spacing:-0.119551px;}
.ws2{word-spacing:-0.107597px;}
.ws42{word-spacing:-0.076608px;}
.ws1f{word-spacing:-0.072778px;}
.ws27{word-spacing:-0.059776px;}
.ws4e{word-spacing:-0.053798px;}
.ws1b{word-spacing:-0.047821px;}
.ws0{word-spacing:0.000000px;}
.ws6b{word-spacing:0.053798px;}
.ws8{word-spacing:0.059776px;}
.ws17{word-spacing:0.119551px;}
.ws22{word-spacing:0.133380px;}
.ws69{word-spacing:0.161395px;}
.ws4b{word-spacing:0.162000px;}
.ws5f{word-spacing:0.178200px;}
.ws2c{word-spacing:0.179327px;}
.ws21{word-spacing:0.189810px;}
.ws65{word-spacing:0.215194px;}
.wsb{word-spacing:0.239102px;}
.ws1e{word-spacing:0.245624px;}
.ws41{word-spacing:0.258552px;}
.ws2a{word-spacing:0.298878px;}
.ws13{word-spacing:0.358654px;}
.ws18{word-spacing:0.418429px;}
.ws58{word-spacing:0.437400px;}
.ws5e{word-spacing:0.496800px;}
.ws5c{word-spacing:0.502200px;}
.ws56{word-spacing:0.507600px;}
.ws54{word-spacing:0.513000px;}
.ws57{word-spacing:0.556200px;}
.ws55{word-spacing:0.599400px;}
.wsd{word-spacing:0.657532px;}
.ws24{word-spacing:0.896634px;}
.ws25{word-spacing:0.956410px;}
.ws34{word-spacing:1.135736px;}
.ws48{word-spacing:1.236600px;}
.ws29{word-spacing:1.255288px;}
.ws49{word-spacing:1.258200px;}
.ws50{word-spacing:1.398758px;}
.ws4f{word-spacing:1.452557px;}
.ws2f{word-spacing:1.613941px;}
.ws32{word-spacing:1.673717px;}
.ws23{word-spacing:2.331248px;}
.ws28{word-spacing:2.450800px;}
.wsa{word-spacing:2.689902px;}
.ws30{word-spacing:2.869229px;}
.ws38{word-spacing:2.929004px;}
.ws2e{word-spacing:3.287658px;}
.ws64{word-spacing:3.389299px;}
.ws3b{word-spacing:3.443098px;}
.ws2b{word-spacing:3.466985px;}
.ws3a{word-spacing:3.765888px;}
.ws6c{word-spacing:3.873485px;}
.ws6e{word-spacing:3.927283px;}
.ws59{word-spacing:4.816800px;}
.ws5b{word-spacing:4.838400px;}
.ws5a{word-spacing:4.860000px;}
.ws10{word-spacing:4.961375px;}
.wsf{word-spacing:5.021150px;}
.ws61{word-spacing:5.080926px;}
.ws63{word-spacing:5.378822px;}
.ws68{word-spacing:5.379840px;}
.ws36{word-spacing:5.499355px;}
.ws33{word-spacing:6.395989px;}
.ws47{word-spacing:7.338600px;}
.ws46{word-spacing:7.354800px;}
.ws44{word-spacing:7.403400px;}
.ws45{word-spacing:7.452000px;}
.ws5d{word-spacing:8.575200px;}
.ws20{word-spacing:8.646889px;}
.ws43{word-spacing:9.101988px;}
.ws19{word-spacing:11.907329px;}
.ws67{word-spacing:13.395802px;}
.ws6a{word-spacing:13.557197px;}
.ws66{word-spacing:13.610995px;}
.ws6d{word-spacing:17.269286px;}
.ws52{word-spacing:18.444503px;}
.ws3f{word-spacing:18.550222px;}
.ws53{word-spacing:18.772512px;}
.ws3c{word-spacing:25.803558px;}
.ws1c{word-spacing:770.772431px;}
._5{margin-left:-7.591501px;}
._0{margin-left:-5.971622px;}
._6{margin-left:-4.363619px;}
._7{margin-left:-2.360755px;}
._2{margin-left:-1.322630px;}
._3{width:1.091170px;}
._18{width:2.121830px;}
._17{width:7.526860px;}
._1a{width:9.898046px;}
._14{width:12.888828px;}
._b{width:14.256862px;}
._a{width:15.469630px;}
._10{width:17.120047px;}
._1{width:18.829440px;}
._4{width:20.801909px;}
._9{width:22.131344px;}
._c{width:24.132684px;}
._12{width:26.667485px;}
._19{width:28.825752px;}
._13{width:30.386873px;}
._11{width:32.107064px;}
._8{width:36.916333px;}
._15{width:40.834302px;}
._1c{width:61.380216px;}
._1b{width:210.654000px;}
._f{width:1831.910702px;}
._e{width:2693.621788px;}
._16{width:2835.545066px;}
._d{width:3311.600702px;}
.fc5{color:transparent;}
.fc3{color:rgb(12,11,11);}
.fc4{color:rgb(8,117,183);}
.fc2{color:rgb(40,65,113);}
.fc1{color:rgb(14,15,14);}
.fc7{color:rgb(89,89,89);}
.fc6{color:rgb(64,64,64);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:41.936104px;}
.fs4{font-size:42.000000px;}
.fsd{font-size:45.486000px;}
.fsa{font-size:47.236800px;}
.fsc{font-size:47.820600px;}
.fs10{font-size:47.880000px;}
.fse{font-size:51.300000px;}
.fs5{font-size:52.197584px;}
.fs9{font-size:53.798400px;}
.fs11{font-size:54.000000px;}
.fsf{font-size:57.114000px;}
.fs7{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fs12{font-size:60.120000px;}
.fs1{font-size:63.000000px;}
.fs6{font-size:66.116865px;}
.fs0{font-size:72.000000px;}
.fs13{font-size:83.880000px;}
.fs2{font-size:102.000000px;}
.fs8{font-size:107.596800px;}
.y8e{bottom:-290.364000px;}
.y84{bottom:-207.721500px;}
.y93{bottom:-78.504900px;}
.y88{bottom:-59.042400px;}
.y92{bottom:-58.974450px;}
.y4e{bottom:-49.830825px;}
.y87{bottom:-39.511950px;}
.y91{bottom:-39.444000px;}
.y50{bottom:-20.931825px;}
.y90{bottom:-20.004000px;}
.y86{bottom:-19.981500px;}
.y0{bottom:0.000000px;}
.y4f{bottom:2.324318px;}
.y2e{bottom:3.425340px;}
.y8f{bottom:4.476000px;}
.y85{bottom:4.498500px;}
.y25{bottom:5.788613px;}
.y2d{bottom:14.151273px;}
.yb1{bottom:18.512400px;}
.ya1{bottom:18.964650px;}
.y24{bottom:22.317924px;}
.yc5{bottom:23.376000px;}
.ya6{bottom:36.065100px;}
.y96{bottom:36.516000px;}
.y23{bottom:38.654567px;}
.yc4{bottom:49.116000px;}
.yc3{bottom:53.252850px;}
.yb2{bottom:55.956000px;}
.y4a{bottom:63.780000px;}
.ya7{bottom:66.484650px;}
.y5{bottom:66.525004px;}
.y97{bottom:69.456000px;}
.ya2{bottom:69.906000px;}
.yb8{bottom:70.806900px;}
.yb7{bottom:93.126450px;}
.ya8{bottom:96.904200px;}
.y4{bottom:97.125005px;}
.yb9{bottom:97.716450px;}
.y98{bottom:102.396000px;}
.yb6{bottom:120.036000px;}
.y51{bottom:123.264000px;}
.yba{bottom:124.716450px;}
.ya5{bottom:126.335550px;}
.ya9{bottom:127.234650px;}
.y99{bottom:135.245550px;}
.y21{bottom:139.264499px;}
.y4c{bottom:145.692000px;}
.ybb{bottom:151.626000px;}
.yaa{bottom:157.654200px;}
.yb5{bottom:165.845550px;}
.y9a{bottom:168.185550px;}
.ybc{bottom:178.535550px;}
.y81{bottom:183.913500px;}
.yab{bottom:188.073750px;}
.y18{bottom:196.933500px;}
.y9b{bottom:201.125550px;}
.y80{bottom:204.178500px;}
.y8b{bottom:205.170000px;}
.ybd{bottom:205.445100px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.yac{bottom:218.493300px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y8a{bottom:224.403000px;}
.y7f{bottom:224.442000px;}
.ybe{bottom:232.354650px;}
.y9c{bottom:234.065550px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y89{bottom:243.636000px;}
.y7e{bottom:244.707000px;}
.yad{bottom:248.912850px;}
.yc9{bottom:250.213500px;}
.ybf{bottom:259.264200px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y7d{bottom:264.970500px;}
.y82{bottom:266.064000px;}
.y9d{bottom:266.915100px;}
.yc8{bottom:269.446500px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.yae{bottom:279.243300px;}
.ya4{bottom:284.376000px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y7c{bottom:285.234000px;}
.yc0{bottom:286.264200px;}
.yc7{bottom:288.679500px;}
.y49{bottom:293.722500px;}
.y95{bottom:294.366000px;}
.y9e{bottom:299.855100px;}
.y7b{bottom:305.499000px;}
.yc6{bottom:307.912500px;}
.yaf{bottom:309.662850px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.yc1{bottom:313.173750px;}
.yb4{bottom:313.896000px;}
.y48{bottom:313.986000px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y7a{bottom:325.762500px;}
.y8c{bottom:330.341850px;}
.y9f{bottom:332.795100px;}
.y47{bottom:334.251000px;}
.yb0{bottom:340.082400px;}
.yc2{bottom:340.083300px;}
.y94{bottom:343.776000px;}
.y79{bottom:346.027500px;}
.yf{bottom:348.133500px;}
.y46{bottom:354.514500px;}
.ya0{bottom:365.735100px;}
.y78{bottom:366.291000px;}
.yb3{bottom:368.345496px;}
.y45{bottom:374.778000px;}
.y77{bottom:386.554500px;}
.ye{bottom:386.785499px;}
.ya3{bottom:393.996000px;}
.y44{bottom:395.043000px;}
.y76{bottom:406.819500px;}
.yd{bottom:408.044999px;}
.y43{bottom:415.306500px;}
.y75{bottom:427.083000px;}
.y42{bottom:435.571500px;}
.y8d{bottom:446.826000px;}
.y74{bottom:447.348000px;}
.y41{bottom:455.835000px;}
.ydc{bottom:463.449000px;}
.y73{bottom:467.611500px;}
.y40{bottom:476.098500px;}
.ydb{bottom:482.815500px;}
.y72{bottom:487.875000px;}
.y3f{bottom:496.363500px;}
.yda{bottom:502.183500px;}
.yc{bottom:502.864502px;}
.y71{bottom:508.140000px;}
.y3e{bottom:516.627000px;}
.yb{bottom:520.864502px;}
.y70{bottom:528.403500px;}
.y83{bottom:529.468500px;}
.yd9{bottom:535.039500px;}
.y3d{bottom:536.892000px;}
.ya{bottom:538.864499px;}
.y6f{bottom:548.667000px;}
.yd8{bottom:554.407500px;}
.y9{bottom:556.864499px;}
.y3c{bottom:557.155500px;}
.y6e{bottom:568.932000px;}
.yd7{bottom:573.774000px;}
.y3b{bottom:577.419000px;}
.y6d{bottom:589.195500px;}
.yd6{bottom:593.142000px;}
.y3a{bottom:597.684000px;}
.y6c{bottom:609.460500px;}
.yd5{bottom:612.510000px;}
.y6b{bottom:629.724000px;}
.yd4{bottom:631.876500px;}
.y8{bottom:645.510000px;}
.y6a{bottom:649.987500px;}
.y4d{bottom:650.499675px;}
.yd3{bottom:651.244500px;}
.y7{bottom:666.771000px;}
.y69{bottom:670.252500px;}
.yd2{bottom:670.611000px;}
.y39{bottom:671.185500px;}
.yd1{bottom:689.979000px;}
.y68{bottom:690.516000px;}
.y38{bottom:691.449000px;}
.yd0{bottom:709.347000px;}
.y67{bottom:710.781000px;}
.y6{bottom:726.298500px;}
.ycf{bottom:728.713500px;}
.y37{bottom:729.646500px;}
.y66{bottom:731.044500px;}
.y36{bottom:749.910000px;}
.y65{bottom:751.308000px;}
.y3{bottom:752.599495px;}
.yce{bottom:757.047000px;}
.y35{bottom:770.175000px;}
.y64{bottom:771.573000px;}
.y34{bottom:790.438500px;}
.y63{bottom:791.836500px;}
.ycd{bottom:796.500000px;}
.y4b{bottom:798.445500px;}
.y33{bottom:810.702000px;}
.y62{bottom:812.101500px;}
.ycc{bottom:820.663500px;}
.y32{bottom:830.967000px;}
.y61{bottom:832.365000px;}
.ycb{bottom:835.861500px;}
.y31{bottom:851.230500px;}
.y60{bottom:852.628500px;}
.yca{bottom:860.026500px;}
.y30{bottom:871.495500px;}
.y5f{bottom:872.893500px;}
.y2{bottom:879.369000px;}
.y2f{bottom:891.759000px;}
.y5e{bottom:893.157000px;}
.y5d{bottom:913.422000px;}
.y2c{bottom:929.415055px;}
.y5c{bottom:933.685500px;}
.y2b{bottom:937.360500px;}
.y5b{bottom:953.949000px;}
.y1{bottom:966.726000px;}
.y2a{bottom:969.187500px;}
.y5a{bottom:974.214000px;}
.y59{bottom:994.477500px;}
.y29{bottom:996.310500px;}
.y58{bottom:1014.742500px;}
.y57{bottom:1035.006000px;}
.y28{bottom:1040.848500px;}
.y56{bottom:1055.269500px;}
.y27{bottom:1071.244500px;}
.y55{bottom:1075.534500px;}
.y54{bottom:1095.798000px;}
.y26{bottom:1100.145000px;}
.y53{bottom:1116.063000px;}
.y22{bottom:1137.954000px;}
.y52{bottom:1168.366500px;}
.h11{height:25.508090px;}
.h7{height:32.130000px;}
.h13{height:33.112997px;}
.h19{height:33.492621px;}
.h1a{height:34.191650px;}
.h12{height:34.199443px;}
.h15{height:35.052500px;}
.h1e{height:35.255391px;}
.h1f{height:35.991211px;}
.ha{height:36.277321px;}
.h26{height:37.415039px;}
.h1c{height:37.773633px;}
.h29{height:37.927872px;}
.h23{height:38.734848px;}
.h10{height:39.326630px;}
.h22{height:39.418945px;}
.h24{height:39.434227px;}
.h21{height:39.761719px;}
.h27{height:41.655410px;}
.h1b{height:41.692104px;}
.hf{height:43.038432px;}
.h14{height:43.695964px;}
.hc{height:43.815515px;}
.hb{height:44.827234px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.h9{height:50.931027px;}
.h20{height:52.558594px;}
.h2{height:55.080000px;}
.h28{height:58.118027px;}
.hd{height:77.469696px;}
.h5{height:78.030000px;}
.he{height:78.438067px;}
.h4{height:119.055004px;}
.h25{height:430.744200px;}
.h1d{height:495.021750px;}
.h18{height:615.396083px;}
.h16{height:892.914000px;}
.h17{height:893.250000px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.h1{height:1263.000000px;}
.w5{width:75.364879px;}
.w4{width:209.166223px;}
.w2{width:637.794021px;}
.w8{width:843.790950px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.w9{width:901.557000px;}
.wa{width:1001.730150px;}
.w6{width:1262.835000px;}
.w7{width:1263.000000px;}
.x13{left:-65.486250px;}
.xe{left:-61.418213px;}
.x15{left:-33.626100px;}
.x18{left:-27.086100px;}
.x0{left:0.000000px;}
.x1a{left:4.774050px;}
.x9{left:29.274117px;}
.x1f{left:37.803900px;}
.x1d{left:46.353450px;}
.x1c{left:53.193900px;}
.x6{left:60.141348px;}
.x20{left:82.263900px;}
.x1{left:102.045000px;}
.x1e{left:103.863450px;}
.x2{left:106.297500px;}
.x5{left:114.802500px;}
.x7{left:123.307500px;}
.x17{left:130.552800px;}
.xc{left:146.617500px;}
.x12{left:180.639750px;}
.xa{left:188.901000px;}
.xb{left:202.036500px;}
.x4{left:203.484001px;}
.x16{left:208.222500px;}
.xd{left:209.524642px;}
.x35{left:240.010500px;}
.x1b{left:248.764350px;}
.x36{left:251.667000px;}
.x38{left:254.101500px;}
.x37{left:267.256500px;}
.x10{left:328.889287px;}
.x19{left:331.023900px;}
.x27{left:367.833900px;}
.x25{left:379.263000px;}
.x24{left:386.103450px;}
.x23{left:392.943900px;}
.x28{left:400.143900px;}
.x26{left:436.773000px;}
.x29{left:439.024377px;}
.x3{left:454.959000px;}
.x21{left:464.223900px;}
.x11{left:525.394500px;}
.x22{left:581.673900px;}
.x32{left:699.933900px;}
.x8{left:701.339982px;}
.x34{left:702.903900px;}
.x30{left:712.173000px;}
.x2f{left:719.013450px;}
.x2e{left:725.853900px;}
.x31{left:769.683000px;}
.x33{left:774.273630px;}
.x2a{left:780.393900px;}
.x2c{left:813.873900px;}
.xf{left:853.431787px;}
.x2b{left:897.843900px;}
.x14{left:901.653750px;}
.x2d{left:934.743450px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls22{letter-spacing:-0.134400pt;}
.ls21{letter-spacing:-0.100800pt;}
.ls35{letter-spacing:-0.089472pt;}
.ls2f{letter-spacing:-0.086400pt;}
.lsc{letter-spacing:-0.080864pt;}
.ls20{letter-spacing:-0.062400pt;}
.ls2c{letter-spacing:-0.052800pt;}
.ls33{letter-spacing:-0.052192pt;}
.ls31{letter-spacing:-0.037280pt;}
.ls32{letter-spacing:-0.029824pt;}
.lse{letter-spacing:-0.022800pt;}
.ls1f{letter-spacing:-0.019200pt;}
.lsd{letter-spacing:-0.016173pt;}
.ls2d{letter-spacing:-0.014400pt;}
.ls1e{letter-spacing:-0.012768pt;}
.ls30{letter-spacing:-0.010688pt;}
.ls2e{letter-spacing:-0.009600pt;}
.ls34{letter-spacing:-0.007456pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.000567pt;}
.ls4{letter-spacing:0.001349pt;}
.ls6{letter-spacing:0.003100pt;}
.ls10{letter-spacing:0.003239pt;}
.ls8{letter-spacing:0.004043pt;}
.ls16{letter-spacing:0.004800pt;}
.ls11{letter-spacing:0.008512pt;}
.ls19{letter-spacing:0.014400pt;}
.ls17{letter-spacing:0.019200pt;}
.ls14{letter-spacing:0.024000pt;}
.lsb{letter-spacing:0.027360pt;}
.ls23{letter-spacing:0.028800pt;}
.ls25{letter-spacing:0.033600pt;}
.ls15{letter-spacing:0.038400pt;}
.ls28{letter-spacing:0.043200pt;}
.ls27{letter-spacing:0.057600pt;}
.ls18{letter-spacing:0.067200pt;}
.ls26{letter-spacing:0.072000pt;}
.ls24{letter-spacing:0.091200pt;}
.ls36{letter-spacing:0.120000pt;}
.lsa{letter-spacing:0.133426pt;}
.ls9{letter-spacing:0.145555pt;}
.ls13{letter-spacing:0.148960pt;}
.ls12{letter-spacing:0.161728pt;}
.ls1b{letter-spacing:0.469573pt;}
.ls1a{letter-spacing:0.474838pt;}
.ls29{letter-spacing:0.478097pt;}
.ls37{letter-spacing:0.490396pt;}
.ls7{letter-spacing:1.133683pt;}
.ls1{letter-spacing:1.654338pt;}
.ls5{letter-spacing:10.626533pt;}
.ls1d{letter-spacing:11.954551pt;}
.ls2{letter-spacing:13.389734pt;}
.lsf{letter-spacing:14.293010pt;}
.ls1c{letter-spacing:16.553013pt;}
.ls2a{letter-spacing:16.739490pt;}
.ls2b{letter-spacing:1170.319968pt;}
.ws4d{word-spacing:-16.761088pt;}
.ws6{word-spacing:-15.461955pt;}
.ws1{word-spacing:-14.692637pt;}
.ws3e{word-spacing:-13.915853pt;}
.ws5{word-spacing:-13.283467pt;}
.ws3d{word-spacing:-11.955200pt;}
.ws4c{word-spacing:-10.905600pt;}
.ws39{word-spacing:-10.801728pt;}
.ws1a{word-spacing:-10.626800pt;}
.ws1d{word-spacing:-10.253555pt;}
.ws31{word-spacing:-3.241166pt;}
.ws15{word-spacing:-1.912819pt;}
.ws62{word-spacing:-1.806551pt;}
.ws37{word-spacing:-1.753418pt;}
.ws4{word-spacing:-1.696326pt;}
.ws26{word-spacing:-1.594016pt;}
.ws14{word-spacing:-1.275213pt;}
.ws3{word-spacing:-1.175671pt;}
.ws35{word-spacing:-0.850142pt;}
.wse{word-spacing:-0.797008pt;}
.ws16{word-spacing:-0.690740pt;}
.ws12{word-spacing:-0.584473pt;}
.ws60{word-spacing:-0.478205pt;}
.ws11{word-spacing:-0.425071pt;}
.ws2d{word-spacing:-0.318803pt;}
.ws51{word-spacing:-0.286925pt;}
.ws4a{word-spacing:-0.225600pt;}
.wsc{word-spacing:-0.212535pt;}
.ws9{word-spacing:-0.159402pt;}
.ws40{word-spacing:-0.143462pt;}
.ws7{word-spacing:-0.106268pt;}
.ws2{word-spacing:-0.095642pt;}
.ws42{word-spacing:-0.068096pt;}
.ws1f{word-spacing:-0.064691pt;}
.ws27{word-spacing:-0.053134pt;}
.ws4e{word-spacing:-0.047821pt;}
.ws1b{word-spacing:-0.042507pt;}
.ws0{word-spacing:0.000000pt;}
.ws6b{word-spacing:0.047821pt;}
.ws8{word-spacing:0.053134pt;}
.ws17{word-spacing:0.106268pt;}
.ws22{word-spacing:0.118560pt;}
.ws69{word-spacing:0.143462pt;}
.ws4b{word-spacing:0.144000pt;}
.ws5f{word-spacing:0.158400pt;}
.ws2c{word-spacing:0.159402pt;}
.ws21{word-spacing:0.168720pt;}
.ws65{word-spacing:0.191283pt;}
.wsb{word-spacing:0.212535pt;}
.ws1e{word-spacing:0.218333pt;}
.ws41{word-spacing:0.229824pt;}
.ws2a{word-spacing:0.265669pt;}
.ws13{word-spacing:0.318803pt;}
.ws18{word-spacing:0.371937pt;}
.ws58{word-spacing:0.388800pt;}
.ws5e{word-spacing:0.441600pt;}
.ws5c{word-spacing:0.446400pt;}
.ws56{word-spacing:0.451200pt;}
.ws54{word-spacing:0.456000pt;}
.ws57{word-spacing:0.494400pt;}
.ws55{word-spacing:0.532800pt;}
.wsd{word-spacing:0.584473pt;}
.ws24{word-spacing:0.797008pt;}
.ws25{word-spacing:0.850142pt;}
.ws34{word-spacing:1.009543pt;}
.ws48{word-spacing:1.099200pt;}
.ws29{word-spacing:1.115811pt;}
.ws49{word-spacing:1.118400pt;}
.ws50{word-spacing:1.243341pt;}
.ws4f{word-spacing:1.291162pt;}
.ws2f{word-spacing:1.434614pt;}
.ws32{word-spacing:1.487748pt;}
.ws23{word-spacing:2.072221pt;}
.ws28{word-spacing:2.178489pt;}
.wsa{word-spacing:2.391024pt;}
.ws30{word-spacing:2.550426pt;}
.ws38{word-spacing:2.603559pt;}
.ws2e{word-spacing:2.922363pt;}
.ws64{word-spacing:3.012710pt;}
.ws3b{word-spacing:3.060531pt;}
.ws2b{word-spacing:3.081764pt;}
.ws3a{word-spacing:3.347456pt;}
.ws6c{word-spacing:3.443098pt;}
.ws6e{word-spacing:3.490918pt;}
.ws59{word-spacing:4.281600pt;}
.ws5b{word-spacing:4.300800pt;}
.ws5a{word-spacing:4.320000pt;}
.ws10{word-spacing:4.410111pt;}
.wsf{word-spacing:4.463245pt;}
.ws61{word-spacing:4.516379pt;}
.ws63{word-spacing:4.781175pt;}
.ws68{word-spacing:4.782080pt;}
.ws36{word-spacing:4.888316pt;}
.ws33{word-spacing:5.685324pt;}
.ws47{word-spacing:6.523200pt;}
.ws46{word-spacing:6.537600pt;}
.ws44{word-spacing:6.580800pt;}
.ws45{word-spacing:6.624000pt;}
.ws5d{word-spacing:7.622400pt;}
.ws20{word-spacing:7.686123pt;}
.ws43{word-spacing:8.090656pt;}
.ws19{word-spacing:10.584293pt;}
.ws67{word-spacing:11.907379pt;}
.ws6a{word-spacing:12.050842pt;}
.ws66{word-spacing:12.098662pt;}
.ws6d{word-spacing:15.350477pt;}
.ws52{word-spacing:16.395114pt;}
.ws3f{word-spacing:16.489086pt;}
.ws53{word-spacing:16.686677pt;}
.ws3c{word-spacing:22.936496pt;}
.ws1c{word-spacing:685.131050pt;}
._5{margin-left:-6.748001pt;}
._0{margin-left:-5.308109pt;}
._6{margin-left:-3.878772pt;}
._7{margin-left:-2.098449pt;}
._2{margin-left:-1.175671pt;}
._3{width:0.969929pt;}
._18{width:1.886071pt;}
._17{width:6.690542pt;}
._1a{width:8.798263pt;}
._14{width:11.456736pt;}
._b{width:12.672766pt;}
._a{width:13.750782pt;}
._10{width:15.217820pt;}
._1{width:16.737280pt;}
._4{width:18.490586pt;}
._9{width:19.672306pt;}
._c{width:21.451275pt;}
._12{width:23.704431pt;}
._19{width:25.622891pt;}
._13{width:27.010553pt;}
._11{width:28.539613pt;}
._8{width:32.814518pt;}
._15{width:36.297157pt;}
._1c{width:54.560192pt;}
._1b{width:187.248000pt;}
._f{width:1628.365069pt;}
._e{width:2394.330478pt;}
._16{width:2520.484503pt;}
._d{width:2943.645069pt;}
.fsb{font-size:37.276537pt;}
.fs4{font-size:37.333333pt;}
.fsd{font-size:40.432000pt;}
.fsa{font-size:41.988267pt;}
.fsc{font-size:42.507200pt;}
.fs10{font-size:42.560000pt;}
.fse{font-size:45.600000pt;}
.fs5{font-size:46.397853pt;}
.fs9{font-size:47.820800pt;}
.fs11{font-size:48.000000pt;}
.fsf{font-size:50.768000pt;}
.fs7{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fs12{font-size:53.440000pt;}
.fs1{font-size:56.000000pt;}
.fs6{font-size:58.770546pt;}
.fs0{font-size:64.000000pt;}
.fs13{font-size:74.560000pt;}
.fs2{font-size:90.666667pt;}
.fs8{font-size:95.641600pt;}
.y8e{bottom:-258.101333pt;}
.y84{bottom:-184.641333pt;}
.y93{bottom:-69.782133pt;}
.y88{bottom:-52.482133pt;}
.y92{bottom:-52.421733pt;}
.y4e{bottom:-44.294067pt;}
.y87{bottom:-35.121733pt;}
.y91{bottom:-35.061333pt;}
.y50{bottom:-18.606067pt;}
.y90{bottom:-17.781333pt;}
.y86{bottom:-17.761333pt;}
.y0{bottom:0.000000pt;}
.y4f{bottom:2.066060pt;}
.y2e{bottom:3.044747pt;}
.y8f{bottom:3.978667pt;}
.y85{bottom:3.998667pt;}
.y25{bottom:5.145434pt;}
.y2d{bottom:12.578910pt;}
.yb1{bottom:16.455467pt;}
.ya1{bottom:16.857467pt;}
.y24{bottom:19.838154pt;}
.yc5{bottom:20.778667pt;}
.ya6{bottom:32.057867pt;}
.y96{bottom:32.458667pt;}
.y23{bottom:34.359615pt;}
.yc4{bottom:43.658667pt;}
.yc3{bottom:47.335867pt;}
.yb2{bottom:49.738667pt;}
.y4a{bottom:56.693333pt;}
.ya7{bottom:59.097467pt;}
.y5{bottom:59.133337pt;}
.y97{bottom:61.738667pt;}
.ya2{bottom:62.138667pt;}
.yb8{bottom:62.939467pt;}
.yb7{bottom:82.779067pt;}
.ya8{bottom:86.137067pt;}
.y4{bottom:86.333337pt;}
.yb9{bottom:86.859067pt;}
.y98{bottom:91.018667pt;}
.yb6{bottom:106.698667pt;}
.y51{bottom:109.568000pt;}
.yba{bottom:110.859067pt;}
.ya5{bottom:112.298267pt;}
.ya9{bottom:113.097467pt;}
.y99{bottom:120.218267pt;}
.y21{bottom:123.790666pt;}
.y4c{bottom:129.504000pt;}
.ybb{bottom:134.778667pt;}
.yaa{bottom:140.137067pt;}
.yb5{bottom:147.418267pt;}
.y9a{bottom:149.498267pt;}
.ybc{bottom:158.698267pt;}
.y81{bottom:163.478667pt;}
.yab{bottom:167.176667pt;}
.y18{bottom:175.052000pt;}
.y9b{bottom:178.778267pt;}
.y80{bottom:181.492000pt;}
.y8b{bottom:182.373333pt;}
.ybd{bottom:182.617867pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.yac{bottom:194.216267pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y8a{bottom:199.469333pt;}
.y7f{bottom:199.504000pt;}
.ybe{bottom:206.537467pt;}
.y9c{bottom:208.058267pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y89{bottom:216.565333pt;}
.y7e{bottom:217.517333pt;}
.yad{bottom:221.255867pt;}
.yc9{bottom:222.412000pt;}
.ybf{bottom:230.457067pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y7d{bottom:235.529333pt;}
.y82{bottom:236.501333pt;}
.y9d{bottom:237.257867pt;}
.yc8{bottom:239.508000pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.yae{bottom:248.216267pt;}
.ya4{bottom:252.778667pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y7c{bottom:253.541333pt;}
.yc0{bottom:254.457067pt;}
.yc7{bottom:256.604000pt;}
.y49{bottom:261.086667pt;}
.y95{bottom:261.658667pt;}
.y9e{bottom:266.537867pt;}
.y7b{bottom:271.554667pt;}
.yc6{bottom:273.700000pt;}
.yaf{bottom:275.255867pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.yc1{bottom:278.376667pt;}
.yb4{bottom:279.018667pt;}
.y48{bottom:279.098667pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y7a{bottom:289.566667pt;}
.y8c{bottom:293.637200pt;}
.y9f{bottom:295.817867pt;}
.y47{bottom:297.112000pt;}
.yb0{bottom:302.295467pt;}
.yc2{bottom:302.296267pt;}
.y94{bottom:305.578667pt;}
.y79{bottom:307.580000pt;}
.yf{bottom:309.452000pt;}
.y46{bottom:315.124000pt;}
.ya0{bottom:325.097867pt;}
.y78{bottom:325.592000pt;}
.yb3{bottom:327.418219pt;}
.y45{bottom:333.136000pt;}
.y77{bottom:343.604000pt;}
.ye{bottom:343.809333pt;}
.ya3{bottom:350.218667pt;}
.y44{bottom:351.149333pt;}
.y76{bottom:361.617333pt;}
.yd{bottom:362.706666pt;}
.y43{bottom:369.161333pt;}
.y75{bottom:379.629333pt;}
.y42{bottom:387.174667pt;}
.y8d{bottom:397.178667pt;}
.y74{bottom:397.642667pt;}
.y41{bottom:405.186667pt;}
.ydc{bottom:411.954667pt;}
.y73{bottom:415.654667pt;}
.y40{bottom:423.198667pt;}
.ydb{bottom:429.169333pt;}
.y72{bottom:433.666667pt;}
.y3f{bottom:441.212000pt;}
.yda{bottom:446.385333pt;}
.yc{bottom:446.990669pt;}
.y71{bottom:451.680000pt;}
.y3e{bottom:459.224000pt;}
.yb{bottom:462.990669pt;}
.y70{bottom:469.692000pt;}
.y83{bottom:470.638667pt;}
.yd9{bottom:475.590667pt;}
.y3d{bottom:477.237333pt;}
.ya{bottom:478.990666pt;}
.y6f{bottom:487.704000pt;}
.yd8{bottom:492.806667pt;}
.y9{bottom:494.990666pt;}
.y3c{bottom:495.249333pt;}
.y6e{bottom:505.717333pt;}
.yd7{bottom:510.021333pt;}
.y3b{bottom:513.261333pt;}
.y6d{bottom:523.729333pt;}
.yd6{bottom:527.237333pt;}
.y3a{bottom:531.274667pt;}
.y6c{bottom:541.742667pt;}
.yd5{bottom:544.453333pt;}
.y6b{bottom:559.754667pt;}
.yd4{bottom:561.668000pt;}
.y8{bottom:573.786667pt;}
.y6a{bottom:577.766667pt;}
.y4d{bottom:578.221933pt;}
.yd3{bottom:578.884000pt;}
.y7{bottom:592.685334pt;}
.y69{bottom:595.780000pt;}
.yd2{bottom:596.098667pt;}
.y39{bottom:596.609333pt;}
.yd1{bottom:613.314667pt;}
.y68{bottom:613.792000pt;}
.y38{bottom:614.621333pt;}
.yd0{bottom:630.530667pt;}
.y67{bottom:631.805333pt;}
.y6{bottom:645.598667pt;}
.ycf{bottom:647.745333pt;}
.y37{bottom:648.574667pt;}
.y66{bottom:649.817333pt;}
.y36{bottom:666.586667pt;}
.y65{bottom:667.829333pt;}
.y3{bottom:668.977329pt;}
.yce{bottom:672.930667pt;}
.y35{bottom:684.600000pt;}
.y64{bottom:685.842667pt;}
.y34{bottom:702.612000pt;}
.y63{bottom:703.854667pt;}
.ycd{bottom:708.000000pt;}
.y4b{bottom:709.729333pt;}
.y33{bottom:720.624000pt;}
.y62{bottom:721.868000pt;}
.ycc{bottom:729.478667pt;}
.y32{bottom:738.637333pt;}
.y61{bottom:739.880000pt;}
.ycb{bottom:742.988000pt;}
.y31{bottom:756.649333pt;}
.y60{bottom:757.892000pt;}
.yca{bottom:764.468000pt;}
.y30{bottom:774.662667pt;}
.y5f{bottom:775.905333pt;}
.y2{bottom:781.661334pt;}
.y2f{bottom:792.674667pt;}
.y5e{bottom:793.917333pt;}
.y5d{bottom:811.930667pt;}
.y2c{bottom:826.146715pt;}
.y5c{bottom:829.942667pt;}
.y2b{bottom:833.209333pt;}
.y5b{bottom:847.954667pt;}
.y1{bottom:859.312000pt;}
.y2a{bottom:861.500000pt;}
.y5a{bottom:865.968000pt;}
.y59{bottom:883.980000pt;}
.y29{bottom:885.609333pt;}
.y58{bottom:901.993333pt;}
.y57{bottom:920.005333pt;}
.y28{bottom:925.198667pt;}
.y56{bottom:938.017333pt;}
.y27{bottom:952.217333pt;}
.y55{bottom:956.030667pt;}
.y54{bottom:974.042667pt;}
.y26{bottom:977.906667pt;}
.y53{bottom:992.056000pt;}
.y22{bottom:1011.514667pt;}
.y52{bottom:1038.548000pt;}
.h11{height:22.673858pt;}
.h7{height:28.560000pt;}
.h13{height:29.433775pt;}
.h19{height:29.771219pt;}
.h1a{height:30.392578pt;}
.h12{height:30.399505pt;}
.h15{height:31.157778pt;}
.h1e{height:31.338125pt;}
.h1f{height:31.992188pt;}
.ha{height:32.246508pt;}
.h26{height:33.257812pt;}
.h1c{height:33.576563pt;}
.h29{height:33.713664pt;}
.h23{height:34.430976pt;}
.h10{height:34.957005pt;}
.h22{height:35.039062pt;}
.h24{height:35.052646pt;}
.h21{height:35.343750pt;}
.h27{height:37.027031pt;}
.h1b{height:37.059648pt;}
.hf{height:38.256384pt;}
.h14{height:38.840857pt;}
.hc{height:38.947124pt;}
.hb{height:39.846430pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.h9{height:45.272024pt;}
.h20{height:46.718750pt;}
.h2{height:48.960000pt;}
.h28{height:51.660469pt;}
.hd{height:68.861952pt;}
.h5{height:69.360000pt;}
.he{height:69.722726pt;}
.h4{height:105.826671pt;}
.h25{height:382.883733pt;}
.h1d{height:440.019333pt;}
.h18{height:547.018740pt;}
.h16{height:793.701333pt;}
.h17{height:794.000000pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w5{width:66.991004pt;}
.w4{width:185.925531pt;}
.w2{width:566.928019pt;}
.w8{width:750.036400pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.w9{width:801.384000pt;}
.wa{width:890.426800pt;}
.w6{width:1122.520000pt;}
.w7{width:1122.666667pt;}
.x13{left:-58.210000pt;}
.xe{left:-54.593967pt;}
.x15{left:-29.889867pt;}
.x18{left:-24.076533pt;}
.x0{left:0.000000pt;}
.x1a{left:4.243600pt;}
.x9{left:26.021437pt;}
.x1f{left:33.603467pt;}
.x1d{left:41.203067pt;}
.x1c{left:47.283467pt;}
.x6{left:53.458976pt;}
.x20{left:73.123467pt;}
.x1{left:90.706667pt;}
.x1e{left:92.323067pt;}
.x2{left:94.486667pt;}
.x5{left:102.046667pt;}
.x7{left:109.606667pt;}
.x17{left:116.046933pt;}
.xc{left:130.326667pt;}
.x12{left:160.568667pt;}
.xa{left:167.912000pt;}
.xb{left:179.588000pt;}
.x4{left:180.874667pt;}
.x16{left:185.086667pt;}
.xd{left:186.244127pt;}
.x35{left:213.342667pt;}
.x1b{left:221.123867pt;}
.x36{left:223.704000pt;}
.x38{left:225.868000pt;}
.x37{left:237.561333pt;}
.x10{left:292.346033pt;}
.x19{left:294.243467pt;}
.x27{left:326.963467pt;}
.x25{left:337.122667pt;}
.x24{left:343.203067pt;}
.x23{left:349.283467pt;}
.x28{left:355.683467pt;}
.x26{left:388.242667pt;}
.x29{left:390.243891pt;}
.x3{left:404.408000pt;}
.x21{left:412.643467pt;}
.x11{left:467.017333pt;}
.x22{left:517.043467pt;}
.x32{left:622.163467pt;}
.x8{left:623.413317pt;}
.x34{left:624.803467pt;}
.x30{left:633.042667pt;}
.x2f{left:639.123067pt;}
.x2e{left:645.203467pt;}
.x31{left:684.162667pt;}
.x33{left:688.243227pt;}
.x2a{left:693.683467pt;}
.x2c{left:723.443467pt;}
.xf{left:758.606033pt;}
.x2b{left:798.083467pt;}
.x14{left:801.470000pt;}
.x2d{left:830.883067pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  